diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..7b38b2c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +[*.yml,*.json] +indent_size = 2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..f14395d --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,54 @@ +name: Release Creation +on: + release: + types: [published] +permissions: + contents: write +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + # get part of the tag after the `v` + - name: Extract tag version number + id: get-version + run: echo "version-without-v=${GITHUB_REF_NAME#v}" >> "$GITHUB_OUTPUT" + - name: Get Module JSON + id: set_var + run: | + echo "PACKAGE_JSON=$(jq -c . < module.json)" >> $GITHUB_OUTPUT + - name: Get Module Title + id: title + run: echo "title=${{ fromJson(steps.set_var.outputs.PACKAGE_JSON).title }}" >> "$GITHUB_OUTPUT" + # Substitute the Manifest and Download URLs in the `module.json`. + - name: Substitute Manifest and Download Links For Versioned Ones + id: sub_manifest_link_version + uses: devops-actions/variable-substitution@v1.2 + with: + files: module.json + env: + version: ${{ steps.get-version.outputs.version-without-v }} + manifest: https://github.com/${{ github.repository }}/releases/latest/download/module.json + download: https://github.com/${{ github.repository }}/releases/download/${{ github.event.release.tag_name }}/module.zip + # Create a folder containing all the module stuff and zip it for the release + - name: Create Zip + run: zip -r9 ./module.zip build/ + - name: Update Release with Files + id: create_version_release + uses: ncipollo/release-action@v1 + with: + token: ${{ secrets.TOKEN }} + allowUpdates: true + omitDraftDuringUpdate: true + omitPrereleaseDuringUpdate: true + name: ${{ steps.get-version.outputs.version-without-v }} + body: ${{ steps.changelog.outputs.release-notes }} + artifacts: './module.json, ./module.zip' + - name: Publish to FoundryVTT + uses: cs96and/FoundryVTT-release-package@v1.0.2 + if: ${{ !github.event.release.prerelease && env.PACKAGE_TOKEN }} + env: + PACKAGE_TOKEN: ${{ secrets.PACKAGE_TOKEN }} + with: + package-token: ${{ env.PACKAGE_TOKEN }} + manifest-url: https://github.com/${{ github.repository }}/releases/download/${{ github.event.release.tag_name }}/module.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c2658d7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules/ diff --git a/build.mjs b/build.mjs new file mode 100644 index 0000000..3104eee --- /dev/null +++ b/build.mjs @@ -0,0 +1,27 @@ +import { compilePack } from "@foundryvtt/foundryvtt-cli"; +import { existsSync } from "fs"; +import fs from "fs/promises"; +import path from "path"; + +// Clean output directory, or create build directory +const outDir = path.resolve(process.cwd(), "build"); +if (existsSync(outDir)) { + const filesToClean = (await fs.readdir(outDir)).map((dirName) => path.resolve(outDir, dirName)); + for (const file of filesToClean) { + await fs.rm(file, { recursive: true }); + } +} else { + await fs.mkdir(outDir); +} + +// Build packs +const packFolders = await fs.readdir("packs"); +for (const pack of packFolders) { + await compilePack(`packs/${pack}`, path.resolve(outDir, `packs/${pack}`)); +} + +// Copy files and folders to output +const files = ["art", "scripts", "licenses", "module.json"]; +for (const file of files) { + await fs.cp(file, path.resolve(outDir, file), { recursive: true }); +} diff --git a/build/art/preview.webp b/build/art/preview.webp new file mode 100644 index 0000000..ef186b0 Binary files /dev/null and b/build/art/preview.webp differ diff --git a/LICENSE b/build/licenses/LICENSE similarity index 98% rename from LICENSE rename to build/licenses/LICENSE index 261eeb9..29f81d8 100644 --- a/LICENSE +++ b/build/licenses/LICENSE @@ -1,201 +1,201 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/Open RPG Creative license.md b/build/licenses/Open RPG Creative license.md similarity index 100% rename from Open RPG Creative license.md rename to build/licenses/Open RPG Creative license.md diff --git a/OpenGamingLicense.md b/build/licenses/OpenGamingLicense.md similarity index 99% rename from OpenGamingLicense.md rename to build/licenses/OpenGamingLicense.md index f4255e4..aaf2ec7 100644 --- a/OpenGamingLicense.md +++ b/build/licenses/OpenGamingLicense.md @@ -1,59 +1,59 @@ -Open Game License Version 1.0a - -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. - -1. 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. - -2. 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 uing this License. - -3. Offer and Acceptance: By Using the Open Game Content You indicate Your acceptance of the terms of this License. - -4. 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. - -5. 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. - -6. 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. - -7. 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. - -8. Identification: If you distribute Open Game Content You must clearly indicate which portions of the work that you are distributing are Open Game Content. - -9. 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. - -10. Copy of this License: You MUST include a copy of this License with every copy of the Open Game Content You distribute. - -11. 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. - -12. 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. - -13. 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. - -14. 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. - -15. COPYRIGHT NOTICE -Open Game License v 1.0a © 2000, Wizards of the Coast, Inc. -System Reference Document © 2000, Wizards of the Coast, Inc.; Authors: Jonathan Tweet, Monte Cook, and Skip Williams, based on material by E. Gary Gygax and Dave Arneson. -Pathfinder Core Rulebook (Second Edition) © 2019, Paizo Inc.; Authors: Logan Bonner, Jason Bulmahn, Stephen Radney-MacFarland, and Mark Seifter. -Pathfinder Aventure The Fall of Plaguestone © 2019, Paizo Inc.; Author: Jason Bulmahn -Pathfinder Adventure Path #149: Against the Scarlet Triad © 2019, Paizo Inc; Author: John Compton -Pathfinder Adventure Path #151: The Show Must Go On © 2020, Paizo Inc.; Authors: Jason Tondro, with Andrew Mullen, Patrick Renie, David N. Ross, and Michael Sayre. -Pathfinder Adventure Path #154: Siege of the Dinosaurs © 2020, Paizo Inc; Author: Kate Baker -Pathfinder Advanced Player's Guide (Second Edition) © 2020, Paizo Inc; Authors: Logan Bonner, Lyz Liddell, and Mark Seifter. -Pathfinder Adventure Path #164: Hands of the Devil © 2021, Paizo Inc.; Authors: Vanessa Hoskins, with Ron Lundeen, Quinn Murphy, and Amber Stewart. -Pathfinder Secrets of Magic © 2021, Paizo Inc; Authors: Logan Bonner, Mark Seifter, and Amirali Attar Olyaee, Kate Baker, Minty Belmont, Logan Bonner, James Case, Jessica Catalan, John Compton, Katina Davis, Jesse Decker, Chris Eng, Eleanor Ferron, Leo Glass, Joan Hong, Vanessa Hoskins, Jason Keeley, Joshua Kim, Luis Loza, Ron Lundeen, Liane Merciel, David N. Ross, Ianara Natividad, Chesley Oxendine, Stephen Radney‑MacFarland, Shiv Ramdas, Mikhail Rekun, Simone D. Sallé, Michael Sayre, Mark Seifter, Sen H.H.S., Shay Snow, Kendra Leigh Speedling, Tan Shao Han, Calliope Lee Taylor, Mari Tokuda, Jason Tondro, Clark Valentine, Ruvaid Virk, Andrew White, Landon Winkler, Tonya Woldridge, and Isis Wozniakowska -Pathfinder Lost Omens Grand Bazaar © 2021, Paizo Inc.; Authors: Tineke Bolleman, Logan Bonner, Jessica Catalan, Dominique Dickey, Dana Ebert, Steven Hammond, Sen H.H.S., Dustin Knight, Avi Kool, Aaron Lascano, Carlos Luna, Ron Lundeen, Sydney Meeker, Randal Meyer, Jacob Michaels, Matt Morris, Andrew Mullen, Ianara Natividad, Dave Nelson, Jessica Redekop, Nathan Reinecke, Erin Roberts, David N. Ross, Simone Sallé, Mark Seifter, Shay Snow, Ashton Sperry, Amber Stewart, Andrew Stoeckle, Isabelle Thorne, Jason Tondro, and Scott D. Young. -Pathfinder Guns & Gears © 2021, Paizo Inc.; Authors: Logan Bonner, Jessica Catalan, John Compton, Andrew D. Geels, Steven Hammond, Sen H.H.S., Brent Holtsberry, Jason Keeley, Dustin Knight, Luis Loza, Ron Lundeen, Chris Mastey, Liane Merciel, Jacob W. Michaels, Dave Nelson, Samantha Phelan, Mikhail Rekun, Stephen Radney-MacFarland, Sydney Meeker, Kendra Leigh Speedling, Michael Sayre., Mark Seifter, Andrew Stoeckle, Calliope Lee Taylor, Andrew White, and Scott D. Young. -Pathfinder Lost Omens Monsters of Myth © 2021, Paizo Inc.; Authors: James Case, John Compton, Dana Ebert, Joshua Kim, Aaron Lascano, Luis Loza, Ron Lundeen, Stephanie Lundeen, Liane Merciel, Andrew Mullen, Michael Sayre, Sen H.H.S., Shay Snow, and Jason Tondro. -Pathfinder Adventure Path #177: Burning Tundra © 2022, Paizo Inc.; Author: Jason Tondro. -Pathfinder Book of the Dead © 2022, Paizo Inc.; Authors: Brian Bauman, Tineke Bolleman. Logan Bonner, Jason Bulmahn, Jessica Catalan, John Compton, Chris Eng, Logan Harper, Michelle Jones, Jason Keeley, Luis Loza, Ron Lundeen, Liane Merciel, Patchen Mortimer, Quinn Murphy, Jessica Redekop, Mikhail Rekun, Solomon St. John, Michael Sayre, Mark Seifter, Sen.H.H.S., Kendra Leigh Speedling, Jason Tondro, Andrew White. -Pathfinder Adventure Path #181: Zombie Feast © 2022, Paizo Inc.; Author: Mike Kimmel. -Pathfinder Dark Archive © 2022, Paizo Inc.; Authors: Rigby Bendele, Logan Bonner, James Case, Dan Cascone, Jessica Catalan, Banana Chan, Kay Hashimoto, Sen H.H.S., Patrick Hurley, Joshua Kim, Avi Kool, Daniel Kwan, Kendra Leigh Speedling, Luis Loza, Ron Lundeen, Liane Merciel, Jacob W. Michaels, Andrew Mullen, Quinn Murphy, K. Tessa Newton, Mikhail Rekun, Patrick Renie, Solomon St. John, Michael Sayre, Mark Seifter, Shay Snow, Alex Speidel, Geoffrey Suthers, Ruvaid Virk, Jabari Weathers, and Isis Wozniakowska. -Pathfinder Rage of Elements © 2023, Paizo Inc.; Authors: Logan Bonner, Jason Bulmahn, James Case, Jessica Catalan, Andrew D. Geels, Sen H.H.S., Patrick Hurley, Jason Keeley, Luis Loza, Mark Moreland, Jonathan Morgantini, AJ Neuro, Jessica Redekop, Solomon St. John, Michael Sayre, Mark Seifter, Shahreena Shahrani, Shay Snow, Levi Steadman, Mari Tokuda, Ruvaid Virk, Andrew White, and Linda Zayas-Palmer. - -This product is compliant with the Open Game License (OGL) and is suitable for use with the Pathfinder Roleplaying Game (Second Edition). - -Product Identity: The following items are hereby identified as Product Identity, as defined in the Open Game License version 1.0a, Section 1(e), and are not Open Game Content: All trademarks, registered trademarks, proper nouns (characters, deities, locations, etc., as well as all adjectives, names, titles, and descriptive terms derived from proper nouns), artworks, characters, dialogue, locations, organizations, plots, storylines, and trade dress. (Elements that have previously been designated as Open Game Content, or are exclusively derived from previous Open Game Content, or that are in the public domain are not included in this declaration.) - -Open Game Content: Except for material designated as Product Identity, the game mechanics of this Paizo game product are Open Game Content, as defined in the Open Game License version 1.0a, Section 1(d). No portion of this work other than the material designated as Open Game Content may be reproduced in any form without written permission. - -Paizo, the Paizo golem logo, Pathfinder, the Pathfinder logo, Pathfinder Society, Starfinder, and the Starfinder logo are registered trademarks of Paizo Inc.; the Pathfinder P logo, Pathfinder Accessories, Pathfinder Adventure, Pathfinder Adventure Card Game, Pathfinder Adventure Card Society, Pathfinder Adventure Path, Pathfinder Battles, Pathfinder Combat Pad, Pathfinder Flip-Mat, Pathfinder Flip-Tiles, Pathfinder Legends, Pathfinder Lost Omens, Pathfinder Pawns, Pathfinder Roleplaying Game, Pathfinder Tales, Starfinder Adventure Path, Starfinder Combat Pad, Starfinder Flip-Mat, Starfinder Pawns, Starfinder Roleplaying Game, and Starfinder Society are trademarks of Paizo Inc. +Open Game License Version 1.0a + +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. + +1. 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. + +2. 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 uing this License. + +3. Offer and Acceptance: By Using the Open Game Content You indicate Your acceptance of the terms of this License. + +4. 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. + +5. 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. + +6. 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. + +7. 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. + +8. Identification: If you distribute Open Game Content You must clearly indicate which portions of the work that you are distributing are Open Game Content. + +9. 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. + +10. Copy of this License: You MUST include a copy of this License with every copy of the Open Game Content You distribute. + +11. 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. + +12. 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. + +13. 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. + +14. 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. + +15. COPYRIGHT NOTICE +Open Game License v 1.0a © 2000, Wizards of the Coast, Inc. +System Reference Document © 2000, Wizards of the Coast, Inc.; Authors: Jonathan Tweet, Monte Cook, and Skip Williams, based on material by E. Gary Gygax and Dave Arneson. +Pathfinder Core Rulebook (Second Edition) © 2019, Paizo Inc.; Authors: Logan Bonner, Jason Bulmahn, Stephen Radney-MacFarland, and Mark Seifter. +Pathfinder Aventure The Fall of Plaguestone © 2019, Paizo Inc.; Author: Jason Bulmahn +Pathfinder Adventure Path #149: Against the Scarlet Triad © 2019, Paizo Inc; Author: John Compton +Pathfinder Adventure Path #151: The Show Must Go On © 2020, Paizo Inc.; Authors: Jason Tondro, with Andrew Mullen, Patrick Renie, David N. Ross, and Michael Sayre. +Pathfinder Adventure Path #154: Siege of the Dinosaurs © 2020, Paizo Inc; Author: Kate Baker +Pathfinder Advanced Player's Guide (Second Edition) © 2020, Paizo Inc; Authors: Logan Bonner, Lyz Liddell, and Mark Seifter. +Pathfinder Adventure Path #164: Hands of the Devil © 2021, Paizo Inc.; Authors: Vanessa Hoskins, with Ron Lundeen, Quinn Murphy, and Amber Stewart. +Pathfinder Secrets of Magic © 2021, Paizo Inc; Authors: Logan Bonner, Mark Seifter, and Amirali Attar Olyaee, Kate Baker, Minty Belmont, Logan Bonner, James Case, Jessica Catalan, John Compton, Katina Davis, Jesse Decker, Chris Eng, Eleanor Ferron, Leo Glass, Joan Hong, Vanessa Hoskins, Jason Keeley, Joshua Kim, Luis Loza, Ron Lundeen, Liane Merciel, David N. Ross, Ianara Natividad, Chesley Oxendine, Stephen Radney‑MacFarland, Shiv Ramdas, Mikhail Rekun, Simone D. Sallé, Michael Sayre, Mark Seifter, Sen H.H.S., Shay Snow, Kendra Leigh Speedling, Tan Shao Han, Calliope Lee Taylor, Mari Tokuda, Jason Tondro, Clark Valentine, Ruvaid Virk, Andrew White, Landon Winkler, Tonya Woldridge, and Isis Wozniakowska +Pathfinder Lost Omens Grand Bazaar © 2021, Paizo Inc.; Authors: Tineke Bolleman, Logan Bonner, Jessica Catalan, Dominique Dickey, Dana Ebert, Steven Hammond, Sen H.H.S., Dustin Knight, Avi Kool, Aaron Lascano, Carlos Luna, Ron Lundeen, Sydney Meeker, Randal Meyer, Jacob Michaels, Matt Morris, Andrew Mullen, Ianara Natividad, Dave Nelson, Jessica Redekop, Nathan Reinecke, Erin Roberts, David N. Ross, Simone Sallé, Mark Seifter, Shay Snow, Ashton Sperry, Amber Stewart, Andrew Stoeckle, Isabelle Thorne, Jason Tondro, and Scott D. Young. +Pathfinder Guns & Gears © 2021, Paizo Inc.; Authors: Logan Bonner, Jessica Catalan, John Compton, Andrew D. Geels, Steven Hammond, Sen H.H.S., Brent Holtsberry, Jason Keeley, Dustin Knight, Luis Loza, Ron Lundeen, Chris Mastey, Liane Merciel, Jacob W. Michaels, Dave Nelson, Samantha Phelan, Mikhail Rekun, Stephen Radney-MacFarland, Sydney Meeker, Kendra Leigh Speedling, Michael Sayre., Mark Seifter, Andrew Stoeckle, Calliope Lee Taylor, Andrew White, and Scott D. Young. +Pathfinder Lost Omens Monsters of Myth © 2021, Paizo Inc.; Authors: James Case, John Compton, Dana Ebert, Joshua Kim, Aaron Lascano, Luis Loza, Ron Lundeen, Stephanie Lundeen, Liane Merciel, Andrew Mullen, Michael Sayre, Sen H.H.S., Shay Snow, and Jason Tondro. +Pathfinder Adventure Path #177: Burning Tundra © 2022, Paizo Inc.; Author: Jason Tondro. +Pathfinder Book of the Dead © 2022, Paizo Inc.; Authors: Brian Bauman, Tineke Bolleman. Logan Bonner, Jason Bulmahn, Jessica Catalan, John Compton, Chris Eng, Logan Harper, Michelle Jones, Jason Keeley, Luis Loza, Ron Lundeen, Liane Merciel, Patchen Mortimer, Quinn Murphy, Jessica Redekop, Mikhail Rekun, Solomon St. John, Michael Sayre, Mark Seifter, Sen.H.H.S., Kendra Leigh Speedling, Jason Tondro, Andrew White. +Pathfinder Adventure Path #181: Zombie Feast © 2022, Paizo Inc.; Author: Mike Kimmel. +Pathfinder Dark Archive © 2022, Paizo Inc.; Authors: Rigby Bendele, Logan Bonner, James Case, Dan Cascone, Jessica Catalan, Banana Chan, Kay Hashimoto, Sen H.H.S., Patrick Hurley, Joshua Kim, Avi Kool, Daniel Kwan, Kendra Leigh Speedling, Luis Loza, Ron Lundeen, Liane Merciel, Jacob W. Michaels, Andrew Mullen, Quinn Murphy, K. Tessa Newton, Mikhail Rekun, Patrick Renie, Solomon St. John, Michael Sayre, Mark Seifter, Shay Snow, Alex Speidel, Geoffrey Suthers, Ruvaid Virk, Jabari Weathers, and Isis Wozniakowska. +Pathfinder Rage of Elements © 2023, Paizo Inc.; Authors: Logan Bonner, Jason Bulmahn, James Case, Jessica Catalan, Andrew D. Geels, Sen H.H.S., Patrick Hurley, Jason Keeley, Luis Loza, Mark Moreland, Jonathan Morgantini, AJ Neuro, Jessica Redekop, Solomon St. John, Michael Sayre, Mark Seifter, Shahreena Shahrani, Shay Snow, Levi Steadman, Mari Tokuda, Ruvaid Virk, Andrew White, and Linda Zayas-Palmer. + +This product is compliant with the Open Game License (OGL) and is suitable for use with the Pathfinder Roleplaying Game (Second Edition). + +Product Identity: The following items are hereby identified as Product Identity, as defined in the Open Game License version 1.0a, Section 1(e), and are not Open Game Content: All trademarks, registered trademarks, proper nouns (characters, deities, locations, etc., as well as all adjectives, names, titles, and descriptive terms derived from proper nouns), artworks, characters, dialogue, locations, organizations, plots, storylines, and trade dress. (Elements that have previously been designated as Open Game Content, or are exclusively derived from previous Open Game Content, or that are in the public domain are not included in this declaration.) + +Open Game Content: Except for material designated as Product Identity, the game mechanics of this Paizo game product are Open Game Content, as defined in the Open Game License version 1.0a, Section 1(d). No portion of this work other than the material designated as Open Game Content may be reproduced in any form without written permission. + +Paizo, the Paizo golem logo, Pathfinder, the Pathfinder logo, Pathfinder Society, Starfinder, and the Starfinder logo are registered trademarks of Paizo Inc.; the Pathfinder P logo, Pathfinder Accessories, Pathfinder Adventure, Pathfinder Adventure Card Game, Pathfinder Adventure Card Society, Pathfinder Adventure Path, Pathfinder Battles, Pathfinder Combat Pad, Pathfinder Flip-Mat, Pathfinder Flip-Tiles, Pathfinder Legends, Pathfinder Lost Omens, Pathfinder Pawns, Pathfinder Roleplaying Game, Pathfinder Tales, Starfinder Adventure Path, Starfinder Combat Pad, Starfinder Flip-Mat, Starfinder Pawns, Starfinder Roleplaying Game, and Starfinder Society are trademarks of Paizo Inc. diff --git a/build/module.json b/build/module.json new file mode 100644 index 0000000..26f0a7f --- /dev/null +++ b/build/module.json @@ -0,0 +1,191 @@ +{ + "id": "pf2e-animal-companions", + "title": "PF2e Companion Compendia", + "description": "Compendia containing everything you need to support PF2e companions", + "url": "https://github.com/TikaelSol/PF2e-Animal-Companions", + "version": "6.3", + "packs": [ + { + "label": "Animal Companion Ancestries", + "name": "AC-Ancestries-and-Class", + "path": "packs/ac-ancestries-and-class", + "banner": "systems/pf2e/assets/compendium-banner/red.webp", + "system": "pf2e", + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + }, + "type": "Item", + "flags": {} + }, + { + "label": "Animal Companion Feats", + "name": "AC-Feats", + "path": "packs/ac-feats", + "banner": "systems/pf2e/assets/compendium-banner/red.webp", + "system": "pf2e", + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + }, + "type": "Item", + "flags": {} + }, + { + "label": "Advanced Maneuvers", + "name": "AC-Advanced-Maneuvers", + "path": "packs/ac-advanced-maneuvers", + "banner": "systems/pf2e/assets/compendium-banner/red.webp", + "system": "pf2e", + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + }, + "type": "Item", + "flags": {} + }, + { + "label": "Equipment", + "name": "ac-equipment", + "path": "packs/ac-equipment", + "banner": "systems/pf2e/assets/compendium-banner/red.webp", + "system": "pf2e", + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + }, + "type": "Item", + "flags": {} + }, + { + "label": "Features", + "name": "AC-Features", + "path": "packs/ac-features", + "banner": "systems/pf2e/assets/compendium-banner/red.webp", + "system": "pf2e", + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + }, + "type": "Item", + "flags": {} + }, + { + "label": "Support Benefits", + "name": "AC-Support", + "path": "packs/ac-support-benefits", + "banner": "systems/pf2e/assets/compendium-banner/red.webp", + "system": "pf2e", + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + }, + "type": "Item", + "flags": {} + }, + { + "label": "Construct Companions", + "name": "AC-Construct-Companions", + "path": "packs/ac-construct-companions", + "banner": "systems/pf2e/assets/compendium-banner/red.webp", + "system": "pf2e", + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + }, + "type": "Item", + "flags": {} + }, + { + "label": "Construct Breakthroughs", + "name": "AC-Construct-Breakthroughs", + "path": "packs/ac-construct-breakthroughs", + "banner": "systems/pf2e/assets/compendium-banner/red.webp", + "system": "pf2e", + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + }, + "type": "Item", + "flags": {} + }, + { + "label": "Eidolons", + "name": "AC-Eidolons", + "path": "packs/ac-eidolons", + "banner": "systems/pf2e/assets/compendium-banner/red.webp", + "system": "pf2e", + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + }, + "type": "Item", + "flags": {} + }, + { + "label": "Evolution Feats", + "name": "AC-Evolution-Feats", + "path": "packs/ac-evolution-feats", + "banner": "systems/pf2e/assets/compendium-banner/red.webp", + "system": "pf2e", + "ownership": { + "PLAYER": "OBSERVER", + "ASSISTANT": "OWNER" + }, + "type": "Item", + "flags": {} + } + ], + "packFolders": [ + { + "name": "Companion Compendia", + "sorting": "m", + "packs": [ + "AC-Ancestries-and-Class", + "AC-Feats", + "AC-Advanced-Maneuvers", + "ac-equipment", + "AC-Features", + "AC-Evolution-Feats", + "AC-Eidolons", + "AC-Construct-Breakthroughs", + "AC-Construct-Companions", + "AC-Support" + ] + } + ], + "media": [ + { + "type": "setup", + "caption": "Pathfinder 2e Companion Compendia", + "thumbnail": "modules/pf2e-animal-companions/art/preview.webp" + } + ], + "manifest": "https://raw.githubusercontent.com/TikaelSol/PF2e-Animal-Companions/master/module.json", + "download": "https://github.com/TikaelSol/PF2e-Animal-Companions/archive/refs/heads/main.zip", + "compatibility": { + "minimum": "11", + "verified": "12" + }, + "relationships": { + "systems": [ + { + "id": "pf2e", + "type": "system", + "manifest": "https://github.com/foundryvtt/pf2e/releases/latest/download/system.json", + "compatibility": { + "minimum": "5.14" + } + } + ] + }, + "esmodules": [ + "scripts/warnings.js" + ], + "authors": [ + { + "name": "Tikael", + "flags": {} + } + ] +} diff --git a/build/packs/ac-advanced-maneuvers/000005.ldb b/build/packs/ac-advanced-maneuvers/000005.ldb new file mode 100644 index 0000000..cd65b11 Binary files /dev/null and b/build/packs/ac-advanced-maneuvers/000005.ldb differ diff --git a/build/packs/ac-advanced-maneuvers/000009.ldb b/build/packs/ac-advanced-maneuvers/000009.ldb new file mode 100644 index 0000000..efa048e Binary files /dev/null and b/build/packs/ac-advanced-maneuvers/000009.ldb differ diff --git a/packs/ac-advanced-maneuvers/000289.log b/build/packs/ac-advanced-maneuvers/000012.log similarity index 100% rename from packs/ac-advanced-maneuvers/000289.log rename to build/packs/ac-advanced-maneuvers/000012.log diff --git a/build/packs/ac-advanced-maneuvers/CURRENT b/build/packs/ac-advanced-maneuvers/CURRENT new file mode 100644 index 0000000..5b54010 --- /dev/null +++ b/build/packs/ac-advanced-maneuvers/CURRENT @@ -0,0 +1 @@ +MANIFEST-000011 diff --git a/packs/ac-advanced-maneuvers/LOCK b/build/packs/ac-advanced-maneuvers/LOCK similarity index 100% rename from packs/ac-advanced-maneuvers/LOCK rename to build/packs/ac-advanced-maneuvers/LOCK diff --git a/build/packs/ac-advanced-maneuvers/LOG b/build/packs/ac-advanced-maneuvers/LOG new file mode 100644 index 0000000..462af7e --- /dev/null +++ b/build/packs/ac-advanced-maneuvers/LOG @@ -0,0 +1,3 @@ +2024/12/10-20:21:09.679 7fc Recovering log #10 +2024/12/10-20:21:09.694 7fc Delete type=0 #10 +2024/12/10-20:21:09.694 7fc Delete type=3 #8 diff --git a/build/packs/ac-advanced-maneuvers/LOG.old b/build/packs/ac-advanced-maneuvers/LOG.old new file mode 100644 index 0000000..47ec0aa --- /dev/null +++ b/build/packs/ac-advanced-maneuvers/LOG.old @@ -0,0 +1,5 @@ +2024/12/10-20:19:38.492 ebc Recovering log #7 +2024/12/10-20:19:38.492 ebc Level-0 table #9: started +2024/12/10-20:19:38.498 ebc Level-0 table #9: 50142 bytes OK +2024/12/10-20:19:38.505 ebc Delete type=0 #7 +2024/12/10-20:19:38.505 ebc Delete type=3 #6 diff --git a/build/packs/ac-advanced-maneuvers/MANIFEST-000011 b/build/packs/ac-advanced-maneuvers/MANIFEST-000011 new file mode 100644 index 0000000..5d29d95 Binary files /dev/null and b/build/packs/ac-advanced-maneuvers/MANIFEST-000011 differ diff --git a/build/packs/ac-ancestries-and-class/000005.ldb b/build/packs/ac-ancestries-and-class/000005.ldb new file mode 100644 index 0000000..d4a7d69 Binary files /dev/null and b/build/packs/ac-ancestries-and-class/000005.ldb differ diff --git a/build/packs/ac-ancestries-and-class/000009.ldb b/build/packs/ac-ancestries-and-class/000009.ldb new file mode 100644 index 0000000..c0dd057 Binary files /dev/null and b/build/packs/ac-ancestries-and-class/000009.ldb differ diff --git a/packs/ac-ancestries-and-class/000294.log b/build/packs/ac-ancestries-and-class/000012.log similarity index 100% rename from packs/ac-ancestries-and-class/000294.log rename to build/packs/ac-ancestries-and-class/000012.log diff --git a/build/packs/ac-ancestries-and-class/CURRENT b/build/packs/ac-ancestries-and-class/CURRENT new file mode 100644 index 0000000..5b54010 --- /dev/null +++ b/build/packs/ac-ancestries-and-class/CURRENT @@ -0,0 +1 @@ +MANIFEST-000011 diff --git a/packs/ac-ancestries-and-class/LOCK b/build/packs/ac-ancestries-and-class/LOCK similarity index 100% rename from packs/ac-ancestries-and-class/LOCK rename to build/packs/ac-ancestries-and-class/LOCK diff --git a/build/packs/ac-ancestries-and-class/LOG b/build/packs/ac-ancestries-and-class/LOG new file mode 100644 index 0000000..c9c8c32 --- /dev/null +++ b/build/packs/ac-ancestries-and-class/LOG @@ -0,0 +1,3 @@ +2024/12/10-20:21:09.772 2bd0 Recovering log #10 +2024/12/10-20:21:09.777 2bd0 Delete type=0 #10 +2024/12/10-20:21:09.777 2bd0 Delete type=3 #8 diff --git a/build/packs/ac-ancestries-and-class/LOG.old b/build/packs/ac-ancestries-and-class/LOG.old new file mode 100644 index 0000000..89bf8ac --- /dev/null +++ b/build/packs/ac-ancestries-and-class/LOG.old @@ -0,0 +1,5 @@ +2024/12/10-20:19:38.436 1a8c Recovering log #7 +2024/12/10-20:19:38.437 1a8c Level-0 table #9: started +2024/12/10-20:19:38.446 1a8c Level-0 table #9: 141365 bytes OK +2024/12/10-20:19:38.456 1a8c Delete type=0 #7 +2024/12/10-20:19:38.456 1a8c Delete type=3 #6 diff --git a/build/packs/ac-ancestries-and-class/MANIFEST-000011 b/build/packs/ac-ancestries-and-class/MANIFEST-000011 new file mode 100644 index 0000000..b9b0286 Binary files /dev/null and b/build/packs/ac-ancestries-and-class/MANIFEST-000011 differ diff --git a/build/packs/ac-construct-breakthroughs/000005.ldb b/build/packs/ac-construct-breakthroughs/000005.ldb new file mode 100644 index 0000000..e98ff5e Binary files /dev/null and b/build/packs/ac-construct-breakthroughs/000005.ldb differ diff --git a/build/packs/ac-construct-breakthroughs/000009.ldb b/build/packs/ac-construct-breakthroughs/000009.ldb new file mode 100644 index 0000000..be63f96 Binary files /dev/null and b/build/packs/ac-construct-breakthroughs/000009.ldb differ diff --git a/packs/ac-construct-breakthroughs/000264.log b/build/packs/ac-construct-breakthroughs/000012.log similarity index 100% rename from packs/ac-construct-breakthroughs/000264.log rename to build/packs/ac-construct-breakthroughs/000012.log diff --git a/build/packs/ac-construct-breakthroughs/CURRENT b/build/packs/ac-construct-breakthroughs/CURRENT new file mode 100644 index 0000000..5b54010 --- /dev/null +++ b/build/packs/ac-construct-breakthroughs/CURRENT @@ -0,0 +1 @@ +MANIFEST-000011 diff --git a/packs/ac-construct-breakthroughs/LOCK b/build/packs/ac-construct-breakthroughs/LOCK similarity index 100% rename from packs/ac-construct-breakthroughs/LOCK rename to build/packs/ac-construct-breakthroughs/LOCK diff --git a/build/packs/ac-construct-breakthroughs/LOG b/build/packs/ac-construct-breakthroughs/LOG new file mode 100644 index 0000000..20223f4 --- /dev/null +++ b/build/packs/ac-construct-breakthroughs/LOG @@ -0,0 +1,3 @@ +2024/12/10-20:21:09.866 7fc Recovering log #10 +2024/12/10-20:21:09.872 7fc Delete type=0 #10 +2024/12/10-20:21:09.873 7fc Delete type=3 #8 diff --git a/build/packs/ac-construct-breakthroughs/LOG.old b/build/packs/ac-construct-breakthroughs/LOG.old new file mode 100644 index 0000000..ed24615 --- /dev/null +++ b/build/packs/ac-construct-breakthroughs/LOG.old @@ -0,0 +1,5 @@ +2024/12/10-20:19:38.615 1b64 Recovering log #7 +2024/12/10-20:19:38.615 1b64 Level-0 table #9: started +2024/12/10-20:19:38.620 1b64 Level-0 table #9: 13861 bytes OK +2024/12/10-20:19:38.628 1b64 Delete type=0 #7 +2024/12/10-20:19:38.629 1b64 Delete type=3 #6 diff --git a/build/packs/ac-construct-breakthroughs/MANIFEST-000011 b/build/packs/ac-construct-breakthroughs/MANIFEST-000011 new file mode 100644 index 0000000..7e2aad1 Binary files /dev/null and b/build/packs/ac-construct-breakthroughs/MANIFEST-000011 differ diff --git a/build/packs/ac-construct-companions/000005.ldb b/build/packs/ac-construct-companions/000005.ldb new file mode 100644 index 0000000..a71b493 Binary files /dev/null and b/build/packs/ac-construct-companions/000005.ldb differ diff --git a/build/packs/ac-construct-companions/000009.ldb b/build/packs/ac-construct-companions/000009.ldb new file mode 100644 index 0000000..d840a26 Binary files /dev/null and b/build/packs/ac-construct-companions/000009.ldb differ diff --git a/packs/ac-construct-breakthroughs/000267.log b/build/packs/ac-construct-companions/000012.log similarity index 100% rename from packs/ac-construct-breakthroughs/000267.log rename to build/packs/ac-construct-companions/000012.log diff --git a/build/packs/ac-construct-companions/CURRENT b/build/packs/ac-construct-companions/CURRENT new file mode 100644 index 0000000..5b54010 --- /dev/null +++ b/build/packs/ac-construct-companions/CURRENT @@ -0,0 +1 @@ +MANIFEST-000011 diff --git a/packs/ac-construct-companions/LOCK b/build/packs/ac-construct-companions/LOCK similarity index 100% rename from packs/ac-construct-companions/LOCK rename to build/packs/ac-construct-companions/LOCK diff --git a/build/packs/ac-construct-companions/LOG b/build/packs/ac-construct-companions/LOG new file mode 100644 index 0000000..17b0eb8 --- /dev/null +++ b/build/packs/ac-construct-companions/LOG @@ -0,0 +1,3 @@ +2024/12/10-20:21:09.898 7fc Recovering log #10 +2024/12/10-20:21:09.904 7fc Delete type=0 #10 +2024/12/10-20:21:09.904 7fc Delete type=3 #8 diff --git a/build/packs/ac-construct-companions/LOG.old b/build/packs/ac-construct-companions/LOG.old new file mode 100644 index 0000000..fa2d9ef --- /dev/null +++ b/build/packs/ac-construct-companions/LOG.old @@ -0,0 +1,5 @@ +2024/12/10-20:19:38.591 1a8c Recovering log #7 +2024/12/10-20:19:38.591 1a8c Level-0 table #9: started +2024/12/10-20:19:38.594 1a8c Level-0 table #9: 7991 bytes OK +2024/12/10-20:19:38.607 1a8c Delete type=0 #7 +2024/12/10-20:19:38.608 1a8c Delete type=3 #6 diff --git a/build/packs/ac-construct-companions/MANIFEST-000011 b/build/packs/ac-construct-companions/MANIFEST-000011 new file mode 100644 index 0000000..cd2a9f7 Binary files /dev/null and b/build/packs/ac-construct-companions/MANIFEST-000011 differ diff --git a/build/packs/ac-eidolons/000005.ldb b/build/packs/ac-eidolons/000005.ldb new file mode 100644 index 0000000..e45e55c Binary files /dev/null and b/build/packs/ac-eidolons/000005.ldb differ diff --git a/build/packs/ac-eidolons/000009.ldb b/build/packs/ac-eidolons/000009.ldb new file mode 100644 index 0000000..2d071eb Binary files /dev/null and b/build/packs/ac-eidolons/000009.ldb differ diff --git a/packs/ac-construct-companions/000264.log b/build/packs/ac-eidolons/000012.log similarity index 100% rename from packs/ac-construct-companions/000264.log rename to build/packs/ac-eidolons/000012.log diff --git a/build/packs/ac-eidolons/CURRENT b/build/packs/ac-eidolons/CURRENT new file mode 100644 index 0000000..5b54010 --- /dev/null +++ b/build/packs/ac-eidolons/CURRENT @@ -0,0 +1 @@ +MANIFEST-000011 diff --git a/packs/ac-eidolons/LOCK b/build/packs/ac-eidolons/LOCK similarity index 100% rename from packs/ac-eidolons/LOCK rename to build/packs/ac-eidolons/LOCK diff --git a/build/packs/ac-eidolons/LOG b/build/packs/ac-eidolons/LOG new file mode 100644 index 0000000..55439cd --- /dev/null +++ b/build/packs/ac-eidolons/LOG @@ -0,0 +1,3 @@ +2024/12/10-20:21:09.921 2238 Recovering log #10 +2024/12/10-20:21:09.925 2238 Delete type=0 #10 +2024/12/10-20:21:09.926 2238 Delete type=3 #8 diff --git a/build/packs/ac-eidolons/LOG.old b/build/packs/ac-eidolons/LOG.old new file mode 100644 index 0000000..760d85c --- /dev/null +++ b/build/packs/ac-eidolons/LOG.old @@ -0,0 +1,5 @@ +2024/12/10-20:19:38.636 36b8 Recovering log #7 +2024/12/10-20:19:38.636 36b8 Level-0 table #9: started +2024/12/10-20:19:38.641 36b8 Level-0 table #9: 26769 bytes OK +2024/12/10-20:19:38.647 36b8 Delete type=0 #7 +2024/12/10-20:19:38.648 36b8 Delete type=3 #6 diff --git a/build/packs/ac-eidolons/MANIFEST-000011 b/build/packs/ac-eidolons/MANIFEST-000011 new file mode 100644 index 0000000..0c1abf7 Binary files /dev/null and b/build/packs/ac-eidolons/MANIFEST-000011 differ diff --git a/packs/ac-equipment/000184.ldb b/build/packs/ac-equipment/000005.ldb similarity index 52% rename from packs/ac-equipment/000184.ldb rename to build/packs/ac-equipment/000005.ldb index 59ee823..785abc6 100644 Binary files a/packs/ac-equipment/000184.ldb and b/build/packs/ac-equipment/000005.ldb differ diff --git a/build/packs/ac-equipment/000009.ldb b/build/packs/ac-equipment/000009.ldb new file mode 100644 index 0000000..edd77ae Binary files /dev/null and b/build/packs/ac-equipment/000009.ldb differ diff --git a/packs/ac-construct-companions/000267.log b/build/packs/ac-equipment/000012.log similarity index 100% rename from packs/ac-construct-companions/000267.log rename to build/packs/ac-equipment/000012.log diff --git a/build/packs/ac-equipment/CURRENT b/build/packs/ac-equipment/CURRENT new file mode 100644 index 0000000..5b54010 --- /dev/null +++ b/build/packs/ac-equipment/CURRENT @@ -0,0 +1 @@ +MANIFEST-000011 diff --git a/packs/ac-equipment/LOCK b/build/packs/ac-equipment/LOCK similarity index 100% rename from packs/ac-equipment/LOCK rename to build/packs/ac-equipment/LOCK diff --git a/build/packs/ac-equipment/LOG b/build/packs/ac-equipment/LOG new file mode 100644 index 0000000..8d9420e --- /dev/null +++ b/build/packs/ac-equipment/LOG @@ -0,0 +1,3 @@ +2024/12/10-20:21:09.946 7fc Recovering log #10 +2024/12/10-20:21:09.951 7fc Delete type=0 #10 +2024/12/10-20:21:09.952 7fc Delete type=3 #8 diff --git a/build/packs/ac-equipment/LOG.old b/build/packs/ac-equipment/LOG.old new file mode 100644 index 0000000..d1359dd --- /dev/null +++ b/build/packs/ac-equipment/LOG.old @@ -0,0 +1,5 @@ +2024/12/10-20:19:38.514 1a8c Recovering log #7 +2024/12/10-20:19:38.514 1a8c Level-0 table #9: started +2024/12/10-20:19:38.529 1a8c Level-0 table #9: 3845 bytes OK +2024/12/10-20:19:38.537 1a8c Delete type=0 #7 +2024/12/10-20:19:38.537 1a8c Delete type=3 #6 diff --git a/build/packs/ac-equipment/MANIFEST-000011 b/build/packs/ac-equipment/MANIFEST-000011 new file mode 100644 index 0000000..3c9b87e Binary files /dev/null and b/build/packs/ac-equipment/MANIFEST-000011 differ diff --git a/build/packs/ac-evolution-feats/000005.ldb b/build/packs/ac-evolution-feats/000005.ldb new file mode 100644 index 0000000..99da6b8 Binary files /dev/null and b/build/packs/ac-evolution-feats/000005.ldb differ diff --git a/build/packs/ac-evolution-feats/000009.ldb b/build/packs/ac-evolution-feats/000009.ldb new file mode 100644 index 0000000..01872e1 Binary files /dev/null and b/build/packs/ac-evolution-feats/000009.ldb differ diff --git a/packs/ac-eidolons/000266.log b/build/packs/ac-evolution-feats/000012.log similarity index 100% rename from packs/ac-eidolons/000266.log rename to build/packs/ac-evolution-feats/000012.log diff --git a/build/packs/ac-evolution-feats/CURRENT b/build/packs/ac-evolution-feats/CURRENT new file mode 100644 index 0000000..5b54010 --- /dev/null +++ b/build/packs/ac-evolution-feats/CURRENT @@ -0,0 +1 @@ +MANIFEST-000011 diff --git a/packs/ac-evolution-feats/LOCK b/build/packs/ac-evolution-feats/LOCK similarity index 100% rename from packs/ac-evolution-feats/LOCK rename to build/packs/ac-evolution-feats/LOCK diff --git a/build/packs/ac-evolution-feats/LOG b/build/packs/ac-evolution-feats/LOG new file mode 100644 index 0000000..645f78f --- /dev/null +++ b/build/packs/ac-evolution-feats/LOG @@ -0,0 +1,3 @@ +2024/12/10-20:21:09.962 2238 Recovering log #10 +2024/12/10-20:21:09.970 2238 Delete type=0 #10 +2024/12/10-20:21:09.970 2238 Delete type=3 #8 diff --git a/build/packs/ac-evolution-feats/LOG.old b/build/packs/ac-evolution-feats/LOG.old new file mode 100644 index 0000000..791a803 --- /dev/null +++ b/build/packs/ac-evolution-feats/LOG.old @@ -0,0 +1,5 @@ +2024/12/10-20:19:38.656 ebc Recovering log #7 +2024/12/10-20:19:38.656 ebc Level-0 table #9: started +2024/12/10-20:19:38.661 ebc Level-0 table #9: 24093 bytes OK +2024/12/10-20:19:38.668 ebc Delete type=0 #7 +2024/12/10-20:19:38.668 ebc Delete type=3 #6 diff --git a/build/packs/ac-evolution-feats/MANIFEST-000011 b/build/packs/ac-evolution-feats/MANIFEST-000011 new file mode 100644 index 0000000..5006a5f Binary files /dev/null and b/build/packs/ac-evolution-feats/MANIFEST-000011 differ diff --git a/build/packs/ac-feats/000005.ldb b/build/packs/ac-feats/000005.ldb new file mode 100644 index 0000000..16f543e Binary files /dev/null and b/build/packs/ac-feats/000005.ldb differ diff --git a/build/packs/ac-feats/000009.ldb b/build/packs/ac-feats/000009.ldb new file mode 100644 index 0000000..cab7293 Binary files /dev/null and b/build/packs/ac-feats/000009.ldb differ diff --git a/build/packs/ac-feats/000012.ldb b/build/packs/ac-feats/000012.ldb new file mode 100644 index 0000000..dd6db2e Binary files /dev/null and b/build/packs/ac-feats/000012.ldb differ diff --git a/packs/ac-eidolons/000269.log b/build/packs/ac-feats/000013.log similarity index 100% rename from packs/ac-eidolons/000269.log rename to build/packs/ac-feats/000013.log diff --git a/build/packs/ac-feats/CURRENT b/build/packs/ac-feats/CURRENT new file mode 100644 index 0000000..5b54010 --- /dev/null +++ b/build/packs/ac-feats/CURRENT @@ -0,0 +1 @@ +MANIFEST-000011 diff --git a/packs/ac-feats/LOCK b/build/packs/ac-feats/LOCK similarity index 100% rename from packs/ac-feats/LOCK rename to build/packs/ac-feats/LOCK diff --git a/build/packs/ac-feats/LOG b/build/packs/ac-feats/LOG new file mode 100644 index 0000000..7c4f7b7 --- /dev/null +++ b/build/packs/ac-feats/LOG @@ -0,0 +1,5 @@ +2024/12/10-20:21:10.006 2bd0 Recovering log #10 +2024/12/10-20:21:10.006 2bd0 Level-0 table #12: started +2024/12/10-20:21:10.009 2bd0 Level-0 table #12: 2273 bytes OK +2024/12/10-20:21:10.013 2bd0 Delete type=0 #10 +2024/12/10-20:21:10.013 2bd0 Delete type=3 #8 diff --git a/build/packs/ac-feats/LOG.old b/build/packs/ac-feats/LOG.old new file mode 100644 index 0000000..4f23747 --- /dev/null +++ b/build/packs/ac-feats/LOG.old @@ -0,0 +1,5 @@ +2024/12/10-20:19:38.467 1b64 Recovering log #7 +2024/12/10-20:19:38.468 1b64 Level-0 table #9: started +2024/12/10-20:19:38.474 1b64 Level-0 table #9: 29223 bytes OK +2024/12/10-20:19:38.484 1b64 Delete type=0 #7 +2024/12/10-20:19:38.484 1b64 Delete type=3 #6 diff --git a/build/packs/ac-feats/MANIFEST-000011 b/build/packs/ac-feats/MANIFEST-000011 new file mode 100644 index 0000000..4c0327b Binary files /dev/null and b/build/packs/ac-feats/MANIFEST-000011 differ diff --git a/build/packs/ac-features/000005.ldb b/build/packs/ac-features/000005.ldb new file mode 100644 index 0000000..4398639 Binary files /dev/null and b/build/packs/ac-features/000005.ldb differ diff --git a/build/packs/ac-features/000009.ldb b/build/packs/ac-features/000009.ldb new file mode 100644 index 0000000..867eb6e Binary files /dev/null and b/build/packs/ac-features/000009.ldb differ diff --git a/packs/ac-equipment/000263.log b/build/packs/ac-features/000012.log similarity index 100% rename from packs/ac-equipment/000263.log rename to build/packs/ac-features/000012.log diff --git a/build/packs/ac-features/CURRENT b/build/packs/ac-features/CURRENT new file mode 100644 index 0000000..5b54010 --- /dev/null +++ b/build/packs/ac-features/CURRENT @@ -0,0 +1 @@ +MANIFEST-000011 diff --git a/packs/ac-features/LOCK b/build/packs/ac-features/LOCK similarity index 100% rename from packs/ac-features/LOCK rename to build/packs/ac-features/LOCK diff --git a/build/packs/ac-features/LOG b/build/packs/ac-features/LOG new file mode 100644 index 0000000..c906510 --- /dev/null +++ b/build/packs/ac-features/LOG @@ -0,0 +1,3 @@ +2024/12/10-20:21:10.040 2238 Recovering log #10 +2024/12/10-20:21:10.045 2238 Delete type=0 #10 +2024/12/10-20:21:10.045 2238 Delete type=3 #8 diff --git a/build/packs/ac-features/LOG.old b/build/packs/ac-features/LOG.old new file mode 100644 index 0000000..e822991 --- /dev/null +++ b/build/packs/ac-features/LOG.old @@ -0,0 +1,5 @@ +2024/12/10-20:19:38.544 1b64 Recovering log #7 +2024/12/10-20:19:38.545 1b64 Level-0 table #9: started +2024/12/10-20:19:38.551 1b64 Level-0 table #9: 98842 bytes OK +2024/12/10-20:19:38.559 1b64 Delete type=0 #7 +2024/12/10-20:19:38.559 1b64 Delete type=3 #6 diff --git a/build/packs/ac-features/MANIFEST-000011 b/build/packs/ac-features/MANIFEST-000011 new file mode 100644 index 0000000..496306e Binary files /dev/null and b/build/packs/ac-features/MANIFEST-000011 differ diff --git a/build/packs/ac-support-benefits/000005.ldb b/build/packs/ac-support-benefits/000005.ldb new file mode 100644 index 0000000..7c8df61 Binary files /dev/null and b/build/packs/ac-support-benefits/000005.ldb differ diff --git a/build/packs/ac-support-benefits/000009.ldb b/build/packs/ac-support-benefits/000009.ldb new file mode 100644 index 0000000..c4207db Binary files /dev/null and b/build/packs/ac-support-benefits/000009.ldb differ diff --git a/packs/ac-equipment/000266.log b/build/packs/ac-support-benefits/000012.log similarity index 100% rename from packs/ac-equipment/000266.log rename to build/packs/ac-support-benefits/000012.log diff --git a/build/packs/ac-support-benefits/CURRENT b/build/packs/ac-support-benefits/CURRENT new file mode 100644 index 0000000..5b54010 --- /dev/null +++ b/build/packs/ac-support-benefits/CURRENT @@ -0,0 +1 @@ +MANIFEST-000011 diff --git a/packs/ac-support-benefits/LOCK b/build/packs/ac-support-benefits/LOCK similarity index 100% rename from packs/ac-support-benefits/LOCK rename to build/packs/ac-support-benefits/LOCK diff --git a/build/packs/ac-support-benefits/LOG b/build/packs/ac-support-benefits/LOG new file mode 100644 index 0000000..5002b7f --- /dev/null +++ b/build/packs/ac-support-benefits/LOG @@ -0,0 +1,3 @@ +2024/12/10-20:21:10.172 5a4 Recovering log #10 +2024/12/10-20:21:10.179 5a4 Delete type=0 #10 +2024/12/10-20:21:10.179 5a4 Delete type=3 #8 diff --git a/build/packs/ac-support-benefits/LOG.old b/build/packs/ac-support-benefits/LOG.old new file mode 100644 index 0000000..5b35220 --- /dev/null +++ b/build/packs/ac-support-benefits/LOG.old @@ -0,0 +1,5 @@ +2024/12/10-20:19:38.569 36b8 Recovering log #7 +2024/12/10-20:19:38.569 36b8 Level-0 table #9: started +2024/12/10-20:19:38.575 36b8 Level-0 table #9: 44797 bytes OK +2024/12/10-20:19:38.582 36b8 Delete type=0 #7 +2024/12/10-20:19:38.582 36b8 Delete type=3 #6 diff --git a/build/packs/ac-support-benefits/MANIFEST-000011 b/build/packs/ac-support-benefits/MANIFEST-000011 new file mode 100644 index 0000000..ea5156e Binary files /dev/null and b/build/packs/ac-support-benefits/MANIFEST-000011 differ diff --git a/warnings.js b/build/scripts/warnings.js similarity index 97% rename from warnings.js rename to build/scripts/warnings.js index a63f9cc..e4e291c 100644 --- a/warnings.js +++ b/build/scripts/warnings.js @@ -1,36 +1,36 @@ -async function registerUserFlags() { - await setIfAbsent("eidolon-changes-to-be-read", true) -}; - -async function setIfAbsent(flag, value) { - if (game.user.getFlag("world", flag) === undefined) { - await game.user.setFlag("world", flag, value); - } -} - -Hooks.once("ready", async () => { - await registerUserFlags(); - - // Does the user have an eidolon? - if (game.actors.filter(x => x.isOwner).filter(x => x.class?.name === "Eidolon").length) { - // Has the user read the changes? - if (game.user.getFlag("world", "eidolon-changes-to-be-read")) { - new Dialog({ - title: "Eidolon Changes", - content: "
With the release of version Companion Compendia 6.2, in order to support Summoners+ and other third party eidolons, we had to change how Eidolon Abilities are granted.
You need to update your Eidolon's ancestries. Simply drag and drop the same ancestry again onto your Eidolon sheet in order to update.
", - buttons: { - one: { - icon: '', - label: "I Understand", - callback: async () => { - await game.user.setFlag("world", "eidolon-changes-to-be-read", false); - } - } - } - }).render(true); - } - } else { - // No eidolons, no problem. - await game.user.setFlag("world", "eidolon-changes-to-be-read", false); - } +async function registerUserFlags() { + await setIfAbsent("eidolon-changes-to-be-read", true) +}; + +async function setIfAbsent(flag, value) { + if (game.user.getFlag("world", flag) === undefined) { + await game.user.setFlag("world", flag, value); + } +} + +Hooks.once("ready", async () => { + await registerUserFlags(); + + // Does the user have an eidolon? + if (game.actors.filter(x => x.isOwner).filter(x => x.class?.name === "Eidolon").length) { + // Has the user read the changes? + if (game.user.getFlag("world", "eidolon-changes-to-be-read")) { + new Dialog({ + title: "Eidolon Changes", + content: "With the release of version Companion Compendia 6.2, in order to support Summoners+ and other third party eidolons, we had to change how Eidolon Abilities are granted.
You need to update your Eidolon's ancestries. Simply drag and drop the same ancestry again onto your Eidolon sheet in order to update.
", + buttons: { + one: { + icon: '', + label: "I Understand", + callback: async () => { + await game.user.setFlag("world", "eidolon-changes-to-be-read", false); + } + } + } + }).render(true); + } + } else { + // No eidolons, no problem. + await game.user.setFlag("world", "eidolon-changes-to-be-read", false); + } }); \ No newline at end of file diff --git a/extract-packs.mjs b/extract-packs.mjs new file mode 100644 index 0000000..aaf224c --- /dev/null +++ b/extract-packs.mjs @@ -0,0 +1,37 @@ +import { extractPack } from "@foundryvtt/foundryvtt-cli"; +import { existsSync } from "fs"; +import fs from "fs/promises"; +import path from "path"; + +const outDir = path.resolve(process.cwd(), "build"); +const packsCompiled = path.resolve(outDir, "packs/"); +if (!existsSync(packsCompiled)) { + console.error("Packs directory does not exist in the build"); +} + +const packFolders = await fs.readdir(packsCompiled); + +const replacer = (key, value) => { + if (key === "createdTime") return undefined + if (key === "modifiedTime") return undefined + if (key === "lastModifiedBy") return undefined + return value +} + +console.log("Cleaning packs"); +for (const pack of packFolders) { + const files = await fs.readdir(`packs/${pack}`, { withFileTypes: true }); + const jsonFiles = files + .filter((f) => f.isFile() && f.name.toLowerCase().endsWith(".json")) + .map((f) => f.name); + for (const file of jsonFiles) { + await fs.rm(path.resolve("packs", pack, file)); + } +} + +for (const pack of packFolders) { + console.log(`Extracting pack: ${pack}`); + await extractPack(path.resolve(packsCompiled, pack), `packs/${pack}`, {jsonOptions: {replacer: replacer, space: 2}}); +} + +console.log("Extraction Complete"); diff --git a/licenses/LICENSE b/licenses/LICENSE new file mode 100644 index 0000000..29f81d8 --- /dev/null +++ b/licenses/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/licenses/Open RPG Creative license.md b/licenses/Open RPG Creative license.md new file mode 100644 index 0000000..44d0288 --- /dev/null +++ b/licenses/Open RPG Creative license.md @@ -0,0 +1,10 @@ +ORC Notice +This product is licensed under the ORC License to be held in the Library of Congress TX 9-307-067 and available online at various locations including rollforcombat.com/orc-license, azoralaw.com/orclicense, and others. All warranties are disclaimed as set forth therein. + +Attribution: This product is based on the following Licensed Material: + +Pathfinder Player Core © 2023 Paizo Inc., Designed by Logan Bonner, Jason Bulmahn, Stephen Radney-MacFarland, and Mark Seifter. Authors: Alexander Augunas, Kate Baker, Logan Bonner, Jason Bulmahn, Carlos Cabrera, Calder CaDavid, James Case, Eleanor Ferron, Steven Hammond, Joan Hong, Vanessa Hoskins, James Jacobs, Jenny Jarzabski, Erik Keith, Dustin Knight, Lyz Liddell, Luis Loza, Patchen Mortimer, Dennis Muldoon, Stephen Radney-MacFarland, Mikhail Rekun, David N. Ross, Michael Sayre, Mark Seifter, Kendra Leigh Speedling, Mark Thompson, Clark Valentine, Andrew White, Landon Winkler, and Linda Zayas-Palmer + +Pathfinder Adventure Path #201: Pactbreaker © 2024, Paizo Inc.; Authors: Andrew White, with John Compton, Josh Foster, and Diego Valdez. + +Pathfinder Howl of the Wild © 2024 Paizo Inc. Authors: Kate Baker, Joshua Birdsong, Rigby Bendele, Chris Bissette, Jeremy Blum, Logan Bonner, Dan Cascone, James Case, Jessica Catalan, Brite Cheney, Rue Dickey, Caryn DiMarco, Matthew Fu, Leo Glass, Steven Hammond, Patrick Hurley, Michelle Y. Kim, Dustin Knight, Kendra Leigh Speedling, Christiana Lewis, Jessie “Aki” Lo, Luis Loza, Letterio Mammoliti, Jonathan “Ryomasa” Mendoza, Quinn Murphy, Dave Nelson, Mikhail Rekun, Kai Revius, Ember Rose, Simone D. Sallé, Michael Sayre, Shay Snow, Levi Steadman, Kyle Tam, Ruvaid Virk, and Andrew White diff --git a/licenses/OpenGamingLicense.md b/licenses/OpenGamingLicense.md new file mode 100644 index 0000000..aaf2ec7 --- /dev/null +++ b/licenses/OpenGamingLicense.md @@ -0,0 +1,59 @@ +Open Game License Version 1.0a + +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. + +1. 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. + +2. 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 uing this License. + +3. Offer and Acceptance: By Using the Open Game Content You indicate Your acceptance of the terms of this License. + +4. 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. + +5. 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. + +6. 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. + +7. 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. + +8. Identification: If you distribute Open Game Content You must clearly indicate which portions of the work that you are distributing are Open Game Content. + +9. 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. + +10. Copy of this License: You MUST include a copy of this License with every copy of the Open Game Content You distribute. + +11. 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. + +12. 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. + +13. 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. + +14. 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. + +15. COPYRIGHT NOTICE +Open Game License v 1.0a © 2000, Wizards of the Coast, Inc. +System Reference Document © 2000, Wizards of the Coast, Inc.; Authors: Jonathan Tweet, Monte Cook, and Skip Williams, based on material by E. Gary Gygax and Dave Arneson. +Pathfinder Core Rulebook (Second Edition) © 2019, Paizo Inc.; Authors: Logan Bonner, Jason Bulmahn, Stephen Radney-MacFarland, and Mark Seifter. +Pathfinder Aventure The Fall of Plaguestone © 2019, Paizo Inc.; Author: Jason Bulmahn +Pathfinder Adventure Path #149: Against the Scarlet Triad © 2019, Paizo Inc; Author: John Compton +Pathfinder Adventure Path #151: The Show Must Go On © 2020, Paizo Inc.; Authors: Jason Tondro, with Andrew Mullen, Patrick Renie, David N. Ross, and Michael Sayre. +Pathfinder Adventure Path #154: Siege of the Dinosaurs © 2020, Paizo Inc; Author: Kate Baker +Pathfinder Advanced Player's Guide (Second Edition) © 2020, Paizo Inc; Authors: Logan Bonner, Lyz Liddell, and Mark Seifter. +Pathfinder Adventure Path #164: Hands of the Devil © 2021, Paizo Inc.; Authors: Vanessa Hoskins, with Ron Lundeen, Quinn Murphy, and Amber Stewart. +Pathfinder Secrets of Magic © 2021, Paizo Inc; Authors: Logan Bonner, Mark Seifter, and Amirali Attar Olyaee, Kate Baker, Minty Belmont, Logan Bonner, James Case, Jessica Catalan, John Compton, Katina Davis, Jesse Decker, Chris Eng, Eleanor Ferron, Leo Glass, Joan Hong, Vanessa Hoskins, Jason Keeley, Joshua Kim, Luis Loza, Ron Lundeen, Liane Merciel, David N. Ross, Ianara Natividad, Chesley Oxendine, Stephen Radney‑MacFarland, Shiv Ramdas, Mikhail Rekun, Simone D. Sallé, Michael Sayre, Mark Seifter, Sen H.H.S., Shay Snow, Kendra Leigh Speedling, Tan Shao Han, Calliope Lee Taylor, Mari Tokuda, Jason Tondro, Clark Valentine, Ruvaid Virk, Andrew White, Landon Winkler, Tonya Woldridge, and Isis Wozniakowska +Pathfinder Lost Omens Grand Bazaar © 2021, Paizo Inc.; Authors: Tineke Bolleman, Logan Bonner, Jessica Catalan, Dominique Dickey, Dana Ebert, Steven Hammond, Sen H.H.S., Dustin Knight, Avi Kool, Aaron Lascano, Carlos Luna, Ron Lundeen, Sydney Meeker, Randal Meyer, Jacob Michaels, Matt Morris, Andrew Mullen, Ianara Natividad, Dave Nelson, Jessica Redekop, Nathan Reinecke, Erin Roberts, David N. Ross, Simone Sallé, Mark Seifter, Shay Snow, Ashton Sperry, Amber Stewart, Andrew Stoeckle, Isabelle Thorne, Jason Tondro, and Scott D. Young. +Pathfinder Guns & Gears © 2021, Paizo Inc.; Authors: Logan Bonner, Jessica Catalan, John Compton, Andrew D. Geels, Steven Hammond, Sen H.H.S., Brent Holtsberry, Jason Keeley, Dustin Knight, Luis Loza, Ron Lundeen, Chris Mastey, Liane Merciel, Jacob W. Michaels, Dave Nelson, Samantha Phelan, Mikhail Rekun, Stephen Radney-MacFarland, Sydney Meeker, Kendra Leigh Speedling, Michael Sayre., Mark Seifter, Andrew Stoeckle, Calliope Lee Taylor, Andrew White, and Scott D. Young. +Pathfinder Lost Omens Monsters of Myth © 2021, Paizo Inc.; Authors: James Case, John Compton, Dana Ebert, Joshua Kim, Aaron Lascano, Luis Loza, Ron Lundeen, Stephanie Lundeen, Liane Merciel, Andrew Mullen, Michael Sayre, Sen H.H.S., Shay Snow, and Jason Tondro. +Pathfinder Adventure Path #177: Burning Tundra © 2022, Paizo Inc.; Author: Jason Tondro. +Pathfinder Book of the Dead © 2022, Paizo Inc.; Authors: Brian Bauman, Tineke Bolleman. Logan Bonner, Jason Bulmahn, Jessica Catalan, John Compton, Chris Eng, Logan Harper, Michelle Jones, Jason Keeley, Luis Loza, Ron Lundeen, Liane Merciel, Patchen Mortimer, Quinn Murphy, Jessica Redekop, Mikhail Rekun, Solomon St. John, Michael Sayre, Mark Seifter, Sen.H.H.S., Kendra Leigh Speedling, Jason Tondro, Andrew White. +Pathfinder Adventure Path #181: Zombie Feast © 2022, Paizo Inc.; Author: Mike Kimmel. +Pathfinder Dark Archive © 2022, Paizo Inc.; Authors: Rigby Bendele, Logan Bonner, James Case, Dan Cascone, Jessica Catalan, Banana Chan, Kay Hashimoto, Sen H.H.S., Patrick Hurley, Joshua Kim, Avi Kool, Daniel Kwan, Kendra Leigh Speedling, Luis Loza, Ron Lundeen, Liane Merciel, Jacob W. Michaels, Andrew Mullen, Quinn Murphy, K. Tessa Newton, Mikhail Rekun, Patrick Renie, Solomon St. John, Michael Sayre, Mark Seifter, Shay Snow, Alex Speidel, Geoffrey Suthers, Ruvaid Virk, Jabari Weathers, and Isis Wozniakowska. +Pathfinder Rage of Elements © 2023, Paizo Inc.; Authors: Logan Bonner, Jason Bulmahn, James Case, Jessica Catalan, Andrew D. Geels, Sen H.H.S., Patrick Hurley, Jason Keeley, Luis Loza, Mark Moreland, Jonathan Morgantini, AJ Neuro, Jessica Redekop, Solomon St. John, Michael Sayre, Mark Seifter, Shahreena Shahrani, Shay Snow, Levi Steadman, Mari Tokuda, Ruvaid Virk, Andrew White, and Linda Zayas-Palmer. + +This product is compliant with the Open Game License (OGL) and is suitable for use with the Pathfinder Roleplaying Game (Second Edition). + +Product Identity: The following items are hereby identified as Product Identity, as defined in the Open Game License version 1.0a, Section 1(e), and are not Open Game Content: All trademarks, registered trademarks, proper nouns (characters, deities, locations, etc., as well as all adjectives, names, titles, and descriptive terms derived from proper nouns), artworks, characters, dialogue, locations, organizations, plots, storylines, and trade dress. (Elements that have previously been designated as Open Game Content, or are exclusively derived from previous Open Game Content, or that are in the public domain are not included in this declaration.) + +Open Game Content: Except for material designated as Product Identity, the game mechanics of this Paizo game product are Open Game Content, as defined in the Open Game License version 1.0a, Section 1(d). No portion of this work other than the material designated as Open Game Content may be reproduced in any form without written permission. + +Paizo, the Paizo golem logo, Pathfinder, the Pathfinder logo, Pathfinder Society, Starfinder, and the Starfinder logo are registered trademarks of Paizo Inc.; the Pathfinder P logo, Pathfinder Accessories, Pathfinder Adventure, Pathfinder Adventure Card Game, Pathfinder Adventure Card Society, Pathfinder Adventure Path, Pathfinder Battles, Pathfinder Combat Pad, Pathfinder Flip-Mat, Pathfinder Flip-Tiles, Pathfinder Legends, Pathfinder Lost Omens, Pathfinder Pawns, Pathfinder Roleplaying Game, Pathfinder Tales, Starfinder Adventure Path, Starfinder Combat Pad, Starfinder Flip-Mat, Starfinder Pawns, Starfinder Roleplaying Game, and Starfinder Society are trademarks of Paizo Inc. diff --git a/link.mjs b/link.mjs new file mode 100644 index 0000000..65d3144 --- /dev/null +++ b/link.mjs @@ -0,0 +1,57 @@ +import fs from "fs"; +import path from "path"; +import process from "process"; +import prompts from "prompts"; + +const windowsInstructions = process.platform === "win32" ? ' Start with a drive letter ("C:\\").' : ""; +const dataPath = ( + await prompts({ + type: "text", + name: "value", + format: (v) => v.replace(/\W*$/, "").trim(), + message: `Enter the full path to your Foundry data folder.${windowsInstructions}`, + }) +).value; +if (!dataPath || !/\bData$/.test(dataPath)) { + console.error(`"${dataPath}" does not look like a Foundry data folder.`); + process.exit(1); +} +const dataPathStats = fs.lstatSync(dataPath, { throwIfNoEntry: false }); +if (!dataPathStats?.isDirectory()) { + console.error(`No folder found at "${dataPath}"`); + process.exit(1); +} + +const symlinkPath = path.resolve(dataPath, "modules", "pf2e-animal-companions"); +const symlinkStats = fs.lstatSync(symlinkPath, { throwIfNoEntry: false }); +if (symlinkStats) { + const atPath = symlinkStats.isDirectory() ? "folder" : symlinkStats.isSymbolicLink() ? "symlink" : "file"; + const proceed = ( + await prompts({ + type: "confirm", + name: "value", + initial: false, + message: `A "pf2e-animal-companions" ${atPath} already exists in the "systems" subfolder. Replace with new symlink?`, + }) + ).value; + if (!proceed) { + console.log("Aborting."); + process.exit(); + } +} + +try { + if (symlinkStats?.isDirectory()) { + fs.rmSync(symlinkPath, { recursive: true, force: true }); + } else if (symlinkStats) { + fs.unlinkSync(symlinkPath); + } + fs.symlinkSync(path.resolve(process.cwd(), "build"), symlinkPath); +} catch (error) { + if (error instanceof Error) { + console.error(`An error was encountered trying to create a symlink: ${error.message}`); + process.exit(1); + } +} + +console.log(`Symlink successfully created at "${symlinkPath}"!`); diff --git a/module.json b/module.json index 71a5c14..26f0a7f 100644 --- a/module.json +++ b/module.json @@ -180,7 +180,7 @@ ] }, "esmodules": [ - "warnings.js" + "scripts/warnings.js" ], "authors": [ { diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..5d92846 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,877 @@ +{ + "name": "pf2e-animal-companions", + "version": "6.1", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "pf2e-animal-companions", + "version": "6.1", + "license": "Apache-2.0", + "devDependencies": { + "@foundryvtt/foundryvtt-cli": "^1.0.3", + "@types/prompts": "^2.4.9" + } + }, + "node_modules/@foundryvtt/foundryvtt-cli": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@foundryvtt/foundryvtt-cli/-/foundryvtt-cli-1.0.3.tgz", + "integrity": "sha512-M8NrMXFYpOEsLAbgRWfuMvUa9F6HwrROLtqhhBljqfVS1lgm0RJJY/7MObuXsTJOC6+Uu+QOPZTlw4k+hguG7w==", + "dev": true, + "dependencies": { + "chalk": "^5.2.0", + "classic-level": "^1.2.0", + "esm": "^3.2.25", + "js-yaml": "^4.1.0", + "mkdirp": "^3.0.0", + "nedb-promises": "^6.2.1", + "yargs": "^17.7.1" + }, + "bin": { + "fvtt": "fvtt.mjs" + }, + "engines": { + "node": ">17.0.0" + } + }, + "node_modules/@seald-io/binary-search-tree": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@seald-io/binary-search-tree/-/binary-search-tree-1.0.3.tgz", + "integrity": "sha512-qv3jnwoakeax2razYaMsGI/luWdliBLHTdC6jU55hQt1hcFqzauH/HsBollQ7IR4ySTtYhT+xyHoijpA16C+tA==", + "dev": true + }, + "node_modules/@seald-io/nedb": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@seald-io/nedb/-/nedb-4.0.4.tgz", + "integrity": "sha512-CUNcMio7QUHTA+sIJ/DC5JzVNNsHe743TPmC4H5Gij9zDLMbmrCT2li3eVB72/gF63BPS8pWEZrjlAMRKA8FDw==", + "dev": true, + "dependencies": { + "@seald-io/binary-search-tree": "^1.0.3", + "localforage": "^1.9.0", + "util": "^0.12.4" + } + }, + "node_modules/@types/node": { + "version": "22.5.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.5.3.tgz", + "integrity": "sha512-njripolh85IA9SQGTAqbmnNZTdxv7X/4OYGPz8tgy5JDr8MP+uDBa921GpYEoDDnwm0Hmn5ZPeJgiiSTPoOzkQ==", + "dev": true, + "dependencies": { + "undici-types": "~6.19.2" + } + }, + "node_modules/@types/prompts": { + "version": "2.4.9", + "resolved": "https://registry.npmjs.org/@types/prompts/-/prompts-2.4.9.tgz", + "integrity": "sha512-qTxFi6Buiu8+50/+3DGIWLHM6QuWsEKugJnnP6iv2Mc4ncxE4A/OJkjuVOA+5X0X1S/nq5VJRa8Lu+nwcvbrKA==", + "dev": true, + "dependencies": { + "@types/node": "*", + "kleur": "^3.0.3" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/abstract-level": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/abstract-level/-/abstract-level-1.0.4.tgz", + "integrity": "sha512-eUP/6pbXBkMbXFdx4IH2fVgvB7M0JvR7/lIL33zcs0IBcwjdzSSl31TOJsaCzmKSSDF9h8QYSOJux4Nd4YJqFg==", + "dev": true, + "dependencies": { + "buffer": "^6.0.3", + "catering": "^2.1.0", + "is-buffer": "^2.0.5", + "level-supports": "^4.0.0", + "level-transcoder": "^1.0.1", + "module-error": "^1.0.1", + "queue-microtask": "^1.2.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dev": true, + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/catering": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/catering/-/catering-2.1.1.tgz", + "integrity": "sha512-K7Qy8O9p76sL3/3m7/zLKbRkyOlSZAgzEaLhyj2mXS8PsCud2Eo4hAb8aLtZqHh0QGqLcb9dlJSu6lHRVENm1w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/classic-level": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/classic-level/-/classic-level-1.4.1.tgz", + "integrity": "sha512-qGx/KJl3bvtOHrGau2WklEZuXhS3zme+jf+fsu6Ej7W7IP/C49v7KNlWIsT1jZu0YnfzSIYDGcEWpCa1wKGWXQ==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "abstract-level": "^1.0.2", + "catering": "^2.1.0", + "module-error": "^1.0.1", + "napi-macros": "^2.2.2", + "node-gyp-build": "^4.3.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/esm": { + "version": "3.2.25", + "resolved": "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz", + "integrity": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/immediate": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", + "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", + "dev": true + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", + "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=4" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dev": true, + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/level-supports": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-4.0.1.tgz", + "integrity": "sha512-PbXpve8rKeNcZ9C1mUicC9auIYFyGpkV9/i6g76tLgANwWhtG2v7I4xNBUlkn3lE2/dZF3Pi0ygYGtLc4RXXdA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/level-transcoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/level-transcoder/-/level-transcoder-1.0.1.tgz", + "integrity": "sha512-t7bFwFtsQeD8cl8NIoQ2iwxA0CL/9IFw7/9gAjOonH0PWTTiRfY7Hq+Ejbsxh86tXobDQ6IOiddjNYIfOBs06w==", + "dev": true, + "dependencies": { + "buffer": "^6.0.3", + "module-error": "^1.0.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/lie": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lie/-/lie-3.1.1.tgz", + "integrity": "sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==", + "dev": true, + "dependencies": { + "immediate": "~3.0.5" + } + }, + "node_modules/localforage": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/localforage/-/localforage-1.10.0.tgz", + "integrity": "sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==", + "dev": true, + "dependencies": { + "lie": "3.1.1" + } + }, + "node_modules/mkdirp": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", + "dev": true, + "bin": { + "mkdirp": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/module-error": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/module-error/-/module-error-1.0.2.tgz", + "integrity": "sha512-0yuvsqSCv8LbaOKhnsQ/T5JhyFlCYLPXK3U2sgV10zoKQwzs/MyfuQUOZQ1V/6OCOJsK/TRgNVrPuPDqtdMFtA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/napi-macros": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/napi-macros/-/napi-macros-2.2.2.tgz", + "integrity": "sha512-hmEVtAGYzVQpCKdbQea4skABsdXW4RUh5t5mJ2zzqowJS2OyXZTU1KhDVFhx+NlWZ4ap9mqR9TcDO3LTTttd+g==", + "dev": true + }, + "node_modules/nedb-promises": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/nedb-promises/-/nedb-promises-6.2.3.tgz", + "integrity": "sha512-enq0IjNyBz9Qy9W/QPCcLGh/QORGBjXbIeZeWvIjO3OMLyAvlKT3hiJubP2BKEiFniUlR3L01o18ktqgn5jxqA==", + "dev": true, + "dependencies": { + "@seald-io/nedb": "^4.0.2" + } + }, + "node_modules/node-gyp-build": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", + "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", + "dev": true, + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/undici-types": { + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", + "dev": true + }, + "node_modules/util": { + "version": "0.12.5", + "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", + "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "is-arguments": "^1.0.4", + "is-generator-function": "^1.0.7", + "is-typed-array": "^1.1.3", + "which-typed-array": "^1.1.2" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..0e14c3e --- /dev/null +++ b/package.json @@ -0,0 +1,16 @@ +{ + "name": "pf2e-animal-companions", + "version": "6.0", + "description": "", + "scripts": { + "build": "node build.mjs", + "extractPacks": "node extract-packs.mjs", + "link": "node link.mjs" + }, + "author": "Ian Blackstone", + "license": "Apache-2.0", + "devDependencies": { + "@foundryvtt/foundryvtt-cli": "^1.0.3", + "@types/prompts": "^2.4.9" + } +} diff --git a/packs/ac-advanced-maneuvers/000274.ldb b/packs/ac-advanced-maneuvers/000274.ldb deleted file mode 100644 index eb3ff1e..0000000 Binary files a/packs/ac-advanced-maneuvers/000274.ldb and /dev/null differ diff --git a/packs/ac-advanced-maneuvers/000280.ldb b/packs/ac-advanced-maneuvers/000280.ldb deleted file mode 100644 index 75d15a6..0000000 Binary files a/packs/ac-advanced-maneuvers/000280.ldb and /dev/null differ diff --git a/packs/ac-advanced-maneuvers/000283.ldb b/packs/ac-advanced-maneuvers/000283.ldb deleted file mode 100644 index b2d8022..0000000 Binary files a/packs/ac-advanced-maneuvers/000283.ldb and /dev/null differ diff --git a/packs/ac-advanced-maneuvers/000286.ldb b/packs/ac-advanced-maneuvers/000286.ldb deleted file mode 100644 index 9a8702d..0000000 Binary files a/packs/ac-advanced-maneuvers/000286.ldb and /dev/null differ diff --git a/packs/ac-advanced-maneuvers/Aerial_Retreat_SkVl3yomdYZoS7Hx.json b/packs/ac-advanced-maneuvers/Aerial_Retreat_SkVl3yomdYZoS7Hx.json new file mode 100644 index 0000000..1c00470 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Aerial_Retreat_SkVl3yomdYZoS7Hx.json @@ -0,0 +1,56 @@ +{ + "name": "Aerial Retreat", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The hippogriff makes a talon Strike, then Flies with a +10-foot circumstance bonus to its fly Speed. The hippogriff and its rider gain a +2 circumstance bonus to AC against reactions triggered by this movement.
" + }, + "rules": [], + "slug": "aerial-retreat", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false + }, + "_id": "SkVl3yomdYZoS7Hx", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "sort": 1600000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "ab67af8de4329cb18f29ceb8ec95e50c03e8808f" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!SkVl3yomdYZoS7Hx" +} diff --git a/packs/ac-advanced-maneuvers/Antler_Catapult_gFZCyLnqeWrK6u0P.json b/packs/ac-advanced-maneuvers/Antler_Catapult_gFZCyLnqeWrK6u0P.json new file mode 100644 index 0000000..4fbfa43 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Antler_Catapult_gFZCyLnqeWrK6u0P.json @@ -0,0 +1,56 @@ +{ + "name": "Antler Catapult", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The elk Steps once and then makes an antlers Strike. If it moved and hits, the elk can fling its target into the space it just left, which is forced movement.
" + }, + "rules": [], + "slug": "antler-catapult", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false + }, + "_id": "gFZCyLnqeWrK6u0P", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "sort": 900000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "9350bbdfa95a17642f16a42f6fe0ea30dffadc17" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!gFZCyLnqeWrK6u0P" +} diff --git a/packs/ac-advanced-maneuvers/Badger_Rage_HLD4JW6SUn5Oy8C9.json b/packs/ac-advanced-maneuvers/Badger_Rage_HLD4JW6SUn5Oy8C9.json new file mode 100644 index 0000000..62dfc73 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Badger_Rage_HLD4JW6SUn5Oy8C9.json @@ -0,0 +1,94 @@ +{ + "_id": "HLD4JW6SUn5Oy8C9", + "name": "Badger Rage", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 3000000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.HLD4JW6SUn5Oy8C9" + } + }, + "system": { + "description": { + "gm": "", + "value": "Requirements The badger isn't fatigued or raging.
\n@Compendium[pf2e-animal-companions.AC-Features.Kgt1NyBesS3rohzb]{Badger Rage}
\nThe badger enters a state of pure rage that lasts for 1 minute, until there are no enemies it can perceive, or until it falls unconscious, whichever comes first. It can't voluntarily stop raging. While raging, the badger is affected in the following ways.
\nIt deals 4 additional damage with its bite attacks and 2 additional damage with its claw attacks.
\nIt takes a –1 penalty to AC.
\nIt can't use actions that have the concentrate trait unless they also have the rage trait. The animal companion can Seek even while raging.
\nAfter it has stopped raging, it can't use Badger Rage again for 1 minute.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "badger-rage", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "concentrate", + "emotion", + "mental" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.457-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.HLD4JW6SUn5Oy8C9", + "duplicateSource": null + }, + "_key": "!items!HLD4JW6SUn5Oy8C9" +} diff --git a/packs/ac-advanced-maneuvers/Bay_EvuMVR9ut9wIHOtq.json b/packs/ac-advanced-maneuvers/Bay_EvuMVR9ut9wIHOtq.json new file mode 100644 index 0000000..74b6129 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Bay_EvuMVR9ut9wIHOtq.json @@ -0,0 +1,84 @@ +{ + "_id": "EvuMVR9ut9wIHOtq", + "name": "Bay", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 2500000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.EvuMVR9ut9wIHOtq" + } + }, + "system": { + "description": { + "gm": "", + "value": "The shadow hound releases an eerie bay, attempting to Demoralize each foe in a 20-foot emanation. These Demoralize attempts don't require a language and don't take any penalty due to not sharing a language.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "bay", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.461-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "vD7HMkL8eJh8gXaP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.EvuMVR9ut9wIHOtq", + "duplicateSource": null + }, + "_key": "!items!EvuMVR9ut9wIHOtq" +} diff --git a/packs/ac-advanced-maneuvers/Bear_Hug_oCgdnQP5bMDD02YC.json b/packs/ac-advanced-maneuvers/Bear_Hug_oCgdnQP5bMDD02YC.json new file mode 100644 index 0000000..63a051d --- /dev/null +++ b/packs/ac-advanced-maneuvers/Bear_Hug_oCgdnQP5bMDD02YC.json @@ -0,0 +1,90 @@ +{ + "_id": "oCgdnQP5bMDD02YC", + "name": "Bear Hug", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 6000000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.oCgdnQP5bMDD02YC" + } + }, + "system": { + "description": { + "gm": "", + "value": "Requirements The bear's last action was a successful claw Strike.
\nThe bear makes another claw Strike against the same target. If this Strike hits, the target is also @Compendium[pf2e.conditionitems.kWc1fhmv9LBiTuei]{Grabbed}, as if the bear had successfully Grappled the target.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "bear-hug", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.429-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.oCgdnQP5bMDD02YC", + "duplicateSource": null + }, + "_key": "!items!oCgdnQP5bMDD02YC" +} diff --git a/packs/ac-advanced-maneuvers/Blood_Feast_cVrW2GGLVpydj8h5.json b/packs/ac-advanced-maneuvers/Blood_Feast_cVrW2GGLVpydj8h5.json new file mode 100644 index 0000000..23507cf --- /dev/null +++ b/packs/ac-advanced-maneuvers/Blood_Feast_cVrW2GGLVpydj8h5.json @@ -0,0 +1,93 @@ +{ + "_id": "cVrW2GGLVpydj8h5", + "name": "Blood Feast", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 5100000, + "flags": { + "core": { + "sourceId": "Item.cVrW2GGLVpydj8h5" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your vampiric animal companion attacks a bleeding foe and drinks its blood. Your companion attempts a Strike against a creature currently taking persistent bleed damage. The Strike deals [[/r 2d8[additional]]]{2d8 additional damage}. If the Strike hits and deals damage, your vampiric animal companion gains temporary Hit Points equal to half your level that last for up to 1 minute.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "blood-feast", + "toggleable": true + }, + { + "key": "DamageDice", + "selector": "damage", + "diceNumber": 2, + "dieSize": "d8", + "traits": [ + "blood-feast" + ] + } + ], + "slug": "blood-feast", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.437-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.cVrW2GGLVpydj8h5", + "duplicateSource": null + }, + "_key": "!items!cVrW2GGLVpydj8h5" +} diff --git a/packs/ac-advanced-maneuvers/Boar_Charge_EwCqdvU8WOw2SSxm.json b/packs/ac-advanced-maneuvers/Boar_Charge_EwCqdvU8WOw2SSxm.json new file mode 100644 index 0000000..4db02bb --- /dev/null +++ b/packs/ac-advanced-maneuvers/Boar_Charge_EwCqdvU8WOw2SSxm.json @@ -0,0 +1,90 @@ +{ + "_id": "EwCqdvU8WOw2SSxm", + "name": "Boar Charge", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 2600000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.EwCqdvU8WOw2SSxm" + } + }, + "system": { + "description": { + "gm": "", + "value": "The boar Strides twice in a straight line and then makes a tusk Strike. As long as it moved at least 20 feet, it gains a +2 circumstance bonus to its attack roll.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "boar-charge", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.460-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.EwCqdvU8WOw2SSxm", + "duplicateSource": null + }, + "_key": "!items!EwCqdvU8WOw2SSxm" +} diff --git a/packs/ac-advanced-maneuvers/Bony_Constriction_AH3kNbdGLYaRjVAr.json b/packs/ac-advanced-maneuvers/Bony_Constriction_AH3kNbdGLYaRjVAr.json new file mode 100644 index 0000000..31d0b6e --- /dev/null +++ b/packs/ac-advanced-maneuvers/Bony_Constriction_AH3kNbdGLYaRjVAr.json @@ -0,0 +1,77 @@ +{ + "_id": "AH3kNbdGLYaRjVAr", + "name": "Bony Constriction", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 2300000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.AH3kNbdGLYaRjVAr" + } + }, + "system": { + "description": { + "gm": "", + "value": "Requirements The constrictor has a creature @Compendium[pf2e.conditionitems.Grabbed]{Grabbed}.
\nThe skeletal constrictor deals [[/r 12[piercing]]]{12 piercing Damage} to the grabbed creature with its sharp ribs; the creature must attempt a @Check[type:fortitude|dc:resolve(12+@actor.level+@actor.abilities.con.mod)|basic:true] save. If the constrictor is a specialized companion, increase this damage to [[/r 20[piercing]]]{20}. This uses a trained DC using the constrictor's Constitution modifier, or an expert DC (@Check[type:fortitude|dc:resolve(14+@actor.level+@actor.abilities.con.mod)|basic:true]) if the constrictor is specialized.
" + }, + "rules": [], + "slug": "bony-constriction", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #181: Zombie Feast" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.461-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.AH3kNbdGLYaRjVAr", + "duplicateSource": null + }, + "_key": "!items!AH3kNbdGLYaRjVAr" +} diff --git a/packs/ac-advanced-maneuvers/Bouncing_Slam_Uv49tQCwUUjaMCj5.json b/packs/ac-advanced-maneuvers/Bouncing_Slam_Uv49tQCwUUjaMCj5.json new file mode 100644 index 0000000..14c985a --- /dev/null +++ b/packs/ac-advanced-maneuvers/Bouncing_Slam_Uv49tQCwUUjaMCj5.json @@ -0,0 +1,77 @@ +{ + "_id": "Uv49tQCwUUjaMCj5", + "name": "Bouncing Slam", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 4400000, + "flags": { + "core": { + "sourceId": "Item.Uv49tQCwUUjaMCj5" + } + }, + "system": { + "description": { + "gm": "", + "value": "The gibtas Leaps toward a Medium or smaller creature, landing in the creature's space and @Compendium[pf2e.actionspf2e.7blmbDrQFNfdT731]{Shoving} the creature. If the Shove fails, the gibtas bounces out of the target's square to an adjacent square of the target's choosing.
" + }, + "rules": [], + "slug": "bouncing-slam", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #164: Hands of the Devil" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.442-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.Uv49tQCwUUjaMCj5", + "duplicateSource": null + }, + "_key": "!items!Uv49tQCwUUjaMCj5" +} diff --git a/packs/ac-advanced-maneuvers/Bounding_Retreat_yCbm5XbAzPc6U82H.json b/packs/ac-advanced-maneuvers/Bounding_Retreat_yCbm5XbAzPc6U82H.json new file mode 100644 index 0000000..1085a6f --- /dev/null +++ b/packs/ac-advanced-maneuvers/Bounding_Retreat_yCbm5XbAzPc6U82H.json @@ -0,0 +1,56 @@ +{ + "name": "Bounding Retreat", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The antelope Leaps twice. If it has a rider, it can leave them in an empty space as it Leaps out of it.
" + }, + "rules": [], + "slug": null, + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "defensive", + "actions": { + "value": 2 + }, + "deathNote": false + }, + "_id": "yCbm5XbAzPc6U82H", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "sort": 1300000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "3e303db44b2f726b1679c41b754c4ebc4e72a1fc" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!yCbm5XbAzPc6U82H" +} diff --git a/packs/ac-advanced-maneuvers/Breach_HY6rzDpBJ4L5OmgI.json b/packs/ac-advanced-maneuvers/Breach_HY6rzDpBJ4L5OmgI.json new file mode 100644 index 0000000..c884488 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Breach_HY6rzDpBJ4L5OmgI.json @@ -0,0 +1,58 @@ +{ + "name": "Breach", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The orca Swims up to its swim Speed, then Leaps vertically out of the water up to 25 feet in the air, making a Strike against a creature at any point during the jump (this lets it attack a creature within 30 feet of the water's surface). After the Strike, the orca splashes back down into the water.
" + }, + "rules": [], + "slug": "breach", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false + }, + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "4f965cdb14b03478a56e281a603e82f158a18861", + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.FhYiV30wCsKp7RqE" + }, + "core": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "HY6rzDpBJ4L5OmgI", + "sort": 100000, + "_key": "!items!HY6rzDpBJ4L5OmgI" +} diff --git a/packs/ac-advanced-maneuvers/Breath_Weapon_8JdETVTpbZAgtBA3.json b/packs/ac-advanced-maneuvers/Breath_Weapon_8JdETVTpbZAgtBA3.json new file mode 100644 index 0000000..83e0da9 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Breath_Weapon_8JdETVTpbZAgtBA3.json @@ -0,0 +1,90 @@ +{ + "_id": "8JdETVTpbZAgtBA3", + "name": "Breath Weapon", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 2100000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.8JdETVTpbZAgtBA3" + } + }, + "system": { + "description": { + "gm": "", + "value": "Frequency once per hour
\nThe riding drake breathes a 30-foot cone of fire, dealing 1d6 fire damage for every 2 levels the drake has to all creatures in the area (basic Reflex save). This uses a trained DC using the drake's Constitution modifier or an expert DC if the drake is specialized.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "breath-weapon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.462-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.8JdETVTpbZAgtBA3", + "duplicateSource": null + }, + "_key": "!items!8JdETVTpbZAgtBA3" +} diff --git a/packs/ac-advanced-maneuvers/Burrowing_Ambush_PZAHlaN4aG6NkSjj.json b/packs/ac-advanced-maneuvers/Burrowing_Ambush_PZAHlaN4aG6NkSjj.json new file mode 100644 index 0000000..4d2349b --- /dev/null +++ b/packs/ac-advanced-maneuvers/Burrowing_Ambush_PZAHlaN4aG6NkSjj.json @@ -0,0 +1,56 @@ +{ + "name": "Burrowing Ambush", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your mole Burrows and makes a Strike. If the mole began its movement underground, the target is @UUID[Compendium.pf2e.conditionitems.Item.AJh5ex99aV6VTggg]{Off-Guard} for this attack.
" + }, + "rules": [], + "slug": null, + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false + }, + "_id": "PZAHlaN4aG6NkSjj", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "sort": 700000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "ff083b2ba7631259570ecd2b686a228ff7615a61" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!PZAHlaN4aG6NkSjj" +} diff --git a/packs/ac-advanced-maneuvers/CURRENT b/packs/ac-advanced-maneuvers/CURRENT deleted file mode 100644 index 2c3afb9..0000000 --- a/packs/ac-advanced-maneuvers/CURRENT +++ /dev/null @@ -1 +0,0 @@ -MANIFEST-000288 diff --git a/packs/ac-advanced-maneuvers/Careful_Withdraw_lrchn6ROZcuKCg3C.json b/packs/ac-advanced-maneuvers/Careful_Withdraw_lrchn6ROZcuKCg3C.json new file mode 100644 index 0000000..adf2103 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Careful_Withdraw_lrchn6ROZcuKCg3C.json @@ -0,0 +1,84 @@ +{ + "_id": "lrchn6ROZcuKCg3C", + "name": "Careful Withdraw", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 5900000, + "flags": { + "core": { + "sourceId": "Item.tvBQEtzLWUR1PlcL" + } + }, + "system": { + "description": { + "gm": "", + "value": "The legchair carefully extricates you from a dangerous situation. It Steps twice and then Strides.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "careful-withdraw", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "defensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.430-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.tvBQEtzLWUR1PlcL", + "duplicateSource": null + }, + "_key": "!items!lrchn6ROZcuKCg3C" +} diff --git a/packs/ac-advanced-maneuvers/Cat_Pounce_U0J8J5ukmqnOskE8.json b/packs/ac-advanced-maneuvers/Cat_Pounce_U0J8J5ukmqnOskE8.json new file mode 100644 index 0000000..ec520cb --- /dev/null +++ b/packs/ac-advanced-maneuvers/Cat_Pounce_U0J8J5ukmqnOskE8.json @@ -0,0 +1,92 @@ +{ + "_id": "U0J8J5ukmqnOskE8", + "name": "Cat Pounce", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 4200000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.U0J8J5ukmqnOskE8" + } + }, + "system": { + "description": { + "gm": "", + "value": "The cat Strides and then Strikes. If it was undetected at the start of its Cat Pounce, it remains undetected until after the attack.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "cat-pounce", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "flourish" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.444-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.U0J8J5ukmqnOskE8", + "duplicateSource": null + }, + "_key": "!items!U0J8J5ukmqnOskE8" +} diff --git a/packs/ac-advanced-maneuvers/Circling_Flyby_ePNzRvGvBqzIujJr.json b/packs/ac-advanced-maneuvers/Circling_Flyby_ePNzRvGvBqzIujJr.json new file mode 100644 index 0000000..014cd20 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Circling_Flyby_ePNzRvGvBqzIujJr.json @@ -0,0 +1,72 @@ +{ + "name": "Circling Flyby", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your air elemental flies in a circle, blowing gusts at your foes before returning back to its starting position. The air elemental Flies up to half its Speed, makes two gust Strikes, then Flies up to half its Speed again to return to its original location. Both attacks count toward the air elemental's multiple attack penalty, but the penalty doesn't increase until after it makes both attacks.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": null, + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": null + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "_id": "ePNzRvGvBqzIujJr", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "flags": {}, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "folder": null, + "sort": 5300000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!ePNzRvGvBqzIujJr" +} diff --git a/packs/ac-advanced-maneuvers/Constrict_kKW68gi1FNJlNSOp.json b/packs/ac-advanced-maneuvers/Constrict_kKW68gi1FNJlNSOp.json new file mode 100644 index 0000000..368cd1d --- /dev/null +++ b/packs/ac-advanced-maneuvers/Constrict_kKW68gi1FNJlNSOp.json @@ -0,0 +1,90 @@ +{ + "_id": "kKW68gi1FNJlNSOp", + "name": "Constrict", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 5800000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.kKW68gi1FNJlNSOp" + } + }, + "system": { + "description": { + "gm": "", + "value": "Requirements The snake has a smaller creature grabbed.
\nThe snake deals [[/r 12]] bludgeoning damage to the grabbed creature; the creature must attempt a basic Fortitude save. If the snake is a specialized animal companion, increase this damage to [[/r 20]].
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "constrict", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.431-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.kKW68gi1FNJlNSOp", + "duplicateSource": null + }, + "_key": "!items!kKW68gi1FNJlNSOp" +} diff --git a/packs/ac-advanced-maneuvers/Darting_Attack_ClUiCoBn3lHBBK5c.json b/packs/ac-advanced-maneuvers/Darting_Attack_ClUiCoBn3lHBBK5c.json new file mode 100644 index 0000000..303fe6e --- /dev/null +++ b/packs/ac-advanced-maneuvers/Darting_Attack_ClUiCoBn3lHBBK5c.json @@ -0,0 +1,90 @@ +{ + "_id": "ClUiCoBn3lHBBK5c", + "name": "Darting Attack", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 2400000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.ClUiCoBn3lHBBK5c" + } + }, + "system": { + "description": { + "gm": "", + "value": "The raptor Steps up to 10 feet and then Strikes, or Strikes and then Steps up to 10 feet.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "darting-attack", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.461-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.ClUiCoBn3lHBBK5c", + "duplicateSource": null + }, + "_key": "!items!ClUiCoBn3lHBBK5c" +} diff --git a/packs/ac-advanced-maneuvers/Darting_Stab_5ux66ubWlevY7z2K.json b/packs/ac-advanced-maneuvers/Darting_Stab_5ux66ubWlevY7z2K.json new file mode 100644 index 0000000..7db9992 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Darting_Stab_5ux66ubWlevY7z2K.json @@ -0,0 +1,58 @@ +{ + "name": "Darting Stab", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The giant wasp Flies up to 15 feet and then Strikes, or Strikes and then Flies up to 15 feet.
" + }, + "rules": [], + "slug": "darting-stab", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "flourish" + ] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "passive" + }, + "category": "offensive", + "actions": { + "value": null + }, + "deathNote": false + }, + "_id": "5ux66ubWlevY7z2K", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "sort": 200000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "227dbd46761794ad6c254f65aadac1dccf3bf3e9" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!5ux66ubWlevY7z2K" +} diff --git a/packs/ac-advanced-maneuvers/Death_Roll_ttJ1CanrAuehoSV8.json b/packs/ac-advanced-maneuvers/Death_Roll_ttJ1CanrAuehoSV8.json new file mode 100644 index 0000000..2aae838 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Death_Roll_ttJ1CanrAuehoSV8.json @@ -0,0 +1,105 @@ +{ + "_id": "ttJ1CanrAuehoSV8", + "name": "Death Roll", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 6800000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.ttJ1CanrAuehoSV8" + } + }, + "system": { + "description": { + "gm": "", + "value": "Requirements The crocodile has a creature grabbed.
\nThe crocodile tucks its legs and rolls rapidly, twisting its victim. It makes a jaws Strike with a +2 circumstance bonus to the attack roll against the grabbed creature. If it hits, it also knocks the creature @Compendium[pf2e.conditionitems.j91X7x0XSomq8d60]{Prone}. If it misses, it releases the creature.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + }, + { + "key": "RollOption", + "domain": "all", + "option": "deathRoll", + "toggleable": true + }, + { + "key": "FlatModifier", + "selector": "jaws-attack", + "value": 2, + "type": "circumstance", + "predicate": [ + "deathRoll" + ] + } + ], + "slug": "death-roll", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.424-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.ttJ1CanrAuehoSV8", + "duplicateSource": null + }, + "_key": "!items!ttJ1CanrAuehoSV8" +} diff --git a/packs/ac-advanced-maneuvers/Death_from_Above_OYzEhVH6zMgf64Tg.json b/packs/ac-advanced-maneuvers/Death_from_Above_OYzEhVH6zMgf64Tg.json new file mode 100644 index 0000000..72841e0 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Death_from_Above_OYzEhVH6zMgf64Tg.json @@ -0,0 +1,58 @@ +{ + "name": "Death from Above", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The flying squirrel crashes down onto a target, furiously clawing at it. The flying squirrel falls to an empty space next to the target, taking no damage, and makes two claw Strikes. Both attacks count toward its multiple attack penalty, but the penalty doesn't increase until after both attacks have been made.
" + }, + "rules": [], + "slug": "death-from-above", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "flourish" + ] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "passive" + }, + "category": "offensive", + "actions": { + "value": null + }, + "deathNote": false + }, + "_id": "OYzEhVH6zMgf64Tg", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 600000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "ed3b4809febdc369d9c54acbeb477d3724a20be4" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!OYzEhVH6zMgf64Tg" +} diff --git a/packs/ac-advanced-maneuvers/Defensive_Curl_pMPtswKNokDNyYR2.json b/packs/ac-advanced-maneuvers/Defensive_Curl_pMPtswKNokDNyYR2.json new file mode 100644 index 0000000..785f954 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Defensive_Curl_pMPtswKNokDNyYR2.json @@ -0,0 +1,98 @@ +{ + "_id": "pMPtswKNokDNyYR2", + "name": "Defensive Curl", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 6500000, + "flags": { + "core": { + "sourceId": "Item.tvBQEtzLWUR1PlcL" + } + }, + "system": { + "description": { + "gm": "", + "value": "The pangolin coils into a ball to defend itself. It gains a +2 circumstance bonus to AC. Any creature that hits the pangolin with a melee unarmed attack while it's in its Defensive Curl take [[/r 2d6[persistent,bleed]]] damage. The pangolin can't move, use its unarmed attacks, or take other actions that require it to use its limbs while in its Defensive Curl, but it can unfurl as a single action, ending the effects of Defensive Curl.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "defensiveCurl", + "toggleable": true + }, + { + "key": "FlatModifier", + "selector": "ac", + "value": 2, + "predicate": [ + "defensiveCurl" + ] + }, + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "defensive-curl", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "defensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.427-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.tvBQEtzLWUR1PlcL", + "duplicateSource": null + }, + "_key": "!items!pMPtswKNokDNyYR2" +} diff --git a/packs/ac-advanced-maneuvers/Disgusting_Gallop_h1Rldre8WVjUR5XO.json b/packs/ac-advanced-maneuvers/Disgusting_Gallop_h1Rldre8WVjUR5XO.json new file mode 100644 index 0000000..92a3e9f --- /dev/null +++ b/packs/ac-advanced-maneuvers/Disgusting_Gallop_h1Rldre8WVjUR5XO.json @@ -0,0 +1,80 @@ +{ + "_id": "h1Rldre8WVjUR5XO", + "name": "Disgusting Gallop", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 5700000, + "flags": { + "core": { + "sourceId": "Item.h1Rldre8WVjUR5XO" + } + }, + "system": { + "description": { + "gm": "", + "value": "The zombie mount Strides twice, spraying putrid spittle as it runs. Once during this movement, choose a creature adjacent to the zombie mount. The spittle splashes on it, and the creature must succeed at a @Check[type:fortitude|dc:resolve(12+@actor.level+@actor.abilities.con.mod)] save or be @Compendium[pf2e.conditionitems.Sickened]{Sickened 1}. The creature is then temporarily immune to the spittle for 24 hours. This uses a trained DC using the zombie mount's Constitution modifier, or an expert DC (@Check[type:fortitude|dc:resolve(14+@actor.level+@actor.abilities.con.mod)]) if the mount is specialized.
" + }, + "rules": [], + "slug": "disgusting-gallop", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "disease", + "move" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #181: Zombie Feast" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.432-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.h1Rldre8WVjUR5XO", + "duplicateSource": null + }, + "_key": "!items!h1Rldre8WVjUR5XO" +} diff --git a/packs/ac-advanced-maneuvers/Distracting_Spray_cpMkN79PdNci3nGp.json b/packs/ac-advanced-maneuvers/Distracting_Spray_cpMkN79PdNci3nGp.json new file mode 100644 index 0000000..5d900f1 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Distracting_Spray_cpMkN79PdNci3nGp.json @@ -0,0 +1,84 @@ +{ + "_id": "cpMkN79PdNci3nGp", + "name": "Distracting Spray", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 5200000, + "flags": { + "core": { + "sourceId": "Item.tvBQEtzLWUR1PlcL" + } + }, + "system": { + "description": { + "gm": "", + "value": "The capybara sprays an adjacent target with its scent glands. The target must attempt a Fortitude save. Wiping off the musk takes an Interact action and ends the effect. This uses a trained DC using the capybara's Constitution modifier or an expert DC if the capybara is specialized.
\nCritical Success The creature is unaffected.
\nSuccess The creature is @Compendium[pf2e.conditionitems.Clumsy]{Clumsy 1} for 1 round.
\nFailure The creature is clumsy 1 for 1 minute.
\nCritical Failure The creature is @Compendium[pf2e.conditionitems.Clumsy]{Clumsy 2} for 1 minute.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "distracting-spray", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "defensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.433-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.tvBQEtzLWUR1PlcL", + "duplicateSource": null + }, + "_key": "!items!cpMkN79PdNci3nGp" +} diff --git a/packs/ac-advanced-maneuvers/Drench_x4clojDNIvYB5V7X.json b/packs/ac-advanced-maneuvers/Drench_x4clojDNIvYB5V7X.json new file mode 100644 index 0000000..3a78c43 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Drench_x4clojDNIvYB5V7X.json @@ -0,0 +1,72 @@ +{ + "name": "Drench", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your water elemental drenches nearby fires to extinguish them. Your elemental puts out all fires in a @Template[type:emanation|distance:5]. It extinguishes all non-magical fires automatically and attempts to counteract magical fires (its counteract modifier is equal to its attack modifier with its wave Strike, unmodified by any bonuses or effects that apply to attack rolls).
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": null, + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": null + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "flags": {}, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "x4clojDNIvYB5V7X", + "folder": null, + "sort": 7000000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!x4clojDNIvYB5V7X" +} diff --git a/packs/ac-advanced-maneuvers/Extend_Pseudopod_gzefJocgdWbXWWPi.json b/packs/ac-advanced-maneuvers/Extend_Pseudopod_gzefJocgdWbXWWPi.json new file mode 100644 index 0000000..4c44db8 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Extend_Pseudopod_gzefJocgdWbXWWPi.json @@ -0,0 +1,74 @@ +{ + "folder": null, + "name": "Extend Pseudopod", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your chair lengthens itself, granting its pseudopod Strike the reach 10 feet trait until the beginning of your next turn.
" + }, + "rules": [], + "slug": "", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Treasure Vault" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.432-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "gzefJocgdWbXWWPi", + "sort": 5600000, + "_key": "!items!gzefJocgdWbXWWPi" +} diff --git a/packs/ac-advanced-maneuvers/Feast_on_the_Fallen_g4JEtCnKXyY4LJpm.json b/packs/ac-advanced-maneuvers/Feast_on_the_Fallen_g4JEtCnKXyY4LJpm.json new file mode 100644 index 0000000..fb1d1e6 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Feast_on_the_Fallen_g4JEtCnKXyY4LJpm.json @@ -0,0 +1,93 @@ +{ + "_id": "g4JEtCnKXyY4LJpm", + "name": "Feast on the Fallen", + "type": "action", + "img": "systems/pf2e/icons/actions/Reaction.webp", + "effects": [], + "folder": null, + "sort": 5400000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.g4JEtCnKXyY4LJpm" + } + }, + "system": { + "description": { + "gm": "", + "value": "Frequency once per hour
\nTrigger A creature adjacent to the vulture is reduced to 0 Hit Points
\nThe vulture consumes a piece of the defeated foe, regaining [[/r 18]] Hit Points. If the vulture is a specialized animal companion, increase the Hit Points regained to [[/r 30]].
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "feast-on-the-fallen", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "healing", + "manipulate" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "reaction" + }, + "category": "defensive", + "actions": { + "value": null + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.433-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.g4JEtCnKXyY4LJpm", + "duplicateSource": null + }, + "_key": "!items!g4JEtCnKXyY4LJpm" +} diff --git a/packs/ac-advanced-maneuvers/Flamethrower_LCilgiiIZp408R3k.json b/packs/ac-advanced-maneuvers/Flamethrower_LCilgiiIZp408R3k.json new file mode 100644 index 0000000..86df77d --- /dev/null +++ b/packs/ac-advanced-maneuvers/Flamethrower_LCilgiiIZp408R3k.json @@ -0,0 +1,76 @@ +{ + "name": "Flamethrower", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Frequency once per 10 minutes
\nThe fire elemental makes a tendril Strike against all creatures in a @Template[type:line|distance:60], even those that aren't in the tendril Strike's reach. All these Strikes count toward the fire elemental's multiple attack penalty, but it doesn't increase until all the Strikes.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": null, + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": null + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "frequency": { + "max": 1, + "per": "PT10M" + } + }, + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "flags": {}, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "LCilgiiIZp408R3k", + "folder": null, + "sort": 3400000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!LCilgiiIZp408R3k" +} diff --git a/packs/ac-advanced-maneuvers/Float_VSsW37hmpmXNOUwd.json b/packs/ac-advanced-maneuvers/Float_VSsW37hmpmXNOUwd.json new file mode 100644 index 0000000..827e248 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Float_VSsW37hmpmXNOUwd.json @@ -0,0 +1,56 @@ +{ + "name": "Float", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Trigger The umbrella mushroom is falling.
\nThe umbrella mushroom inflates buoyant air bladders and begins rotating to arrest the fall. It slows its descent to 60 feet per round. It can take this reaction even when @UUID[Compendium.pf2e.conditionitems.Item.fBnFDH2MTzgFijKf]{Unconscious}.
" + }, + "rules": [], + "slug": "float", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "reaction" + }, + "category": "defensive", + "actions": { + "value": null + }, + "deathNote": false + }, + "_id": "VSsW37hmpmXNOUwd", + "img": "systems/pf2e/icons/actions/Reaction.webp", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "99b2f01ad6890ccfdb0a097aef6ab50f5fb9b6ea" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!VSsW37hmpmXNOUwd" +} diff --git a/packs/ac-advanced-maneuvers/Flyby_Attack_X4VjMfVVAjZjwcrT.json b/packs/ac-advanced-maneuvers/Flyby_Attack_X4VjMfVVAjZjwcrT.json new file mode 100644 index 0000000..56a9c38 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Flyby_Attack_X4VjMfVVAjZjwcrT.json @@ -0,0 +1,90 @@ +{ + "_id": "X4VjMfVVAjZjwcrT", + "name": "Flyby Attack", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 4700000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.X4VjMfVVAjZjwcrT" + } + }, + "system": { + "description": { + "gm": "", + "value": "The bird Flies and makes a talon Strike at any point along the way.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "flyby-attack", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.441-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.X4VjMfVVAjZjwcrT", + "duplicateSource": null + }, + "_key": "!items!X4VjMfVVAjZjwcrT" +} diff --git a/packs/ac-advanced-maneuvers/Flying_Strafe_WocN44CJGHYxitzM.json b/packs/ac-advanced-maneuvers/Flying_Strafe_WocN44CJGHYxitzM.json new file mode 100644 index 0000000..cfe66c3 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Flying_Strafe_WocN44CJGHYxitzM.json @@ -0,0 +1,56 @@ +{ + "name": "Flying Strafe", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The griffon Flies up to its fly Speed and makes two talon Strikes at any point, each against a different creature.
" + }, + "rules": [], + "slug": "flying-strafe", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "passive" + }, + "category": "offensive", + "actions": { + "value": null + }, + "deathNote": false + }, + "_id": "WocN44CJGHYxitzM", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "sort": 1400000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "f489c41609a490ff733527315921a8b222bbc1fc" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!WocN44CJGHYxitzM" +} diff --git a/packs/ac-advanced-maneuvers/Frightening_Display_0WtqP7Wei3AxHh5M.json b/packs/ac-advanced-maneuvers/Frightening_Display_0WtqP7Wei3AxHh5M.json new file mode 100644 index 0000000..08d4cfe --- /dev/null +++ b/packs/ac-advanced-maneuvers/Frightening_Display_0WtqP7Wei3AxHh5M.json @@ -0,0 +1,92 @@ +{ + "_id": "0WtqP7Wei3AxHh5M", + "name": "Frightening Display", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 1700000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.0WtqP7Wei3AxHh5M" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your ape makes a loud and frightening display, throwing a foe off balance. The ape attempts to @Compendium[pf2e.action-macros.nEwqNNWX6scLt4sc]{Demoralize: Intimidation} the target creature; this display gains the visual trait and doesn't require language. While frightened by this ability, the target is @Compendium[pf2e.conditionitems.AJh5ex99aV6VTggg]{Off-Guard} to your ape.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "frightening-display", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "visual" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.464-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.0WtqP7Wei3AxHh5M", + "duplicateSource": null + }, + "_key": "!items!0WtqP7Wei3AxHh5M" +} diff --git a/packs/ac-advanced-maneuvers/Gallop_tsOaXTRWQvsKTyaL.json b/packs/ac-advanced-maneuvers/Gallop_tsOaXTRWQvsKTyaL.json new file mode 100644 index 0000000..9a203cd --- /dev/null +++ b/packs/ac-advanced-maneuvers/Gallop_tsOaXTRWQvsKTyaL.json @@ -0,0 +1,90 @@ +{ + "_id": "tsOaXTRWQvsKTyaL", + "name": "Gallop", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 6700000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.tsOaXTRWQvsKTyaL" + } + }, + "system": { + "description": { + "gm": "", + "value": "The companion Strides twice at a +10-foot circumstance bonus to Speed.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "gallop", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "interaction", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.425-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.tsOaXTRWQvsKTyaL", + "duplicateSource": null + }, + "_key": "!items!tsOaXTRWQvsKTyaL" +} diff --git a/packs/ac-advanced-maneuvers/Gnaw_oisXYTTYE0TABboA.json b/packs/ac-advanced-maneuvers/Gnaw_oisXYTTYE0TABboA.json new file mode 100644 index 0000000..ca1fd34 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Gnaw_oisXYTTYE0TABboA.json @@ -0,0 +1,90 @@ +{ + "_id": "oisXYTTYE0TABboA", + "name": "Gnaw", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 6200000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.oisXYTTYE0TABboA" + } + }, + "system": { + "description": { + "gm": "", + "value": "Requirements The animal companion's last action was a successful jaws Strike.
\nThe Strike's target takes [[/r 1d6[bleed]]] damage and takes a –10-foot status penalty to its Speed until it removes the bleed damage. If the hyena is a specialized animal companion, the persistent bleed damage increases to 2d6.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "gnaw", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.428-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.oisXYTTYE0TABboA", + "duplicateSource": null + }, + "_key": "!items!oisXYTTYE0TABboA" +} diff --git a/packs/ac-advanced-maneuvers/Grab_and_Sting_7H8wqKtsAaSgyLyp.json b/packs/ac-advanced-maneuvers/Grab_and_Sting_7H8wqKtsAaSgyLyp.json new file mode 100644 index 0000000..975b836 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Grab_and_Sting_7H8wqKtsAaSgyLyp.json @@ -0,0 +1,90 @@ +{ + "_id": "7H8wqKtsAaSgyLyp", + "name": "Grab and Sting", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 2000000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.7H8wqKtsAaSgyLyp" + } + }, + "system": { + "description": { + "gm": "", + "value": "The scorpion holds its foe in place with its pincers in order to sting it. It makes a pincer Strike. If the Strike hits, the target creature automatically becomes @Compendium[pf2e.conditionitems.kWc1fhmv9LBiTuei]{Grabbed} by the scorpion, which then makes a stinger Strike against it. The grabbed condition lasts until the end of your next turn.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "grab-and-sting", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.463-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.7H8wqKtsAaSgyLyp", + "duplicateSource": null + }, + "_key": "!items!7H8wqKtsAaSgyLyp" +} diff --git a/packs/ac-advanced-maneuvers/Grabbing_Branches_gvOo0KSSHkqfW3j5.json b/packs/ac-advanced-maneuvers/Grabbing_Branches_gvOo0KSSHkqfW3j5.json new file mode 100644 index 0000000..8066d85 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Grabbing_Branches_gvOo0KSSHkqfW3j5.json @@ -0,0 +1,72 @@ +{ + "name": "Grabbing Branches", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your wood elemental surrounds a foe with branches, grabbing it in place. Your wood elemental makes a branch Strike; on a success, the target is also @UUID[Compendium.pf2e.conditionitems.Item.kWc1fhmv9LBiTuei]{Grabbed} by the wood elemental until the end of your next turn unless your wood elemental moves or the target Escapes.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": null, + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": null + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "flags": {}, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "gvOo0KSSHkqfW3j5", + "folder": null, + "sort": 5500000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!gvOo0KSSHkqfW3j5" +} diff --git a/packs/ac-advanced-maneuvers/Grabbing_Trunk_oYEXImMSzg0eDqzR.json b/packs/ac-advanced-maneuvers/Grabbing_Trunk_oYEXImMSzg0eDqzR.json new file mode 100644 index 0000000..db59b91 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Grabbing_Trunk_oYEXImMSzg0eDqzR.json @@ -0,0 +1,77 @@ +{ + "_id": "oYEXImMSzg0eDqzR", + "name": "Grabbing Trunk", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 6100000, + "flags": { + "core": { + "sourceId": "Item.oYEXImMSzg0eDqzR" + } + }, + "system": { + "description": { + "gm": "", + "value": "The elephant grabs its foe with its trunk and carries it off. The elephant uses Athletics to @Compendium[pf2e.actionspf2e.Grapple]{Grapple} a creature up to two sizes smaller than the elephant in its trunk. If its target is @Compendium[pf2e.conditionitems.Grabbed]{Grabbed} or @Compendium[pf2e.conditionitems.Restrained]{Restrained}, the elephant repositions the target to another space in the elephant's reach.
" + }, + "rules": [], + "slug": "grabbing-trunk", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #177: Burning Tundra" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.429-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.oYEXImMSzg0eDqzR", + "duplicateSource": null + }, + "_key": "!items!oYEXImMSzg0eDqzR" +} diff --git a/packs/ac-advanced-maneuvers/Grip_Throat_MQv67R7KBIrJkshN.json b/packs/ac-advanced-maneuvers/Grip_Throat_MQv67R7KBIrJkshN.json new file mode 100644 index 0000000..d4079d8 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Grip_Throat_MQv67R7KBIrJkshN.json @@ -0,0 +1,77 @@ +{ + "_id": "MQv67R7KBIrJkshN", + "name": "Grip Throat", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 3700000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.MQv67R7KBIrJkshN" + } + }, + "system": { + "description": { + "gm": "", + "value": "The hand attempts to @Compendium[pf2e.actionspf2e.Grapple]{Grapple} a Medium or smaller creature by the throat. If the Grapple succeeds, in addition to the normal effects, the creature has difficulty speaking. While it remains @Compendium[pf2e.conditionitems.Grabbed]{Grabbed} or @Compendium[pf2e.conditionitems.Restrained]{Restrained} by the hand, it must spend an extra action to perform any action that has the verbal trait.
" + }, + "rules": [], + "slug": "grip-throat", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #181: Zombie Feast" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.450-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.MQv67R7KBIrJkshN", + "duplicateSource": null + }, + "_key": "!items!MQv67R7KBIrJkshN" +} diff --git a/packs/ac-advanced-maneuvers/Gulp_Blood_aDuPDWgutiDIoWjW.json b/packs/ac-advanced-maneuvers/Gulp_Blood_aDuPDWgutiDIoWjW.json new file mode 100644 index 0000000..a0222d2 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Gulp_Blood_aDuPDWgutiDIoWjW.json @@ -0,0 +1,77 @@ +{ + "name": "Gulp Blood", + "type": "action", + "system": { + "description": { + "gm": "", + "value": "Requirements The water wraith's last action was a successful jaws attack against a foe.
\nThe water wraith gains [[/r 2d8 #Temporary Hit Points]]{2d8} temporary Hit Points that last for 1 round, and the foe takes [[/r 2d6[persistent,bleed]]] damage. If the water wraith has a specialization, the water wraith instead gains [[/r 3d8 #Temporary Hit Points]]{3d8} temporary Hit Points, and the target takes [[/r 3d6[persistent,bleed]]] damage. If the targeted creature has absolutely no vital fluids, this ability might not function, at the GM's discretion.
" + }, + "rules": [], + "slug": "gulp-blood", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Lost Omens: Impossible Lands" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.439-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": { + "sourceId": "Item.g1QzcWAHw8EjBxNs" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.g1QzcWAHw8EjBxNs", + "duplicateSource": null + }, + "folder": null, + "sort": 4900000, + "_id": "aDuPDWgutiDIoWjW", + "_key": "!items!aDuPDWgutiDIoWjW" +} diff --git a/packs/ac-advanced-maneuvers/Hair_Barrage_eFZtA8LHdw4mWJVt.json b/packs/ac-advanced-maneuvers/Hair_Barrage_eFZtA8LHdw4mWJVt.json new file mode 100644 index 0000000..5620211 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Hair_Barrage_eFZtA8LHdw4mWJVt.json @@ -0,0 +1,56 @@ +{ + "name": "Hair Barrage", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The tarantula flicks its legs, flinging spiky hairs in a @Template[type:cone|distance:15]. This deals @Damage[4d6[piercing]] damage with a @Check[type:reflex|dc:resolve(@actor.system.attributes.classDC.value)|basic:true] save against your class DC. This damage increases by an additional 1d6 for every 4 levels you have beyond 6th.
" + }, + "rules": [], + "slug": "hair-barrage", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false + }, + "_id": "eFZtA8LHdw4mWJVt", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "4ad07bfc3c83ee9f66be9b444385b6f92b9cc945" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!eFZtA8LHdw4mWJVt" +} diff --git a/packs/ac-advanced-maneuvers/Hustle_zSlsnbvsGKdCTzL1.json b/packs/ac-advanced-maneuvers/Hustle_zSlsnbvsGKdCTzL1.json new file mode 100644 index 0000000..f766f30 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Hustle_zSlsnbvsGKdCTzL1.json @@ -0,0 +1,77 @@ +{ + "name": "Hustle", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 7300000, + "flags": { + "core": { + "sourceId": "Item.VJDtqINNuKBqW7Hs" + } + }, + "_id": "zSlsnbvsGKdCTzL1", + "system": { + "description": { + "gm": "", + "value": "The beetle moves at incredible speed. It Strides three times.
" + }, + "rules": [], + "slug": "hustle", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "interaction", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.413-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.VJDtqINNuKBqW7Hs", + "duplicateSource": null + }, + "_key": "!items!zSlsnbvsGKdCTzL1" +} diff --git a/packs/ac-advanced-maneuvers/Knock_Aside_IoWvKP6WDijlkrin.json b/packs/ac-advanced-maneuvers/Knock_Aside_IoWvKP6WDijlkrin.json new file mode 100644 index 0000000..0ca9e83 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Knock_Aside_IoWvKP6WDijlkrin.json @@ -0,0 +1,74 @@ +{ + "folder": null, + "name": "Knock Aside", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Requirements The animal companion's last action was a successful headbutt Strike.
\nThe goat automatically pushes the target back 5 feet, or 10 feet if the required Strike was a critical hit.
" + }, + "rules": [], + "slug": "", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Lost Omens: Highhelm" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.456-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "IoWvKP6WDijlkrin", + "sort": 3200000, + "_key": "!items!IoWvKP6WDijlkrin" +} diff --git a/packs/ac-advanced-maneuvers/Knockdown_xssFjTXqGlsaddvl.json b/packs/ac-advanced-maneuvers/Knockdown_xssFjTXqGlsaddvl.json new file mode 100644 index 0000000..f6a1106 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Knockdown_xssFjTXqGlsaddvl.json @@ -0,0 +1,90 @@ +{ + "_id": "xssFjTXqGlsaddvl", + "name": "Knockdown", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 7100000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.xssFjTXqGlsaddvl" + } + }, + "system": { + "description": { + "gm": "", + "value": "Requirements The animal companion's last action was a successful jaws Strike.
\nThe wolf automatically knocks the target of its jaws Strike @Compendium[pf2e.conditionitems.j91X7x0XSomq8d60]{Prone}.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "knockdown", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.422-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.xssFjTXqGlsaddvl", + "duplicateSource": null + }, + "_key": "!items!xssFjTXqGlsaddvl" +} diff --git a/packs/ac-advanced-maneuvers/LOG b/packs/ac-advanced-maneuvers/LOG deleted file mode 100644 index c614764..0000000 --- a/packs/ac-advanced-maneuvers/LOG +++ /dev/null @@ -1,3 +0,0 @@ -2024/05/25-18:34:59.904 dc8 Recovering log #287 -2024/05/25-18:34:59.906 dc8 Delete type=0 #287 -2024/05/25-18:34:59.906 dc8 Delete type=3 #285 diff --git a/packs/ac-advanced-maneuvers/LOG.old b/packs/ac-advanced-maneuvers/LOG.old deleted file mode 100644 index 0646d1c..0000000 --- a/packs/ac-advanced-maneuvers/LOG.old +++ /dev/null @@ -1,5 +0,0 @@ -2024/05/23-20:18:10.923 2950 Recovering log #284 -2024/05/23-20:18:10.923 2950 Level-0 table #286: started -2024/05/23-20:18:10.925 2950 Level-0 table #286: 19187 bytes OK -2024/05/23-20:18:10.931 2950 Delete type=0 #284 -2024/05/23-20:18:10.931 2950 Delete type=3 #282 diff --git a/packs/ac-advanced-maneuvers/Liberating_Bite_LBPGvjR3zSau0QC4.json b/packs/ac-advanced-maneuvers/Liberating_Bite_LBPGvjR3zSau0QC4.json new file mode 100644 index 0000000..da56361 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Liberating_Bite_LBPGvjR3zSau0QC4.json @@ -0,0 +1,58 @@ +{ + "name": "Liberating Bite", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The mongoose makes a jaws Strike that can help creatures break free of restraint, like the grasp of a cobra. If the Strike hits, each creature grappled or @UUID[Compendium.pf2e.conditionitems.Item.VcDeM8A5oI6VqhbM]{Restrained} by the target can @UUID[Compendium.pf2e.actionspf2e.Item.SkZAQRkLLkmBQNB9]{Escape} as a free action.
" + }, + "rules": [], + "slug": null, + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "flourish" + ] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false + }, + "_id": "LBPGvjR3zSau0QC4", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 500000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "ba5fab7ebb582cf97425dcfabb3b676ece3a7812" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!LBPGvjR3zSau0QC4" +} diff --git a/packs/ac-advanced-maneuvers/Long_Stomp_9IqqECMTmfbaBY0C.json b/packs/ac-advanced-maneuvers/Long_Stomp_9IqqECMTmfbaBY0C.json new file mode 100644 index 0000000..cfc4474 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Long_Stomp_9IqqECMTmfbaBY0C.json @@ -0,0 +1,56 @@ +{ + "name": "Long Stomp", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your giraffe Strides twice and then makes a hoof Strike. As long as it moved at least 20 feet, it deals an additional @Damage[1d6[bludgeoning]] damage. Increase this to @Damage[2d6[bludgeoning]] if your giraffe is specialized.
" + }, + "rules": [], + "slug": "long-stomp", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false + }, + "_id": "9IqqECMTmfbaBY0C", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "sort": 300000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "b8c9b958cdb9231fbf5adfc280821db146b7f0a7" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!9IqqECMTmfbaBY0C" +} diff --git a/packs/ac-advanced-maneuvers/Lumbering_Knockdown_H1ElYt6KovGYGzLD.json b/packs/ac-advanced-maneuvers/Lumbering_Knockdown_H1ElYt6KovGYGzLD.json new file mode 100644 index 0000000..8efe488 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Lumbering_Knockdown_H1ElYt6KovGYGzLD.json @@ -0,0 +1,77 @@ +{ + "_id": "H1ElYt6KovGYGzLD", + "name": "Lumbering Knockdown", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 2900000, + "flags": { + "core": { + "sourceId": "Item.H1ElYt6KovGYGzLD" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your triceratops Strides up to 10 feet, then makes a horns Strike. On a success, the target is knocked @Compendium[pf2e.conditionitems.j91X7x0XSomq8d60]{Prone}.
" + }, + "rules": [], + "slug": "lumbering-knockdown", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #177: Burning Tundra" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.458-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.H1ElYt6KovGYGzLD", + "duplicateSource": null + }, + "_key": "!items!H1ElYt6KovGYGzLD" +} diff --git a/packs/ac-advanced-maneuvers/Lurching_Rush_uR3j6TAJFeOVUHpY.json b/packs/ac-advanced-maneuvers/Lurching_Rush_uR3j6TAJFeOVUHpY.json new file mode 100644 index 0000000..e990c30 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Lurching_Rush_uR3j6TAJFeOVUHpY.json @@ -0,0 +1,90 @@ +{ + "_id": "uR3j6TAJFeOVUHpY", + "name": "Lurching Rush", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 6900000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.uR3j6TAJFeOVUHpY" + } + }, + "system": { + "description": { + "gm": "", + "value": "The monitor lizard Strides and then makes a jaws Strike. If it moved at least 20 feet away from its starting position, it gains a +2 circumstance bonus to this attack roll.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "lurching-rush", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.423-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.uR3j6TAJFeOVUHpY", + "duplicateSource": null + }, + "_key": "!items!uR3j6TAJFeOVUHpY" +} diff --git a/packs/ac-advanced-maneuvers/MANIFEST-000288 b/packs/ac-advanced-maneuvers/MANIFEST-000288 deleted file mode 100644 index 06ff640..0000000 Binary files a/packs/ac-advanced-maneuvers/MANIFEST-000288 and /dev/null differ diff --git a/packs/ac-advanced-maneuvers/Overwhelm_yXw82Zd5nkcCUfRQ.json b/packs/ac-advanced-maneuvers/Overwhelm_yXw82Zd5nkcCUfRQ.json new file mode 100644 index 0000000..99cf8b0 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Overwhelm_yXw82Zd5nkcCUfRQ.json @@ -0,0 +1,77 @@ +{ + "_id": "yXw82Zd5nkcCUfRQ", + "name": "Overwhelm", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 7200000, + "flags": { + "core": { + "sourceId": "Item.yXw82Zd5nkcCUfRQ" + } + }, + "system": { + "description": { + "gm": "", + "value": "The tyrannosaurus bears down on an enemy and pins it with its jaws. The tyrannosaurus makes a jaws Strike; on a hit, the target is @Compendium[pf2e.conditionitems.Grabbed]{Grabbed}.
" + }, + "rules": [], + "slug": "overwhelm", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #177: Burning Tundra" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.421-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.yXw82Zd5nkcCUfRQ", + "duplicateSource": null + }, + "_key": "!items!yXw82Zd5nkcCUfRQ" +} diff --git a/packs/ac-advanced-maneuvers/Pick_at_the_Meat_9o7NwxGqohpa9M7r.json b/packs/ac-advanced-maneuvers/Pick_at_the_Meat_9o7NwxGqohpa9M7r.json new file mode 100644 index 0000000..4e115c2 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Pick_at_the_Meat_9o7NwxGqohpa9M7r.json @@ -0,0 +1,77 @@ +{ + "_id": "9o7NwxGqohpa9M7r", + "name": "Pick at the Meat", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 2200000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.9o7NwxGqohpa9M7r" + } + }, + "system": { + "description": { + "gm": "", + "value": "Requirements The animal companion's last action was a successful jaws Strike.
\nYour bird picks at the wound it just created. The target of its jaws Strike takes [[/r 1d8[persistent,bleed]]], or [[/r 2d8[persistent,bleed]]] if the bird is specialized.
" + }, + "rules": [], + "slug": "pick-at-the-meat", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #181: Zombie Feast" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.462-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.9o7NwxGqohpa9M7r", + "duplicateSource": null + }, + "_key": "!items!9o7NwxGqohpa9M7r" +} diff --git a/packs/ac-advanced-maneuvers/Poisonous_Sweep_l3aasm0to5RvUkU0.json b/packs/ac-advanced-maneuvers/Poisonous_Sweep_l3aasm0to5RvUkU0.json new file mode 100644 index 0000000..8c9ca29 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Poisonous_Sweep_l3aasm0to5RvUkU0.json @@ -0,0 +1,59 @@ +{ + "name": "Poisonous Sweep", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The salamander secretes poison from the glands on its tail and bludgeons an enemy to apply it to them. It makes a tail Strike. If the Strike hits, the target takes an additional @Damage[1d6[persistent,poison]] damage. If your salamander is nimble or savage, increase this damage to @Damage[2d6[persistent,poison]] damage.
" + }, + "rules": [], + "slug": null, + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "flourish", + "poison" + ] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false + }, + "_id": "l3aasm0to5RvUkU0", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 1200000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "d82b2ed997c7a48b592048093b365c63e478b0d3" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!l3aasm0to5RvUkU0" +} diff --git a/packs/ac-advanced-maneuvers/Pterosaur_Swoop_7C9iFWBpEOJs4Uo2.json b/packs/ac-advanced-maneuvers/Pterosaur_Swoop_7C9iFWBpEOJs4Uo2.json new file mode 100644 index 0000000..f73ff74 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Pterosaur_Swoop_7C9iFWBpEOJs4Uo2.json @@ -0,0 +1,90 @@ +{ + "_id": "7C9iFWBpEOJs4Uo2", + "name": "Pterosaur Swoop", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 1900000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.7C9iFWBpEOJs4Uo2" + } + }, + "system": { + "description": { + "gm": "", + "value": "The pterosaur Flies up to its Speed and makes one beak Strike at any point during that movement.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "pterosaur-swoop", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.463-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.7C9iFWBpEOJs4Uo2", + "duplicateSource": null + }, + "_key": "!items!7C9iFWBpEOJs4Uo2" +} diff --git a/packs/ac-advanced-maneuvers/Rhinoceros_Charge_JMHoCFb886K6dT1n.json b/packs/ac-advanced-maneuvers/Rhinoceros_Charge_JMHoCFb886K6dT1n.json new file mode 100644 index 0000000..3290264 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Rhinoceros_Charge_JMHoCFb886K6dT1n.json @@ -0,0 +1,116 @@ +{ + "_id": "JMHoCFb886K6dT1n", + "name": "Rhinoceros Charge", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 3300000, + "flags": { + "core": { + "sourceId": "Item.JMHoCFb886K6dT1n" + } + }, + "system": { + "description": { + "gm": "", + "value": "The rhino Strides and makes a horn Strike at the end of its Stride. As long as the rhino moved at least 20 feet, the horn Strike deals 1d8 additional piercing damage, or 2d8 additional damage if your rhino is nimble or savage.
" + }, + "rules": [ + { + "domain": "all", + "key": "RollOption", + "option": "rhino-charge", + "toggleable": true + }, + { + "key": "DamageDice", + "selector": "damage", + "damageType": "piercing", + "diceNumber": 1, + "dieSize": "d8", + "predicate": [ + "rhino-charge", + { + "nor": [ + "self:savage", + "self:nimble" + ] + } + ] + }, + { + "key": "DamageDice", + "selector": "damage", + "damageType": "piercing", + "diceNumber": 2, + "dieSize": "d8", + "predicate": [ + "rhino-charge", + { + "or": [ + "self:savage", + "self:nimble" + ] + } + ] + } + ], + "slug": "rhinoceros-charge", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #177: Burning Tundra" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.455-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.JMHoCFb886K6dT1n", + "duplicateSource": null + }, + "_key": "!items!JMHoCFb886K6dT1n" +} diff --git a/packs/ac-advanced-maneuvers/Rolling_Knockdown_W6zkL0y4MqvlR0yW.json b/packs/ac-advanced-maneuvers/Rolling_Knockdown_W6zkL0y4MqvlR0yW.json new file mode 100644 index 0000000..c18dba7 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Rolling_Knockdown_W6zkL0y4MqvlR0yW.json @@ -0,0 +1,72 @@ +{ + "name": "Rolling Knockdown", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your earth elemental rolls along the ground like a bowling ball and knocks a foe over. It Strides up to 10 feet then makes a fist Strike. If it hits, the target is also knocked @UUID[Compendium.pf2e.conditionitems.Item.j91X7x0XSomq8d60]{Prone}.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": null, + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": null + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "flags": {}, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "W6zkL0y4MqvlR0yW", + "folder": null, + "sort": 4500000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!W6zkL0y4MqvlR0yW" +} diff --git a/packs/ac-advanced-maneuvers/Sand_Stride_PAXJgysWqv3T0tTD.json b/packs/ac-advanced-maneuvers/Sand_Stride_PAXJgysWqv3T0tTD.json new file mode 100644 index 0000000..1c37040 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Sand_Stride_PAXJgysWqv3T0tTD.json @@ -0,0 +1,92 @@ +{ + "_id": "PAXJgysWqv3T0tTD", + "name": "Sand Stride", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 4000000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.PAXJgysWqv3T0tTD" + } + }, + "system": { + "description": { + "gm": "", + "value": "The camel Strides twice with a +5-foot circumstance bonus to Speed, ignoring difficult terrain caused by rubble, sand, and uneven ground made of earth and stone.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "sand-stride", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "move" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "interaction", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.447-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.PAXJgysWqv3T0tTD", + "duplicateSource": null + }, + "_key": "!items!PAXJgysWqv3T0tTD" +} diff --git a/packs/ac-advanced-maneuvers/Screaming_Skull_6LvtdtVVwtbzqUXG.json b/packs/ac-advanced-maneuvers/Screaming_Skull_6LvtdtVVwtbzqUXG.json new file mode 100644 index 0000000..9c83836 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Screaming_Skull_6LvtdtVVwtbzqUXG.json @@ -0,0 +1,82 @@ +{ + "_id": "6LvtdtVVwtbzqUXG", + "name": "Screaming Skull", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 1800000, + "flags": { + "core": { + "sourceId": "Item.6LvtdtVVwtbzqUXG" + } + }, + "system": { + "description": { + "gm": "", + "value": "The skeleton removes its skull and throws it, making a jaws Strike with a range of 20 feet. Regardless of whether it hits, the target and all enemies within 10 feet must attempt a Will save or be @Compendium[pf2e.conditionitems.Frightened]{Frightened 1}, or @Compendium[pf2e.conditionitems.Frightened]{Frightened 2} on a critical failure. This uses a trained DC using the skeleton's Charisma modifier or an expert DC if the skeleton is specialized. At the start of the skeleton's next turn, the head bounces, rolls, or flies back to reattach. The skeleton is blind while its head is away.
" + }, + "rules": [], + "slug": "screaming-skull", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "auditory", + "emotion", + "fear", + "mental" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.464-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.6LvtdtVVwtbzqUXG", + "duplicateSource": null + }, + "_key": "!items!6LvtdtVVwtbzqUXG" +} diff --git a/packs/ac-advanced-maneuvers/Scurry_AJ7hsZCvwLIzalYA.json b/packs/ac-advanced-maneuvers/Scurry_AJ7hsZCvwLIzalYA.json new file mode 100644 index 0000000..fecd872 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Scurry_AJ7hsZCvwLIzalYA.json @@ -0,0 +1,69 @@ +{ + "name": "Scurry", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your chetamog takes any combination of two Stride or Climb actions. It has a +10-foot circumstance bonus to its Speed during these Strides.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "scurry", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "move" + ] + }, + "publication": { + "title": "Pathfinder #201: Pactbreaker", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": null, + "actions": { + "value": 2 + }, + "deathNote": false + }, + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": {}, + "exportSource": { + "world": "pf2e-test-world", + "system": "pf2e", + "coreVersion": "11.315", + "systemVersion": "5.15.1" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "AJ7hsZCvwLIzalYA", + "sort": 5000000, + "_key": "!items!AJ7hsZCvwLIzalYA" +} diff --git a/packs/ac-advanced-maneuvers/Seedpod_Spring_Xd4dnyHWexQRVyXn.json b/packs/ac-advanced-maneuvers/Seedpod_Spring_Xd4dnyHWexQRVyXn.json new file mode 100644 index 0000000..897b8e6 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Seedpod_Spring_Xd4dnyHWexQRVyXn.json @@ -0,0 +1,74 @@ +{ + "folder": null, + "name": "Seedpod Spring", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "A seedpod within the chair bursts and uncoils, releasing a light clump of cottony material. Your rootball chair Leaps up to 30 feet vertically or horizontally and drifts down, sinking 5 feet for every 5 feet traveled horizontally and causing you to take no falling damage. The cottony material disperses when you land.
" + }, + "rules": [], + "slug": "", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Treasure Vault" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.440-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "Xd4dnyHWexQRVyXn", + "sort": 4800000, + "_key": "!items!Xd4dnyHWexQRVyXn" +} diff --git a/packs/ac-advanced-maneuvers/Shred_F98ajoIakyOPEuwj.json b/packs/ac-advanced-maneuvers/Shred_F98ajoIakyOPEuwj.json new file mode 100644 index 0000000..136e7bd --- /dev/null +++ b/packs/ac-advanced-maneuvers/Shred_F98ajoIakyOPEuwj.json @@ -0,0 +1,90 @@ +{ + "_id": "F98ajoIakyOPEuwj", + "name": "Shred", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 2700000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.F98ajoIakyOPEuwj" + } + }, + "system": { + "description": { + "gm": "", + "value": "The shark viciously rips into the wound, dealing additional damage. The target of the shark's Strike takes [[/r 1d8]] slashing damage ([[/r 2d8]] for a mature shark or [[/r 3d8]] for a specialized companion).
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "shred", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.460-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.F98ajoIakyOPEuwj", + "duplicateSource": null + }, + "_key": "!items!F98ajoIakyOPEuwj" +} diff --git a/packs/ac-advanced-maneuvers/Snatch_HzGLDKNJJBs7fsYN.json b/packs/ac-advanced-maneuvers/Snatch_HzGLDKNJJBs7fsYN.json new file mode 100644 index 0000000..abf628a --- /dev/null +++ b/packs/ac-advanced-maneuvers/Snatch_HzGLDKNJJBs7fsYN.json @@ -0,0 +1,56 @@ +{ + "name": "Snatch", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The roc Strikes a creature with its talon and then attempts to Grab the creature. If the Grab is successful, the roc then Flies up to half its speed, carrying that creature along with it.
" + }, + "rules": [], + "slug": "snatch", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false + }, + "_id": "HzGLDKNJJBs7fsYN", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "6f8c8930c06bd66dc1ceb14d6f4481bc2fa4fbc0" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!HzGLDKNJJBs7fsYN" +} diff --git a/packs/ac-advanced-maneuvers/Snatch_and_Zap_Upr7u0KhPAIMOqXv.json b/packs/ac-advanced-maneuvers/Snatch_and_Zap_Upr7u0KhPAIMOqXv.json new file mode 100644 index 0000000..c624214 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Snatch_and_Zap_Upr7u0KhPAIMOqXv.json @@ -0,0 +1,84 @@ +{ + "_id": "Upr7u0KhPAIMOqXv", + "name": "Snatch and Zap", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 4300000, + "flags": { + "core": { + "sourceId": "Item.6tNMgEQAqjMgD3WY" + } + }, + "system": { + "description": { + "gm": "", + "value": "The Ulgrem-Lurann bites down hard and unleashes an electrical discharge. It makes a jaws Strike. If the Strike hits, the target creature automatically becomes @Compendium[pf2e.conditionitems.Grabbed]{Grabbed} by the Ulgrem-Lurann and takes [[/r 1d4[electricity]]] damage ([[/r 2d4[electricity]]] for a mature Ulgrem-Lurann or [[/r 3d4[electricity]]] for a specialized companion). The grabbed condition lasts until the end of your next turn, though the Ulgrem-Lurann can use @Compendium[pf2e.actionspf2e.Grapple]{Grapple} to attempt to extend the duration as normal.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "snatch-and-zap", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.443-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.6tNMgEQAqjMgD3WY", + "duplicateSource": null + }, + "_key": "!items!Upr7u0KhPAIMOqXv" +} diff --git a/packs/ac-advanced-maneuvers/Spiked_Bunker_oyNZpuQ6EU3prvo2.json b/packs/ac-advanced-maneuvers/Spiked_Bunker_oyNZpuQ6EU3prvo2.json new file mode 100644 index 0000000..3964f62 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Spiked_Bunker_oyNZpuQ6EU3prvo2.json @@ -0,0 +1,87 @@ +{ + "name": "Spiked Bunker", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your metal elemental surrounds itself with protective metal spikes, hunkering down defensively. It gains a +2 circumstance bonus to AC. Any creature that hits the metal elemental with a melee unarmed attack while it's in its Spiked Bunker takes @Damage[2d6[piercing]] damage (or @Damage[3d6[piercing]] damage if your metal elemental has a specialization). The metal elemental can't move, Strike, or take other actions that require it to use its body while in its Spiked Bunker, but it can retract the bunker as a single action, ending the effects.
" + }, + "rules": [ + { + "domain": "ac", + "key": "RollOption", + "option": "spiked-bunker", + "toggleable": true + }, + { + "key": "FlatModifier", + "predicate": [ + "spiked-bunker" + ], + "selector": "ac", + "type": "circumstance", + "value": 2 + }, + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "spiked-bunker", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": null + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "flags": {}, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "oyNZpuQ6EU3prvo2", + "folder": null, + "sort": 6400000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!oyNZpuQ6EU3prvo2" +} diff --git a/packs/ac-advanced-maneuvers/Spring_Kick_hjYmAzurrzcGyds4.json b/packs/ac-advanced-maneuvers/Spring_Kick_hjYmAzurrzcGyds4.json new file mode 100644 index 0000000..74e32d2 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Spring_Kick_hjYmAzurrzcGyds4.json @@ -0,0 +1,56 @@ +{ + "name": "Spring Kick", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The kangaroo balances on its tail and lashes out with a powerful two-legged kick. The kangaroo makes a foot Strike. If it hits, the target is pushed back 10 feet. On a critical hit, they are also knocked @UUID[Compendium.pf2e.conditionitems.Item.j91X7x0XSomq8d60]{Prone}.
" + }, + "rules": [], + "slug": "spring-kick", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfunder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false + }, + "_id": "hjYmAzurrzcGyds4", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "sort": 1000000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "e16f03305fea32353d0b4ca7c448fe3d3e99d4f8" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!hjYmAzurrzcGyds4" +} diff --git a/packs/ac-advanced-maneuvers/Sudden_Retreat_R2RNXJH06UhSMmzp.json b/packs/ac-advanced-maneuvers/Sudden_Retreat_R2RNXJH06UhSMmzp.json new file mode 100644 index 0000000..790f27b --- /dev/null +++ b/packs/ac-advanced-maneuvers/Sudden_Retreat_R2RNXJH06UhSMmzp.json @@ -0,0 +1,56 @@ +{ + "name": "Sudden Retreat", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The hippocampus makes a tail Strike, then Swims with a +10-foot circumstance bonus to its swim Speed. The hippocampus and its rider gain a +2 circumstance bonus to AC against reactions triggered by this movement.
" + }, + "rules": [], + "slug": null, + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false + }, + "_id": "R2RNXJH06UhSMmzp", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "sort": 1500000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "f489c41609a490ff733527315921a8b222bbc1fc" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!R2RNXJH06UhSMmzp" +} diff --git a/packs/ac-advanced-maneuvers/Swimming_Snap_IOD6OoDYcncviidf.json b/packs/ac-advanced-maneuvers/Swimming_Snap_IOD6OoDYcncviidf.json new file mode 100644 index 0000000..032f620 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Swimming_Snap_IOD6OoDYcncviidf.json @@ -0,0 +1,56 @@ +{ + "name": "Swimming Snap", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The giant eel Swims and makes a jaws Strike at any point along the way.
" + }, + "rules": [], + "slug": null, + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false + }, + "_id": "IOD6OoDYcncviidf", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "sort": 400000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "6c32688f44373580ae3c2a250fb8035cc071f96d" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!IOD6OoDYcncviidf" +} diff --git a/packs/ac-advanced-maneuvers/Tail_Swipe_MNiXOHI1Ezh0D24r.json b/packs/ac-advanced-maneuvers/Tail_Swipe_MNiXOHI1Ezh0D24r.json new file mode 100644 index 0000000..cb9ef6c --- /dev/null +++ b/packs/ac-advanced-maneuvers/Tail_Swipe_MNiXOHI1Ezh0D24r.json @@ -0,0 +1,74 @@ +{ + "folder": null, + "name": "Tail Swipe", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your draft lizard sweeps its tail, making tail Strikes against up to two adjacent foes. Each attack counts toward the draft lizard's multiple attack penalty, but the penalty only increases after all the attacks have been made.
" + }, + "rules": [], + "slug": "", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Lost Omens: Highhelm" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.453-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "MNiXOHI1Ezh0D24r", + "sort": 3600000, + "_key": "!items!MNiXOHI1Ezh0D24r" +} diff --git a/packs/ac-advanced-maneuvers/Take_a_Taste_LaBfTYUsvoI3nscv.json b/packs/ac-advanced-maneuvers/Take_a_Taste_LaBfTYUsvoI3nscv.json new file mode 100644 index 0000000..aeb1b96 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Take_a_Taste_LaBfTYUsvoI3nscv.json @@ -0,0 +1,105 @@ +{ + "_id": "LaBfTYUsvoI3nscv", + "name": "Take a Taste", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 3500000, + "flags": { + "core": { + "sourceId": "Item.LaBfTYUsvoI3nscv" + } + }, + "system": { + "description": { + "gm": "", + "value": "Requirements The zombie has a creature @Compendium[pf2e.conditionitems.Grabbed]{Grabbed} or @Compendium[pf2e.conditionitems.Restrained]{Restrained}.
\nThe zombie tries to grasp and bite a creature. The zombie makes a jaws Strike against the creature. This Strike uses the same statistics as its normal melee Strike, except its damage die is 1d10 and it deals piercing damage.
" + }, + "rules": [ + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d10" + } + }, + "group": "brawling", + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "predicate": [ + "take-a-taste" + ] + }, + { + "domain": "all", + "key": "RollOption", + "option": "take-a-taste", + "toggleable": true + } + ], + "slug": "take-a-taste", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.454-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.LaBfTYUsvoI3nscv", + "duplicateSource": null + }, + "_key": "!items!LaBfTYUsvoI3nscv" +} diff --git a/packs/ac-advanced-maneuvers/Tearing_Clutch_TCEQtO5DawzVAIyT.json b/packs/ac-advanced-maneuvers/Tearing_Clutch_TCEQtO5DawzVAIyT.json new file mode 100644 index 0000000..7e25d30 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Tearing_Clutch_TCEQtO5DawzVAIyT.json @@ -0,0 +1,84 @@ +{ + "_id": "TCEQtO5DawzVAIyT", + "name": "Tearing Clutch", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 4100000, + "flags": { + "core": { + "sourceId": "Item.tvBQEtzLWUR1PlcL" + } + }, + "system": { + "description": { + "gm": "", + "value": "The terror bird makes a beak Strike; on a successful hit, the target takes [[/r 2d6[persistent,bleed]]] damage.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "tearing-clutch", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "defensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.444-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.tvBQEtzLWUR1PlcL", + "duplicateSource": null + }, + "_key": "!items!TCEQtO5DawzVAIyT" +} diff --git a/packs/ac-advanced-maneuvers/Telekinetic_Assault_NMaMTiDB40L5O41S.json b/packs/ac-advanced-maneuvers/Telekinetic_Assault_NMaMTiDB40L5O41S.json new file mode 100644 index 0000000..f376cf4 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Telekinetic_Assault_NMaMTiDB40L5O41S.json @@ -0,0 +1,80 @@ +{ + "_id": "NMaMTiDB40L5O41S", + "name": "Telekinetic Assault", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 3800000, + "flags": { + "core": { + "sourceId": "Item.NMaMTiDB40L5O41S" + } + }, + "system": { + "description": { + "gm": "", + "value": "Frequency once per hour
\nYour ghost unleashes a flurry of emotions, causing small objects and debris to fly about in a @Template[type:emanation|distance:20], dealing [[/r 1d6[bludgeoning]]] damage for every 2 levels the ghost has (basic Reflex save). This uses a trained DC using the ghost's Charisma modifier or an expert DC if the ghost is specialized.
" + }, + "rules": [], + "slug": "telekinetic-assault", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "divine", + "evocation" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.448-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.NMaMTiDB40L5O41S", + "duplicateSource": null + }, + "_key": "!items!NMaMTiDB40L5O41S" +} diff --git a/packs/ac-advanced-maneuvers/Telepathic_Pounce_i8RWZ5XkR6DYbOCp.json b/packs/ac-advanced-maneuvers/Telepathic_Pounce_i8RWZ5XkR6DYbOCp.json new file mode 100644 index 0000000..a333951 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Telepathic_Pounce_i8RWZ5XkR6DYbOCp.json @@ -0,0 +1,59 @@ +{ + "name": "Telepathic Pounce", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The shotalashu hunts by pinning its foes with not just its claws, but with its mind as well. One creature within 30 feet must attempt a Will save, with the following effects. This uses a trained DC using the shotalashu's Charisma modifier or an expert DC if the shotalashu is specialized.
\nCritical Success The creature is unaffected.
\nSuccess The creature takes a –5 foot status penalty to its Speeds for one round.
\nFailure The creature takes a –10 foot status penalty to its Speeds for one round. The shotalashu can then @UUID[Compendium.pf2e.actionspf2e.Item.d5I6018Mci2SWokk]{Leap}.
\nCritical Failure The creature is @UUID[Compendium.pf2e.conditionitems.Item.AJh5ex99aV6VTggg]{Off-Guard} and @UUID[Compendium.pf2e.conditionitems.Item.eIcWbB5o3pP6OIMe]{Immobilized} for one round. The shotalashu can then Leap.
" + }, + "rules": [], + "slug": "telepathic-pounce", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "mental", + "occult" + ] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false + }, + "_id": "i8RWZ5XkR6DYbOCp", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "sort": 1100000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "84fb728dd55853276603e22fbdd7d48fb108bef6" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!i8RWZ5XkR6DYbOCp" +} diff --git a/packs/ac-advanced-maneuvers/Throw_Rock_FKh7ZMNyKxgnV7kI.json b/packs/ac-advanced-maneuvers/Throw_Rock_FKh7ZMNyKxgnV7kI.json new file mode 100644 index 0000000..fea01a1 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Throw_Rock_FKh7ZMNyKxgnV7kI.json @@ -0,0 +1,106 @@ +{ + "_id": "FKh7ZMNyKxgnV7kI", + "name": "Throw Rock", + "type": "feat", + "img": "systems/pf2e/icons/equipment/materials/silver-chunk.webp", + "effects": [], + "folder": null, + "sort": 2800000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.FKh7ZMNyKxgnV7kI" + } + }, + "system": { + "description": { + "gm": "", + "value": "The arboreal sapling Interacts to pick up a rock within reach or retrieve a stowed rock, then throws it with a ranged rock Strike that deals a base of 1d6 bludgeoning damage with a range increment of 30 feet.
" + }, + "rules": [ + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Throw Rock", + "range": 30, + "traits": [ + "thrown" + ] + }, + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "throw-rock", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 14 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.459-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.FKh7ZMNyKxgnV7kI", + "duplicateSource": null + }, + "_key": "!items!FKh7ZMNyKxgnV7kI" +} diff --git a/packs/ac-advanced-maneuvers/Tongue_Grab_X1UE76uHDTcXf9ZW.json b/packs/ac-advanced-maneuvers/Tongue_Grab_X1UE76uHDTcXf9ZW.json new file mode 100644 index 0000000..309fee4 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Tongue_Grab_X1UE76uHDTcXf9ZW.json @@ -0,0 +1,56 @@ +{ + "name": "Tongue Grab", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The giant frog lashes out with its tongue, making a tongue Strike. If the Strike hits, the target is automatically @UUID[Compendium.pf2e.conditionitems.Item.kWc1fhmv9LBiTuei]{Grabbed} by the giant frog and pulled into a square adjacent to the frog. The grabbed condition lasts until the end of your next turn.
" + }, + "rules": [], + "slug": "tongue-grab", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false + }, + "_id": "X1UE76uHDTcXf9ZW", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "sort": 800000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "f28955d19ca1b80183c4ac9619055cbb4aa6645e" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!X1UE76uHDTcXf9ZW" +} diff --git a/packs/ac-advanced-maneuvers/Tongue_Pull_q0Vh2V6KlzdMi1Pv.json b/packs/ac-advanced-maneuvers/Tongue_Pull_q0Vh2V6KlzdMi1Pv.json new file mode 100644 index 0000000..4dddbb8 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Tongue_Pull_q0Vh2V6KlzdMi1Pv.json @@ -0,0 +1,92 @@ +{ + "_id": "q0Vh2V6KlzdMi1Pv", + "name": "Tongue Pull", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 6600000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.q0Vh2V6KlzdMi1Pv" + } + }, + "system": { + "description": { + "gm": "", + "value": "The cave gecko snaps out its tongue, attempting to pull a foe within 10 feet toward it. The gecko attempts an Athletics check against the foe's Fortitude DC. On a success, the cave gecko pulls the foe next to it. This movement is forced movement. On a critical success, the foe is also @Compendium[pf2e.conditionitems.kWc1fhmv9LBiTuei]{Grabbed} until the beginning of your next turn.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "tongue-pull", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "attack" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.426-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.q0Vh2V6KlzdMi1Pv", + "duplicateSource": null + }, + "_key": "!items!q0Vh2V6KlzdMi1Pv" +} diff --git a/packs/ac-advanced-maneuvers/Ultrasonic_Scream_WdTzlCO2i4loeYkQ.json b/packs/ac-advanced-maneuvers/Ultrasonic_Scream_WdTzlCO2i4loeYkQ.json new file mode 100644 index 0000000..e45d239 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Ultrasonic_Scream_WdTzlCO2i4loeYkQ.json @@ -0,0 +1,84 @@ +{ + "_id": "WdTzlCO2i4loeYkQ", + "name": "Ultrasonic Scream", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 4600000, + "flags": { + "core": { + "sourceId": "Item.tvBQEtzLWUR1PlcL" + } + }, + "system": { + "description": { + "gm": "", + "value": "The moth flaps its wings and emits ultrasonic squeaks that scramble the senses of nearby creatures. Choose one creature within 30 feet of the moth. That creature must attempt a Fortitude save. This uses a trained DC using the moth's Constitution modifier or an expert DC if the moth is specialized.
\nSuccess The target treats all creatures as @Compendium[pf2e.conditionitems.Concealed]{Concealed} on its next attack before the start of your next turn.
\nFailure The target treats all creatures as concealed until the start of your next turn.
\nCritical Failure As failure, and the target is also @Compendium[pf2e.conditionitems.Stunned]{Stunned 1}.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "ultrasonic-scream", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "defensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.441-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.tvBQEtzLWUR1PlcL", + "duplicateSource": null + }, + "_key": "!items!WdTzlCO2i4loeYkQ" +} diff --git a/packs/ac-advanced-maneuvers/Unnerving_Screech_ow3S5zhS51Nj8tsI.json b/packs/ac-advanced-maneuvers/Unnerving_Screech_ow3S5zhS51Nj8tsI.json new file mode 100644 index 0000000..c967b62 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Unnerving_Screech_ow3S5zhS51Nj8tsI.json @@ -0,0 +1,79 @@ +{ + "_id": "ow3S5zhS51Nj8tsI", + "name": "Unnerving Screech", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 6300000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.ow3S5zhS51Nj8tsI" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your skeletal bird of prey makes an earsplitting, unnatural screech, deafening and startling an enemy within 30 feet. The target must attempt a Fortitude save. The target is then temporarily immune for 1 hour. The frightened condition is a mental, emotion, and fear effect, but the creature can still be @Compendium[pf2e.conditionitems.Deafened]{Deafened} if it's immune to these.
\nCritical Success The target is unaffected.
\nSuccess The target is deafened for 1 round and @Compendium[pf2e.conditionitems.Frightened]{Frightened 1}.
\nFailure The target is deafened for 1 minute and frightened 1.
\nCritical Failure The target is deafened for 10 minutes and @Compendium[pf2e.conditionitems.Frightened]{Frightened 2}.
" + }, + "rules": [], + "slug": "unnerving-screech", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "auditory" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #181: Zombie Feast" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.427-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.ow3S5zhS51Nj8tsI", + "duplicateSource": null + }, + "_key": "!items!ow3S5zhS51Nj8tsI" +} diff --git a/packs/ac-advanced-maneuvers/Weighted_Kick_IJYikMs3TzYGpdHm.json b/packs/ac-advanced-maneuvers/Weighted_Kick_IJYikMs3TzYGpdHm.json new file mode 100644 index 0000000..b5fc810 --- /dev/null +++ b/packs/ac-advanced-maneuvers/Weighted_Kick_IJYikMs3TzYGpdHm.json @@ -0,0 +1,74 @@ +{ + "folder": null, + "name": "Weighted Kick", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your augdunar gives a heavy kick with its hind legs, bringing the weight of its burden on the target. It makes a hoof Strike. On a successful hit, the augdunar automatically Shoves the target back 5 feet (10 feet on a critical success).
" + }, + "rules": [], + "slug": "", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Lost Omens: Highhelm" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.456-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "IJYikMs3TzYGpdHm", + "sort": 3100000, + "_key": "!items!IJYikMs3TzYGpdHm" +} diff --git a/packs/ac-advanced-maneuvers/Wing_Thrash_ODGf6brAHHKrSAPo.json b/packs/ac-advanced-maneuvers/Wing_Thrash_ODGf6brAHHKrSAPo.json new file mode 100644 index 0000000..02c2bef --- /dev/null +++ b/packs/ac-advanced-maneuvers/Wing_Thrash_ODGf6brAHHKrSAPo.json @@ -0,0 +1,90 @@ +{ + "_id": "ODGf6brAHHKrSAPo", + "name": "Wing Thrash", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "folder": null, + "sort": 3900000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.ODGf6brAHHKrSAPo" + } + }, + "system": { + "description": { + "gm": "", + "value": "The bat thrashes wildly with its wings, making wing Strikes against up to three adjacent foes. Each attack counts toward the bat's multiple attack penalty, but the penalty only increases after all the attacks have been made.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "has-advanced-maneuver", + "priority": 1 + } + ], + "slug": "wing-thrash", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:42.448-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "rarity": { + "value": "common" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.ODGf6brAHHKrSAPo", + "duplicateSource": null + }, + "_key": "!items!ODGf6brAHHKrSAPo" +} diff --git a/packs/ac-ancestries-and-class/000289.ldb b/packs/ac-ancestries-and-class/000289.ldb deleted file mode 100644 index 911c837..0000000 Binary files a/packs/ac-ancestries-and-class/000289.ldb and /dev/null differ diff --git a/packs/ac-ancestries-and-class/000291.ldb b/packs/ac-ancestries-and-class/000291.ldb deleted file mode 100644 index 55eb0a6..0000000 Binary files a/packs/ac-ancestries-and-class/000291.ldb and /dev/null differ diff --git a/packs/ac-ancestries-and-class/Air_Elemental_yukG72FSivsrqVoG.json b/packs/ac-ancestries-and-class/Air_Elemental_yukG72FSivsrqVoG.json new file mode 100644 index 0000000..606f660 --- /dev/null +++ b/packs/ac-ancestries-and-class/Air_Elemental_yukG72FSivsrqVoG.json @@ -0,0 +1,175 @@ +{ + "_id": "yukG72FSivsrqVoG", + "name": "Air Elemental", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "flags": { + "core": {} + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is an air elemental, such as a zephyr hawk.
\nAccess You are a member of the storm order.
\nSize Small
\nMelee
\n gust (finesse), Damage 1d6 bludgeoningStr +1, Dex +2, Con +1, Int –4, Wis +1, Cha +1
\nHit Points 4
\nSkill Stealth
\nSenses darkvision
\nSpeed fly 50 feet
\nSupport Benefit Your air elemental swirls around you with concealing gusts, making it harder for your foes to hit you and possibly giving you a moment to hide. Until the start of your next turn, if you hit with a Strike and deal damage to a creature in your air elemental's reach, you are @UUID[Compendium.pf2e.conditionitems.Item.DmAIPqOBomZ7H95W]{Concealed} to that creature until the start of your next turn.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.ePNzRvGvBqzIujJr]{Circling Flyby}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Gust", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/spells/gust-of-wind.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:air-elemental", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.aMFtyZ3QNQkduwqR", + "allowDuplicate": false + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.cha.mod" + }, + { + "key": "BaseSpeed", + "selector": "fly", + "value": 50 + } + ], + "slug": "ankylosaurus", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "air", + "elemental" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 4, + "size": "sm", + "reach": 5, + "speed": 0, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.556-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "folder": null, + "sort": 6000000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!yukG72FSivsrqVoG" +} diff --git a/packs/ac-ancestries-and-class/Ankylosaurus_WwQVAQTnry5vfGbC.json b/packs/ac-ancestries-and-class/Ankylosaurus_WwQVAQTnry5vfGbC.json new file mode 100644 index 0000000..65c97dc --- /dev/null +++ b/packs/ac-ancestries-and-class/Ankylosaurus_WwQVAQTnry5vfGbC.json @@ -0,0 +1,189 @@ +{ + "_id": "WwQVAQTnry5vfGbC", + "name": "Ankylosaurus", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 2800000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.WwQVAQTnry5vfGbC" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is an ankylosaurus or other armored dinosaur.
\nSize Large
\nMelee
\n tail, Damage 1d8 bludgeoningMelee
\n foot, Damage 1d6 bludgeoningStr +3, Dex +1, Con +2, Int -4, Wis +2, Cha +0
\nHit Points 8
\nSkill Intimidation
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 25 feet
\nSpecial mount
\nSupport Benefit Your ankylosaurus gores @Compendium[pf2e.conditionitems.Prone]{Prone} targets in your wake. Until the start of your next turn, your Strikes that damage a prone creature in your ankylosaurus's reach also deal [[/r 1d8[persistent,bleed]]] damage. If your ankylosaurus is nimble or savage, the persistent bleed damage increases to [[/r 2d8]]{2d8}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.H1ElYt6KovGYGzLD]{Lumbering Knockdown}
\nNote: This alternate version of Triceratops is provided by the module. It is granted the Triceratops support and advanced maneuvers
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Tail", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/tail.webp", + "replaceBasicUnarmed": true + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Foot", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/foot.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:triceratops", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.TDMhLC16cQOYBbmA", + "allowDuplicate": false + } + ], + "slug": "ankylosaurus", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "lg", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder #177: Burning Tundra" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.556-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.WwQVAQTnry5vfGbC", + "duplicateSource": null + }, + "_key": "!items!WwQVAQTnry5vfGbC" +} diff --git a/packs/ac-ancestries-and-class/Antelope_dVZpgY7oUlHCVz85.json b/packs/ac-ancestries-and-class/Antelope_dVZpgY7oUlHCVz85.json new file mode 100644 index 0000000..ac06c38 --- /dev/null +++ b/packs/ac-ancestries-and-class/Antelope_dVZpgY7oUlHCVz85.json @@ -0,0 +1,195 @@ +{ + "folder": null, + "name": "Antelope", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is an antelope or other similar animal, such as a dik-dik, gazelle, or wildebeest.
\nSize Medium or Large
\nMelee
\n horns (finesse), Damage 1d6 piercingMelee
\n hoof (agile, finesse), Damage 1d4 bludgeoningStr +2, Dex +3, Con +2, Int –4, Wis +1, Cha +0
\nHit Points 6
\nSenses low-light vision
\nSpeed 40 feet
\nSpecial @UUID[Compendium.pf2e.actionspf2e.Item.PM5jvValFkbFH3TV]{Mount}
\nSupport Benefit The antelope impales your distracted foes. Until the start of your next turn, while riding your antelope, your Strikes that damage a creature in your antelope's reach also deal @Damage[1d6[persistent,bleed]] damage. If your antelope is nimble or savage, the persistent bleed damage increases to [[/r 2d6]].
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.yCbm5XbAzPc6U82H]{Bounding Retreat}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeLarge", + "value": "lg" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Horn", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/horn.webp", + "replaceBasicUnarmed": true + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d4" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Hoof", + "range": null, + "traits": [ + "unarmed", + "agile", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/foot.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:antelope", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.yIB4qKV5sqcXlOmB", + "allowDuplicate": false + } + ], + "slug": "antelope", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 40, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "low-light-vision" + }, + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "a3a5942761b17c8d3d8a098985322c8fc3544dcb", + "sourceId": "Item.obwLTOyCfwdku8UB" + }, + "core": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "dVZpgY7oUlHCVz85", + "sort": 0, + "_key": "!items!dVZpgY7oUlHCVz85" +} diff --git a/packs/ac-ancestries-and-class/Ape_qLvwY3aKGHVrbgfk.json b/packs/ac-ancestries-and-class/Ape_qLvwY3aKGHVrbgfk.json new file mode 100644 index 0000000..931f8e2 --- /dev/null +++ b/packs/ac-ancestries-and-class/Ape_qLvwY3aKGHVrbgfk.json @@ -0,0 +1,189 @@ +{ + "_id": "qLvwY3aKGHVrbgfk", + "name": "Ape", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 5200000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.qLvwY3aKGHVrbgfk" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is an ape or other primate.
\nSize Small
\nMelee
\n fist, Damage 1d8 bludgeoningStr +3, Dex +1, Con +2, Int -4, Wis +2, Cha +0
\nHit Points 8
\nSkill Intimidation
\nSenses low-light vision
\nSpeed 25 feet, climb 25 feet
\nSupport Benefit Your ape threatens your foes with menacing growls. Until the start of your next turn, if you hit and deal damage to a creature in your ape's reach, the creature becomes @Compendium[pf2e.conditionitems.Frightened]{Frightened 1}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.0WtqP7Wei3AxHh5M]{Frightening Display}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "BaseSpeed", + "selector": "climb", + "value": 25 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/fist.webp", + "replaceBasicUnarmed": true, + "label": "PF2E.Weapon.Base.fist" + }, + { + "key": "ActiveEffectLike", + "value": "0WtqP7Wei3AxHh5M", + "mode": "override", + "path": "system.custom.modifiers.advancedManeuver" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:ape", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.Qm0iwIYyy2gbnYXe", + "allowDuplicate": false + } + ], + "slug": "ape", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "sm", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Advanced Player's Guide" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.536-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.qLvwY3aKGHVrbgfk", + "duplicateSource": null + }, + "_key": "!items!qLvwY3aKGHVrbgfk" +} diff --git a/packs/ac-ancestries-and-class/Arboreal_Sapling_X9YDnJdJfEPDk7l2.json b/packs/ac-ancestries-and-class/Arboreal_Sapling_X9YDnJdJfEPDk7l2.json new file mode 100644 index 0000000..d775e90 --- /dev/null +++ b/packs/ac-ancestries-and-class/Arboreal_Sapling_X9YDnJdJfEPDk7l2.json @@ -0,0 +1,176 @@ +{ + "_id": "X9YDnJdJfEPDk7l2", + "name": "Arboreal Sapling", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 3000000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.X9YDnJdJfEPDk7l2" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a walking tree, a cousin of the great arboreal wardens and regents. An arboreal sapling has the plant trait instead of the animal trait, but it otherwise functions normally as an animal companion. They are typically only selected by animal order druids who are also members of the leaf order.
\nAccess You are a member of the leaf order.
\nSize Small
\nMelee
\n branch, Damage 1d8 bludgeoningStr +3, Dex +1, Con +2, Int -4, Wis +2, Cha +0
\nHit Points 8
\nSkill Stealth
\nSenses low-light vision
\nSpeed 25 feet
\nSupport Benefit Your arboreal sapling plants roots around your foe, impeding its movement. Until the start of your next turn, if you hit and deal damage to a creature in your arboreal sapling's reach, the first square the creature moves into after taking that damage is difficult terrain.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.FKh7ZMNyKxgnV7kI]{Throw Rock}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Branch", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/branch.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:arboreal-sapling", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.bO92dKyk8V4aM0NP" + } + ], + "slug": "arboreal-sapling", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "plant" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "sm", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Advanced Player's Guide" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.555-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.X9YDnJdJfEPDk7l2", + "duplicateSource": null + }, + "_key": "!items!X9YDnJdJfEPDk7l2" +} diff --git a/packs/ac-ancestries-and-class/Augdunar_xX4zQzrt9JPv4ox1.json b/packs/ac-ancestries-and-class/Augdunar_xX4zQzrt9JPv4ox1.json new file mode 100644 index 0000000..80bf910 --- /dev/null +++ b/packs/ac-ancestries-and-class/Augdunar_xX4zQzrt9JPv4ox1.json @@ -0,0 +1,168 @@ +{ + "name": "Augdunar", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "flags": { + "core": {} + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is an augdunar, a powerful breed of mule favored by the dwarves of Highhelm.
\nSize Medium
\nMelee
\n hoof, Damage 1d8 bludgeoningStr +3, Dex +1, Con +3, Int –4, Wis +1, Cha +0
\nHit Points 10
\nSkill Athletics
\nSenses low-light vision, scent (imprecise) 30 feet
\nSpeed 25 feet
\nSpecial mount
\nSupport Benefit The augdunar shifts its weight, proffering you an item. You Interact to draw a weapon or item that is being carried by the augdunar.
\nAdvanced Maneuver Weighted Kick
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ath.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Hoof", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/foot.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:augdunar", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.vGAy81FNblv833jk", + "allowDuplicate": false + } + ], + "slug": "ankylosaurus", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 10, + "size": "med", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Lost Omens: Highhelm" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.527-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "xX4zQzrt9JPv4ox1", + "sort": 5800000, + "_key": "!items!xX4zQzrt9JPv4ox1" +} diff --git a/packs/ac-ancestries-and-class/Badger_lOMF4UyhjZcL7HM9.json b/packs/ac-ancestries-and-class/Badger_lOMF4UyhjZcL7HM9.json new file mode 100644 index 0000000..4dd05c1 --- /dev/null +++ b/packs/ac-ancestries-and-class/Badger_lOMF4UyhjZcL7HM9.json @@ -0,0 +1,211 @@ +{ + "_id": "lOMF4UyhjZcL7HM9", + "name": "Badger", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 4600000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.lOMF4UyhjZcL7HM9" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a badger, wolverine, or other big mustelid.
\nSize Small
\nMelee
\n jaws, Damage 1d8 piercingMelee
\n claw (agile), Damage 1d6 slashingStr +2, Dex +2, Con +2, Int -4, Wis +2, Cha +0
\nHit Points 8
\nSkill Survival
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 25 feet, burrow 10 feet, climb 10 feet
\nSupport Benefit Your badger digs around your foe's position, interfering with its footing. Until the start of your next turn, if you hit and deal damage to a creature your badger threatens, the target can't use a Step action (unless it can Step through difficult terrain) until it moves from its current position.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.HLD4JW6SUn5Oy8C9]{Badger Rage}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "BaseSpeed", + "selector": "burrow", + "value": 10 + }, + { + "key": "BaseSpeed", + "selector": "climb", + "value": 10 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.claw", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/claw.webp" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:badger", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.nQwTbiyTHahsvmBi" + } + ], + "slug": "badger", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "sm", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Core Rulebook" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.539-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.lOMF4UyhjZcL7HM9", + "duplicateSource": null + }, + "_key": "!items!lOMF4UyhjZcL7HM9" +} diff --git a/packs/ac-ancestries-and-class/Bat_Qwm9g6hS7f45sAIj.json b/packs/ac-ancestries-and-class/Bat_Qwm9g6hS7f45sAIj.json new file mode 100644 index 0000000..ccd9e1f --- /dev/null +++ b/packs/ac-ancestries-and-class/Bat_Qwm9g6hS7f45sAIj.json @@ -0,0 +1,202 @@ +{ + "_id": "Qwm9g6hS7f45sAIj", + "name": "Bat", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 2300000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.Qwm9g6hS7f45sAIj" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a particularly large bat, such as a giant bat.
\nSize Small
\nMelee
\n jaws (finesse), Damage 1d6 piercingMelee
\n wing (agile, finesse), Damage 1d4 slashingStr +2, Dex +3, Con +2, Int -4, Wis +1, Cha +0
\nHit Points 6
\nSkill Stealth
\nSenses echolocation 20 feet (the bat can use hearing as a precise sense within this range), low-light vision
\nSpeed 15 feet, fly 30 feet
\nSupport Benefit Your bat flaps around your foes' arms and faces, getting in the way of their attacks. Until the start of your next turn, creatures in your bat's reach that you damage with Strikes take a -1 circumstance penalty to their attack rolls.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.ODGf6brAHHKrSAPo]{Wing Thrash}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "BaseSpeed", + "selector": "fly", + "value": 30 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d4" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Wing", + "range": null, + "traits": [ + "unarmed", + "agile", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/wing.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:bat", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.Aj7JWFXIbF3qmvSX" + } + ], + "slug": "bat", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 15, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Advanced Player's Guide" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.558-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.Qwm9g6hS7f45sAIj", + "duplicateSource": null + }, + "_key": "!items!Qwm9g6hS7f45sAIj" +} diff --git a/packs/ac-ancestries-and-class/Bear_eBgMfYf0PVbsGOYp.json b/packs/ac-ancestries-and-class/Bear_eBgMfYf0PVbsGOYp.json new file mode 100644 index 0000000..09cf95e --- /dev/null +++ b/packs/ac-ancestries-and-class/Bear_eBgMfYf0PVbsGOYp.json @@ -0,0 +1,201 @@ +{ + "_id": "eBgMfYf0PVbsGOYp", + "name": "Bear", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 3400000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.eBgMfYf0PVbsGOYp" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a black, grizzly, polar, or other type of bear.
\nSize Small
\nMelee
\n jaws, Damage 1d8 piercingMelee
\n claw (agile), Damage 1d6 slashingStr +3, Dex +2, Con +2, Int -4, Wis +1, Cha +0
\nHit Points 8
\nSkill Intimidation
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 35 feet
\nSupport Benefit Your bear mauls your enemies when you create an opening. Until the start of your next turn, each time you hit a creature in the bear's reach with a Strike, the creature takes [[/r 1d8[slashing]]] damage from the bear. If your bear is nimble or savage, the slashing damage increases to [[/r 2d8]]{2d8}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.oCgdnQP5bMDD02YC]{Bear Hug}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.claw", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/claw.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:bear", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.AvDlo1mgxXd7ZA8W" + } + ], + "slug": "bear", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "sm", + "reach": 5, + "speed": 35, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Core Rulebook" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.551-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.eBgMfYf0PVbsGOYp", + "duplicateSource": null + }, + "_key": "!items!eBgMfYf0PVbsGOYp" +} diff --git a/packs/ac-ancestries-and-class/Beetle_Yixn2Jz0f3eT1Wkt.json b/packs/ac-ancestries-and-class/Beetle_Yixn2Jz0f3eT1Wkt.json new file mode 100644 index 0000000..0fe1566 --- /dev/null +++ b/packs/ac-ancestries-and-class/Beetle_Yixn2Jz0f3eT1Wkt.json @@ -0,0 +1,212 @@ +{ + "_id": "Yixn2Jz0f3eT1Wkt", + "name": "Beetle", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 3100000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8gSeDqJLLQRlQWis" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your animal companion is a large, flightless stag beetle.
\nSize Medium or Large
\nMelee
\n mandible, Damage 1d8 piercingMelee
\n foot (agile), Damage 1d6 bludgeoningStr +3, Dex +1, Con +3, Int -4, Wis +1, Cha +0
\nHit Points 8
\nSkill Survival
\nSenses low-light vision
\nSpeed 35 feet
\nSpecial mount
\nSupport Benefit Your beetle stomps around and smashes into foes, knocking them off balance or pushing them aside when you create an opening. Until the start of your next turn, while riding on your beetle, your Strikes that deal damage either make the target @Compendium[pf2e.conditionitems.Off-Guard]{Off-Guard} until the end of your next turn or move the target 5 feet away from the beetle (this is forced movement). The target chooses which effect occurs.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.zSlsnbvsGKdCTzL1]{Hustle}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Mandible", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/mandibles.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Foot", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/foot.webp", + "replaceBasicUnarmed": true + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeLarge", + "value": "lg" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:beetle", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.mFTzDCqNL5EdwlGm", + "allowDuplicate": false + } + ], + "slug": "beetle", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "med", + "reach": 5, + "speed": 35, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Lost Omens: Grand Bazaar" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.554-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8gSeDqJLLQRlQWis", + "duplicateSource": null + }, + "_key": "!items!Yixn2Jz0f3eT1Wkt" +} diff --git a/packs/ac-ancestries-and-class/Bird_5mO4H9Etz6OZDXDp.json b/packs/ac-ancestries-and-class/Bird_5mO4H9Etz6OZDXDp.json new file mode 100644 index 0000000..e126ae1 --- /dev/null +++ b/packs/ac-ancestries-and-class/Bird_5mO4H9Etz6OZDXDp.json @@ -0,0 +1,204 @@ +{ + "_id": "5mO4H9Etz6OZDXDp", + "name": "Bird", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 600000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.5mO4H9Etz6OZDXDp" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a bird of prey, such as an eagle, hawk, or owl.
\nSize Small
\nMelee
\n jaws (finesse), Damage 1d6 piercingMelee
\n talon (agile, finesse), Damage 1d4 slashingStr +2, Dex +3, Con +1, Int -4, Wis +2, Cha +0
\nHit Points 4
\nSkill Stealth
\nSenses low-light vision
\nSpeed 10 feet, fly 60 feet
\nSupport Benefit The bird pecks at your foes' eyes when you create an opening. Until the start of your next turn, your Strikes that damage a creature that your bird threatens also deal [[/r 1d4[persistent,bleed]]] damage, and the target is @Compendium[pf2e.conditionitems.Dazzled]{Dazzled} until it removes the bleed damage. If your bird is nimble or savage, the persistent bleed damage increases to [[/r 2d4]]{2d4}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.X4VjMfVVAjZjwcrT]{Flyby Attack}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "BaseSpeed", + "selector": "fly", + "value": 60 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/beak.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d4" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Talon", + "range": null, + "traits": [ + "unarmed", + "agile", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/talon.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:bird", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.7rhcqwMDt2xqnI1N" + } + ], + "slug": "bird", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 4, + "size": "sm", + "reach": 5, + "speed": 10, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Core Rulebook" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.571-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {}, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.5mO4H9Etz6OZDXDp", + "duplicateSource": null + }, + "_key": "!items!5mO4H9Etz6OZDXDp" +} diff --git a/packs/ac-ancestries-and-class/Blood_Wolf_kaE0e2oLPj4S3SdA.json b/packs/ac-ancestries-and-class/Blood_Wolf_kaE0e2oLPj4S3SdA.json new file mode 100644 index 0000000..0e1fa0c --- /dev/null +++ b/packs/ac-ancestries-and-class/Blood_Wolf_kaE0e2oLPj4S3SdA.json @@ -0,0 +1,184 @@ +{ + "_id": "kaE0e2oLPj4S3SdA", + "name": "Blood Wolf", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 4400000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.vbBkKVl9tgnVasFU" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a partially transformed blood wolf.
\nSize Small
\nMelee
\n jaws (finesse), Damage 1d8 piercingStr +2, Dex +3, Con +2, Int -4, Wis +1, Cha +0
\nHit Points 8
\nSkill Intimidation
\nSenses darkvision, scent (imprecise, 30 feet)
\nSpeed 40 feet
\nSupport Benefit Your wolf tears tendons with each opening. Until the start of your next turn, your Strikes that damage creatures your wolf threatens give the target a -5-foot status penalty to its Speeds for 1 minute (-10 on a critical success).
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.xssFjTXqGlsaddvl]{Knockdown}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:wolf", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.5HnWXmOp8qNjfhdU" + } + ], + "slug": "blood-wolf", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "sm", + "reach": 5, + "speed": 40, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder #151: The Show Must go on" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.540-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.vbBkKVl9tgnVasFU", + "duplicateSource": null + }, + "_key": "!items!kaE0e2oLPj4S3SdA" +} diff --git a/packs/ac-ancestries-and-class/Boar_jTRsRVhl5NswEueA.json b/packs/ac-ancestries-and-class/Boar_jTRsRVhl5NswEueA.json new file mode 100644 index 0000000..f5caa3b --- /dev/null +++ b/packs/ac-ancestries-and-class/Boar_jTRsRVhl5NswEueA.json @@ -0,0 +1,182 @@ +{ + "_id": "jTRsRVhl5NswEueA", + "name": "Boar", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 4100000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.jTRsRVhl5NswEueA" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a boar or pig.
\nSize Small
\nMelee
\n tusk, Damage 1d8 piercingStr +3, Dex +1, Con +2, Int -4, Wis +2, Cha +0
\nHit Points 8
\nSkill Survival
\nSenses low-light vision, scent (imprecise) 30 feet
\nSpeed 35 feet
\nSupport Benefit Your boar gores your foes. Until the start of your next turn, your Strikes that damage a creature in your boar's reach also deal [[/r 1d6[persistent,bleed]]] damage. If your boar is nimble or savage, the persistent bleed damage increases to [[/r 2d6]]{2d6}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.EwCqdvU8WOw2SSxm]{Boar Charge}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Tusk", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/fangs.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:boar", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.8re1d4lM0Dn4sLto" + } + ], + "slug": "boar", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "sm", + "reach": 5, + "speed": 35, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Advanced Player's Guide" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.543-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.jTRsRVhl5NswEueA", + "duplicateSource": null + }, + "_key": "!items!jTRsRVhl5NswEueA" +} diff --git a/packs/ac-ancestries-and-class/CURRENT b/packs/ac-ancestries-and-class/CURRENT deleted file mode 100644 index 7fe694c..0000000 --- a/packs/ac-ancestries-and-class/CURRENT +++ /dev/null @@ -1 +0,0 @@ -MANIFEST-000293 diff --git a/packs/ac-ancestries-and-class/Camel_jEK6PPGWmaTFAEKr.json b/packs/ac-ancestries-and-class/Camel_jEK6PPGWmaTFAEKr.json new file mode 100644 index 0000000..efcc66a --- /dev/null +++ b/packs/ac-ancestries-and-class/Camel_jEK6PPGWmaTFAEKr.json @@ -0,0 +1,204 @@ +{ + "_id": "jEK6PPGWmaTFAEKr", + "name": "Camel", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 4000000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.jEK6PPGWmaTFAEKr" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a camel or llama.
\nSize Medium or Large
\nMelee
\n jaws, Damage 1d6 piercingStr +3, Dex +2, Con +2, Int -4, Wis +1, Cha +0
\nHit Points 8
\nSkill Survival
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 35 feet
\nSpecial mount; your camel ignores the harmful effects of mild, severe, and extreme cold or heat, selected when you gain the companion
\nSupport Benefit The camel makes a ranged attack to spit a long string of saliva at a foe within 10 feet. On a hit, the foe is @Compendium[pf2e.conditionitems.Dazzled]{Dazzled} for 1 round.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.PAXJgysWqv3T0tTD]{Sand Stride}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeLarge", + "value": "lg" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:camel", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.lzaNwsSxjVPH1nzn" + } + ], + "slug": "camel", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "med", + "reach": 5, + "speed": 35, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder #149: Against the Scarlet Triad" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.543-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.jEK6PPGWmaTFAEKr", + "duplicateSource": null + }, + "_key": "!items!jEK6PPGWmaTFAEKr" +} diff --git a/packs/ac-ancestries-and-class/Capybara_wZlIF2VpF2OO3hQR.json b/packs/ac-ancestries-and-class/Capybara_wZlIF2VpF2OO3hQR.json new file mode 100644 index 0000000..e2aafc6 --- /dev/null +++ b/packs/ac-ancestries-and-class/Capybara_wZlIF2VpF2OO3hQR.json @@ -0,0 +1,183 @@ +{ + "_id": "wZlIF2VpF2OO3hQR", + "name": "Capybara", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 5600000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8gSeDqJLLQRlQWis" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your animal companion is a capybara, a giant rodent common in the forests of Arcadia.
\nSize Small
\nMelee
\n head (agile), Damage 1d6 bludgeoningStr +2, Dex +2, Con +2, Int -4, Wis +2, Cha +0
\nHit Points 6
\nSkill Survival
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 30 feet, swim 15 feet
\nSupport Benefit Your capybara assists you in battle. You gain a +1 circumstance bonus on your next attack roll to Strike a foe within your capybara's reach. The bonus lasts until the first time you use it or until the beginning of your next turn, whichever comes first.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.cpMkN79PdNci3nGp]{Distracting Spray}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "BaseSpeed", + "selector": "swim", + "value": 15 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Head", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/horn.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:capybara", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.Fl1VEpYhmScEEon8", + "allowDuplicate": false + } + ], + "slug": "capybara", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 30, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Lost Omens: Grand Bazaar" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.529-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8gSeDqJLLQRlQWis", + "duplicateSource": null + }, + "_key": "!items!wZlIF2VpF2OO3hQR" +} diff --git a/packs/ac-ancestries-and-class/Cat_lOzvLCCy9QRnYw6w.json b/packs/ac-ancestries-and-class/Cat_lOzvLCCy9QRnYw6w.json new file mode 100644 index 0000000..89c9581 --- /dev/null +++ b/packs/ac-ancestries-and-class/Cat_lOzvLCCy9QRnYw6w.json @@ -0,0 +1,215 @@ +{ + "_id": "lOzvLCCy9QRnYw6w", + "name": "Cat", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 4700000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.lOzvLCCy9QRnYw6w" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a big cat, such as a leopard or tiger.
\nSize Small
\nMelee
\n jaws (finesse), Damage 1d6 piercingMelee
\n claw (agile, finesse), Damage 1d4 slashingStr +2, Dex +3, Con +1, Int -4, Wis +2, Cha +0
\nHit Points 4
\nSkill Stealth
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 35 feet
\nSpecial Your cat deals 1d4 extra precision damage against off-guard targets.
\nSupport Benefit Your cat throws your enemies off-balance when you create an opening. Until the start of your next turn, your Strikes that deal damage to a creature that your cat threatens make the target @Compendium[pf2e.conditionitems.Off-Guard]{Off-Guard} until the end of your next turn.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.U0J8J5ukmqnOskE8]{Cat Pounce}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d4" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.claw", + "range": null, + "traits": [ + "unarmed", + "agile", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/claw.webp" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "precision", + "dieSize": "d4", + "key": "DamageDice", + "predicate": [ + "target:condition:off-guard" + ], + "selector": "strike-damage", + "diceNumber": 1 + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:cat", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.HCQXxqMtH81jE1W5" + } + ], + "slug": "cat", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 4, + "size": "sm", + "reach": 5, + "speed": 35, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Core Rulebook" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.538-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {}, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.lOzvLCCy9QRnYw6w", + "duplicateSource": null + }, + "_key": "!items!lOzvLCCy9QRnYw6w" +} diff --git a/packs/ac-ancestries-and-class/Cave_Gecko_8z71PBlZBSXkKkLm.json b/packs/ac-ancestries-and-class/Cave_Gecko_8z71PBlZBSXkKkLm.json new file mode 100644 index 0000000..a917bcc --- /dev/null +++ b/packs/ac-ancestries-and-class/Cave_Gecko_8z71PBlZBSXkKkLm.json @@ -0,0 +1,188 @@ +{ + "_id": "8z71PBlZBSXkKkLm", + "name": "Cave Gecko", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 1200000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8z71PBlZBSXkKkLm" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a sticky-footed lizard like a gecko or anole.
\nSize Small
\nMelee
\n jaws (finesse), Damage 1d6 piercingStr +2, Dex +3, Con +1, Int -4, Wis +2, Cha +0
\nHit Points 6
\nSkill Stealth
\nSenses low-light vision, scent (imprecise) 30 feet
\nSpeed 25 feet, climb 25 feet
\nSupport Benefit Your cave gecko helps you stay afoot, leaning into you and propping you up as you maneuver your opponent. Until the end of your next turn, as long as you are adjacent to your cave gecko, if you attempt to Disarm, Shove, or Trip an opponent and roll a critical failure, you get a failure instead.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.q0Vh2V6KlzdMi1Pv]{Tongue Pull}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "BaseSpeed", + "selector": "climb", + "value": 25 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:cave-gecko", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.nDUwRm0TOtc2EX0O" + } + ], + "slug": "cave-gecko", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder #154: Siege of the Dinosaurs" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.565-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8z71PBlZBSXkKkLm", + "duplicateSource": null + }, + "_key": "!items!8z71PBlZBSXkKkLm" +} diff --git a/packs/ac-ancestries-and-class/Cave_Pterosaur_O50K7MUf0Xw8wHd6.json b/packs/ac-ancestries-and-class/Cave_Pterosaur_O50K7MUf0Xw8wHd6.json new file mode 100644 index 0000000..5d46977 --- /dev/null +++ b/packs/ac-ancestries-and-class/Cave_Pterosaur_O50K7MUf0Xw8wHd6.json @@ -0,0 +1,201 @@ +{ + "_id": "O50K7MUf0Xw8wHd6", + "name": "Cave Pterosaur", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 2100000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.O50K7MUf0Xw8wHd6" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a flying prehistoric creature, such as a dimorphodon or pterodactyl, that has adapted to life in the cavern vaults beneath the ground.
\nSize Small
\nMelee 1 beak (finesse), Damage 1d6 piercing
\nMelee
\n talon (agile, finesse), Damage 1d4 slashingStr +2, Dex +3, Con +1, Int -4, Wis +2, Cha +0
\nHit Points 4
\nSkill Thievery
\nSenses darkvision
\nSpeed 10 feet, fly 60 feet
\nSupport Benefit Your pterosaur expands its wings and makes distracting flapping motions. Any creature that would gain lesser cover from the pterosaur gains standard cover instead.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.7C9iFWBpEOJs4Uo2]{Pterosaur Swoop}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.thi.rank" + }, + { + "key": "BaseSpeed", + "selector": "fly", + "value": 60 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/beak.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Talon", + "range": null, + "traits": [ + "unarmed", + "agile", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/talon.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:cave-pterosaur", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.8b1G95eWa3DaTvw8" + } + ], + "slug": "cave-pterosaur", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 4, + "size": "sm", + "reach": 5, + "speed": 10, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder #154: Siege of the Dinosaurs" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.560-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.O50K7MUf0Xw8wHd6", + "duplicateSource": null + }, + "_key": "!items!O50K7MUf0Xw8wHd6" +} diff --git a/packs/ac-ancestries-and-class/Chetamog_1FSDSwD1f6Fn8d0f.json b/packs/ac-ancestries-and-class/Chetamog_1FSDSwD1f6Fn8d0f.json new file mode 100644 index 0000000..16e0b0a --- /dev/null +++ b/packs/ac-ancestries-and-class/Chetamog_1FSDSwD1f6Fn8d0f.json @@ -0,0 +1,204 @@ +{ + "name": "Chetamog", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a chetamog, a large tree-dwelling rodent that makes its home in the branches of the largest and most ancient trees of the Verduran Forest.
\nSize Medium or Large.
\nMelee
\n jaws, Damage 1d8 piercingMelee
\n claw (agile), Damage 1d6 slashingStr +1, Dex +3, Con +2, Int –4, Wis +1, Cha +0
\nHit Points 8
\nSkill Survival
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 40 feet
\nSpecial mount
\nSupport Benefit A chetamog ignores difficult terrain and greater difficult terrain from non-magical foliage.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.AJ7hsZCvwLIzalYA]{Scurry}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "BaseSpeed", + "selector": "climb", + "value": 30 + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeLarge", + "value": "lg" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.claw", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/claw.webp" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:chetamog", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.5y5rpOAEPs2fP0l4" + } + ], + "slug": "chetamog", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "Pathfinder #201: Pactbreaker", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 8, + "size": "med", + "reach": 5, + "speed": 40, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "low-light-vision" + }, + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": {}, + "exportSource": { + "world": "pf2e-test-world", + "system": "pf2e", + "coreVersion": "11.315", + "systemVersion": "5.15.1" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "1FSDSwD1f6Fn8d0f", + "sort": 2900000, + "_key": "!items!1FSDSwD1f6Fn8d0f" +} diff --git a/packs/ac-ancestries-and-class/Crocodile_9T6H4GbqxMm44Acv.json b/packs/ac-ancestries-and-class/Crocodile_9T6H4GbqxMm44Acv.json new file mode 100644 index 0000000..7e7c903 --- /dev/null +++ b/packs/ac-ancestries-and-class/Crocodile_9T6H4GbqxMm44Acv.json @@ -0,0 +1,200 @@ +{ + "_id": "9T6H4GbqxMm44Acv", + "name": "Crocodile", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 1300000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.9T6H4GbqxMm44Acv" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a crocodile or a similar crocodilian reptile, such as an alligator or caiman.
\nSize Small
\nMelee
\n jaws, Damage 1d8 piercingMelee
\n tail (agile), Damage 1d6 bludgeoningStr +3, Dex +2, Con +2, Int -4, Wis +1, Cha +0
\nHit Points 6
\nSkill Stealth
\nSenses low-light vision
\nSpeed 20 feet, swim 25 feet
\nSpecial The crocodile can hold its breath for about 2 hours.
\nSupport Benefit Your crocodile clamps its jaws on your foe, refusing to let go. Until the start of your next turn, if your Strike damages a creature in your crocodile's reach, your crocodile can latch onto the creature. While thus attached, the crocodile can move along with the target whenever the target moves until the end of your next turn. Your crocodile can latch onto only one creature in this way, and it must release the creature to make a jaws Strike. If the target is smaller than the crocodile, it takes a -10-foot circumstance penalty to its Speeds and can't Fly while the crocodile is latched on.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.ttJ1CanrAuehoSV8]{Death Roll}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "BaseSpeed", + "selector": "swim", + "value": 25 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Tail", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/tail.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:crocodile", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.yfjeiYMC27YGgoGW" + } + ], + "slug": "crocodile", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 20, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Advanced Player's Guide" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.565-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.9T6H4GbqxMm44Acv", + "duplicateSource": null + }, + "_key": "!items!9T6H4GbqxMm44Acv" +} diff --git a/packs/ac-ancestries-and-class/Draft_Lizard_iv5aYjofYAabH5c0.json b/packs/ac-ancestries-and-class/Draft_Lizard_iv5aYjofYAabH5c0.json new file mode 100644 index 0000000..a0c36cc --- /dev/null +++ b/packs/ac-ancestries-and-class/Draft_Lizard_iv5aYjofYAabH5c0.json @@ -0,0 +1,188 @@ +{ + "name": "Draft Lizard", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "flags": { + "core": {} + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a giant lizard, used in the depths of Highhelm as mounts and pack animals.
\nSize Medium
\nMelee
\n jaws, Damage 1d8 piecingMelee
\n tail (finesse), Damage 1d6 bludgeoningStr +3, Dex +2, Con +2, Int –4, Wis +1, Cha +0
\nHit Points 8
\nSkill Athletics
\nSenses darkvision, scent (imprecise) 30 feet
\nSpeed 25 feet
\nSpecial mount
\nSupport Benefit Your draft lizard assists you in battle. You gain a +1 circumstance bonus on your next attack roll to Strike a foe within your draft lizard's reach. The bonus lasts until the first time you use it or until the beginning of your next turn, whichever comes first.
\nAdvanced Maneuver Tail Swipe
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ath.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Tail", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/tail.webp", + "replaceBasicUnarmed": true + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/foot.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:draft-lizard", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.g3Wol5lNhQdxqs7t", + "allowDuplicate": false + } + ], + "slug": "ankylosaurus", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "med", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder Lost Omens: Highhelm" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.544-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "iv5aYjofYAabH5c0", + "sort": 6100000, + "_key": "!items!iv5aYjofYAabH5c0" +} diff --git a/packs/ac-ancestries-and-class/Dromaeosaur_kKbXAP5Vk6iYC98b.json b/packs/ac-ancestries-and-class/Dromaeosaur_kKbXAP5Vk6iYC98b.json new file mode 100644 index 0000000..613d09c --- /dev/null +++ b/packs/ac-ancestries-and-class/Dromaeosaur_kKbXAP5Vk6iYC98b.json @@ -0,0 +1,203 @@ +{ + "_id": "kKbXAP5Vk6iYC98b", + "name": "Dromaeosaur", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 4300000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.kKbXAP5Vk6iYC98b" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a dromaeosaur (also called a raptor), such as a velociraptor or deinonychus.
\nSize Small
\nMelee
\n jaws (finesse), Damage 1d8 piercingMelee
\n talon (agile, finesse), Damage 1d6 slashingStr +2, Dex +3, Con +2, Int -4, Wis +1, Cha +0
\nHit Points 6
\nSkill Stealth
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 50 feet
\nSupport Benefit Your raptor constantly darts into flanking position. Until the start of your next turn, it counts as being in its space or an empty space of your choice within 10 feet when determining whether you and your companion are flanking; you can choose a different space for each of your attacks).
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.ClUiCoBn3lHBBK5c]{Darting Attack}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Talon", + "range": null, + "traits": [ + "unarmed", + "agile", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/talon.webp" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:dromaeosaur", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.Du0wsxf7TitL6wSb" + } + ], + "slug": "dromaeosaur", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 50, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Core Rulebook" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.541-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.kKbXAP5Vk6iYC98b", + "duplicateSource": null + }, + "_key": "!items!kKbXAP5Vk6iYC98b" +} diff --git a/packs/ac-ancestries-and-class/Earth_Elemental_LnkdFqJYKkpFxSxt.json b/packs/ac-ancestries-and-class/Earth_Elemental_LnkdFqJYKkpFxSxt.json new file mode 100644 index 0000000..5ffa5d1 --- /dev/null +++ b/packs/ac-ancestries-and-class/Earth_Elemental_LnkdFqJYKkpFxSxt.json @@ -0,0 +1,162 @@ +{ + "name": "Earth Elemental", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "flags": { + "core": {} + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is an earth elemental, such as a living boulder or sod hound.
\nAccess You are a member of the stone order SoM .
\nSize Small
\nMelee
\n fist, Damage 1d8 bludgeoningStr +2, Dex +0, Con +3, Int –4, Wis +1, Cha +0
\nHit Points 10
\nSkill Survival
\nSenses darkvision
\nSpeed 20 feet, burrow 10 feet
\nSupport Benefit Your earth elemental cracks the earth beneath your foe's feet, making it difficult for the foe to move. Until the start of your next turn, if you hit with a Strike and deal damage to a creature in your earth elemental's reach, the first square the creature moves into after taking that damage is difficult terrain.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.W6zkL0y4MqvlR0yW]{Rolling Knockdown}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/fist.webp", + "replaceBasicUnarmed": true, + "label": "PF2E.Weapon.Base.fist" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:earth-elemental", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.XteDiKFR58AkGXlP", + "allowDuplicate": false + }, + { + "key": "BaseSpeed", + "selector": "burrow", + "value": 10 + } + ], + "slug": "ankylosaurus", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "earth", + "elemental" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 10, + "size": "sm", + "reach": 5, + "speed": 20, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.556-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "LnkdFqJYKkpFxSxt", + "folder": null, + "sort": 1700000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!LnkdFqJYKkpFxSxt" +} diff --git a/packs/ac-ancestries-and-class/Elephant_i2uYnClqjYI8YVun.json b/packs/ac-ancestries-and-class/Elephant_i2uYnClqjYI8YVun.json new file mode 100644 index 0000000..6e520b8 --- /dev/null +++ b/packs/ac-ancestries-and-class/Elephant_i2uYnClqjYI8YVun.json @@ -0,0 +1,184 @@ +{ + "_id": "i2uYnClqjYI8YVun", + "name": "Elephant", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 3800000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.i2uYnClqjYI8YVun" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is an elephant or mammoth.
\nSize Large
\nMelee
\n tusk, Damage 1d8 piercingMelee
\n foot, Damage 1d6 bludgeoningStr +3, Dex +1, Con +2, Int -4, Wis +2, Cha +0
\nHit Points 8
\nSkill Intimidation
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 35 feet
\nSpecial mount
\nSupport Benefit Your elephant trumpets noisily and menaces your enemy. The first creature within your elephant's reach that you hit and deal damage to before the start of your next turn has difficulty hearing as its ears ring from the noise, taking a -4 status penalty to purely auditory Perception checks until the end of your next turn.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.oYEXImMSzg0eDqzR]{Grabbing Trunk}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Tusk", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/fangs.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Foot", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/foot.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:elephant", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.r7QN2lUVWXlcynMW" + } + ], + "slug": "elephant", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "lg", + "reach": 5, + "speed": 35, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder #177: Burning Tundra" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.546-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.i2uYnClqjYI8YVun", + "duplicateSource": null + }, + "_key": "!items!i2uYnClqjYI8YVun" +} diff --git a/packs/ac-ancestries-and-class/Elk_u3VKcJdNQriahyTq.json b/packs/ac-ancestries-and-class/Elk_u3VKcJdNQriahyTq.json new file mode 100644 index 0000000..4583787 --- /dev/null +++ b/packs/ac-ancestries-and-class/Elk_u3VKcJdNQriahyTq.json @@ -0,0 +1,191 @@ +{ + "name": "Elk", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is an elk, or other similar cervids, such as a caribou, large deer, or moose.
\nMelee
\n antlers, Damage 1d8 piercingMelee
\n hoof (agile), Damage 1d6 bludgeoningStr +3, Dex +2, Con +2, Int –4, Wis +1, Cha +0
\nHit Points 8
\nSkill Intimidation
\nSenses low-light vision
\nSpeed 30 feet
\nSpecial @UUID[Compendium.pf2e.actionspf2e.Item.PM5jvValFkbFH3TV]{Mount}
\nSupport Benefit Your elk makes a threatening display by waving its antlers. Until the start of your next turn, if you hit and deal damage to a creature within your elk's reach, the creature is @UUID[Compendium.pf2e.conditionitems.Item.TBSHQspnbcqxsmjL]{Frightened 1}.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.gFZCyLnqeWrK6u0P]{Antler Catapult}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Antler", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/antler.webp", + "replaceBasicUnarmed": true + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Hoof", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/foot.webp", + "replaceBasicUnarmed": true + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeLarge", + "value": "lg" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:elk", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.60lThr6OM9zZtqK2", + "allowDuplicate": false + } + ], + "slug": "elk", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 8, + "size": "med", + "reach": 5, + "speed": 30, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "low-light-vision" + }, + "_id": "u3VKcJdNQriahyTq", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "fbe4d3f3a431650765892c306bc6a97c8bb3b646" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!u3VKcJdNQriahyTq" +} diff --git a/packs/ac-ancestries-and-class/Fiery_Leopard_dUAqUKIdieoFVHRp.json b/packs/ac-ancestries-and-class/Fiery_Leopard_dUAqUKIdieoFVHRp.json new file mode 100644 index 0000000..735089d --- /dev/null +++ b/packs/ac-ancestries-and-class/Fiery_Leopard_dUAqUKIdieoFVHRp.json @@ -0,0 +1,255 @@ +{ + "_id": "dUAqUKIdieoFVHRp", + "name": "Fiery Leopard", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 3300000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.lOzvLCCy9QRnYw6w" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Size Small
\nMelee
\n jaws (finesse), Damage 1d6 piercingMelee
\n claw (agile, finesse), Damage 1d4 slashingStr +2, Dex +3, Con +1, Int -4, Wis +2, Cha +0
\nHit Points 4
\nSkill Stealth
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 35 feet
\nSpecial Your cat deals 1d4 extra precision damage against off-guard targets.
\nSupport Benefit Your cat throws your enemies off-balance when you create an opening. Until the start of your next turn, your Strikes that deal damage to a creature that your cat threatens make the target @Compendium[pf2e.conditionitems.Off-Guard]{Off-Guard} until the end of your next turn.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.U0J8J5ukmqnOskE8]{Cat Pounce}
\nImmunities fire Weaknesses cold 5
\nFlaming Attacks (fire) The fiery leopard's natural attacks deal 1 fire damage (in addition to the bonus damage dealt to off-guard targets). This damage increases to 1d4 when the fiery leopard becomes a nimble or savage animal companion.
\nFiery Pelt (fire) Creatures that start their turn grappled by the fiery leopard take 1d4 fire damage. Anyone attempting to grapple the fiery leopard takes 1d4 fire damage for each attempt.
\nBurning Glow The fiery leopard sheds dim light in a 10-foot radius which gives it a -2 circumstance penalty on Stealth checks made at night or in a dark environment.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "DamageDice", + "selector": "strike-damage", + "predicate": [ + { + "or": [ + "self:savage", + "self:nimble", + "self:genie-touched", + "self:indomitable" + ] + } + ], + "diceNumber": 1, + "dieSize": "d4", + "damageType": "fire" + }, + { + "key": "FlatModifier", + "selector": "strike-damage", + "damageType": "fire", + "value": 1, + "predicate": [ + { + "nor": [ + "self:savage", + "self:nimble", + "self:genie-touched", + "self:indomitable" + ] + } + ] + }, + { + "key": "Immunity", + "type": "fire" + }, + { + "key": "Weakness", + "type": "cold", + "value": 5 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "precision", + "dieSize": "d4", + "key": "DamageDice", + "predicate": [ + "target:condition:off-guard" + ], + "selector": "strike-damage", + "diceNumber": 1 + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d4" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.claw", + "range": null, + "traits": [ + "unarmed", + "agile", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/claw.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:fiery-leopard", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.HCQXxqMtH81jE1W5" + } + ], + "slug": "fiery-leopard", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 4, + "size": "sm", + "reach": 5, + "speed": 35, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder The Fall of Plaguestone" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.552-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "vD7HMkL8eJh8gXaP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.lOzvLCCy9QRnYw6w", + "duplicateSource": null + }, + "_key": "!items!dUAqUKIdieoFVHRp" +} diff --git a/packs/ac-ancestries-and-class/Fire_Elemental_nOaN1YmK9fnfRNPw.json b/packs/ac-ancestries-and-class/Fire_Elemental_nOaN1YmK9fnfRNPw.json new file mode 100644 index 0000000..a98cc67 --- /dev/null +++ b/packs/ac-ancestries-and-class/Fire_Elemental_nOaN1YmK9fnfRNPw.json @@ -0,0 +1,177 @@ +{ + "name": "Fire Elemental", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "flags": { + "core": {} + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a fire elemental, such as a cinder rat or lava otter.
\nAccess You are a member of the flame order SoM .
\nSize Small
\nMelee
\n tendril (agile, finesse), Damage 1d6 fireStr +2, Dex +2, Con +1, Int –4, Wis +1, Cha +0
\nHit Points 4
\nSkill Intimidation
\nSenses darkvision
\nSpeed 25 feet
\nSpecial Immunities fire, Weaknesses cold and water (equal to the fire elemental's level)
\nSupport Benefit Your fire elemental burns your foes and sets them on fire. Until the start of your next turn, your Strikes that damage a creature in your fire elemental's reach also deal @Damage[1d6[persistent,fire]] damage. If your fire elemental is nimble or savage, the persistent fire damage increases to [[/r 2d6]].
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.LCilgiiIZp408R3k]{Flamethrower}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "fire", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Tendril", + "range": null, + "traits": [ + "unarmed", + "agile", + "finesse" + ], + "img": "systems/pf2e/icons/spells/fire-ray.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:fire-elemental", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.NSdcXgEHVHdfJlkb", + "allowDuplicate": false + }, + { + "key": "Immunity", + "type": "fire" + }, + { + "key": "Weakness", + "type": [ + "cold", + "water" + ], + "value": "@actor.level" + } + ], + "slug": "ankylosaurus", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "elemental", + "fire" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 4, + "size": "sm", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.556-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "nOaN1YmK9fnfRNPw", + "folder": null, + "sort": 4900000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!nOaN1YmK9fnfRNPw" +} diff --git a/packs/ac-ancestries-and-class/Flying_Squirrel_dhNadAPcueXecoHK.json b/packs/ac-ancestries-and-class/Flying_Squirrel_dhNadAPcueXecoHK.json new file mode 100644 index 0000000..59b1a0c --- /dev/null +++ b/packs/ac-ancestries-and-class/Flying_Squirrel_dhNadAPcueXecoHK.json @@ -0,0 +1,180 @@ +{ + "name": "Flying Squirrel", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a giant flying squirrel or sugar glider.
\nSize Small
\nMelee
\n jaws (finesse), Damage 1d6 piercingMelee
\n claw (agile, finesse), Damage 1d4 slashingStr +2, Dex +3, Con +1, Int –4, Wis +2, Cha +0
\nHit Points 6
\nSkill Stealth
\nSenses low-light vision, scent (imprecise) 30 feet
\nSpeed 25 feet, climb 25 feet
\nSpecial When your flying squirrel falls, it can glide, falling only 5 feet at the beginning of your turn and moving up to 25 feet horizontally. It cannot glide if it's unable to act.
\nSupport Benefit Your flying squirrel wraps your foes in its skin flaps, hampering their movement. Until the end of your next turn, if your Strike damages a creature in your giant flying squirrel's reach, that creature takes a –10-foot circumstance penalty to its Speeds for 1 round.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.OYzEhVH6zMgf64Tg]{Death from Above}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "BaseSpeed", + "selector": "climb", + "value": 25 + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d4" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.claw", + "range": null, + "traits": [ + "unarmed", + "finesse", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/claw.webp" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:flying-squirrel", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.V2kspaYOoLbHV5vb" + } + ], + "slug": "flying-squirrel", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "low-light-vision" + }, + "_id": "dhNadAPcueXecoHK", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "80e9ceba02e82d109b94d92813fa277d335008cb" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!dhNadAPcueXecoHK" +} diff --git a/packs/ac-ancestries-and-class/Ghost_2nVLooSZdV9tJw9E.json b/packs/ac-ancestries-and-class/Ghost_2nVLooSZdV9tJw9E.json new file mode 100644 index 0000000..cfd3477 --- /dev/null +++ b/packs/ac-ancestries-and-class/Ghost_2nVLooSZdV9tJw9E.json @@ -0,0 +1,225 @@ +{ + "_id": "2nVLooSZdV9tJw9E", + "name": "Ghost", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 400000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.2nVLooSZdV9tJw9E" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a ghost, bound to an item in your possession. Due to this bond, your ghost companion can move beyond the area of a single dwelling, but it's easier to disrupt than most incorporeal creatures. A ghost companion can be formed from a humanoid, animal, or other creature. The ghost isn't sapient and is unable to speak with the living.
\nSize Small or Medium
\nMelee
\n ghostly touch (finesse, magical), Damage 1d8 negative (doesn't apply the ghost's Strength modifier)Str -5, Dex +3, Con +0, Int -4, Wis +1, Cha +2
\nHit Points 4
\nSkill Stealth
\nSenses darkvision
\nSpeed fly 20 feet
\nSpecial @Compendium[pf2e-animal-companions.AC-Features.BjE6osOFlAishRbh]{Anchored Incorporeality}
\nSupport Benefit Your ghost spooks and scares your foes as you attack them. Until the start of your next turn, if you hit and deal damage to a creature in your ghost's reach, the creature becomes @Compendium[pf2e.conditionitems.Frightened]{Frightened 1}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.NMaMTiDB40L5O41S]{Telekinetic Assault}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": -5, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.cha.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "negative", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "img": "systems/pf2e/icons/spells/diamond-dust.webp", + "key": "Strike", + "range": null, + "traits": [ + "unarmed", + "magical", + "finesse" + ], + "label": "Ghostly Touch" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:ghost", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.4kkcfQdHAb4YTVNw" + }, + { + "key": "FlatModifier", + "selector": "strike-damage", + "value": "-1*@actor.abilities.str.mod" + }, + { + "key": "BaseSpeed", + "selector": "fly", + "value": 20 + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "flags.pf2e.movement.flying", + "value": true, + "priority": 10 + }, + { + "key": "Immunity", + "type": "death-effects" + }, + { + "key": "Immunity", + "type": "disease" + }, + { + "key": "Immunity", + "type": "poison" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeSmall", + "value": "sm" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + } + ], + "slug": "ghost", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "undead" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 4, + "size": "med", + "reach": 5, + "speed": 0, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "ru3kw": { + "img": "systems/pf2e/icons/spells/adapt-self.webp", + "name": "Anchored Incorporeality", + "level": 0, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.BjE6osOFlAishRbh" + }, + "a33mo": { + "img": "systems/pf2e/icons/spells/agonizing-despair.webp", + "name": "Negative Healing", + "level": 0, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.3mUx8vXEQkiIuBcR" + } + }, + "vision": "darkvision", + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.760-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.2nVLooSZdV9tJw9E", + "duplicateSource": null + }, + "_key": "!items!2nVLooSZdV9tJw9E" +} diff --git a/packs/ac-ancestries-and-class/Giant_Eel_qRWgh87IWBhY2UzJ.json b/packs/ac-ancestries-and-class/Giant_Eel_qRWgh87IWBhY2UzJ.json new file mode 100644 index 0000000..79470b5 --- /dev/null +++ b/packs/ac-ancestries-and-class/Giant_Eel_qRWgh87IWBhY2UzJ.json @@ -0,0 +1,160 @@ +{ + "name": "Giant Eel", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a long ribbon-like fish with jagged teeth.
\nAccess athamaru ancestry
\nSize Large
\nMelee
\n jaws, Damage 1d8 piercingStr +3, Dex +1, Con +2, Int –4, Wis +2, Cha +0
\nHit Points 4
\nSkill Stealth
\nSenses low-light vision, scent (imprecise) 30 feet
\nSpeed 10 feet, swim 40 feet
\nSpecial @UUID[Compendium.pf2e.actionspf2e.Item.PM5jvValFkbFH3TV]{Mount}
\nSupport Benefit Your giant eel swims in confounding bursts. Until the start of your next turn, it counts as being in its space or an empty space of your choice within 10 feet when determining whether you and your companion are flanking; you can choose a different space for each of your attacks.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.IOD6OoDYcncviidf]{Swimming Snap}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "BaseSpeed", + "selector": "swim", + "value": 40 + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:giant-eel", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.umNfDRmjldi67XCU" + } + ], + "slug": "giant-eel", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal", + "aquatic" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 4, + "size": "lg", + "reach": 5, + "speed": 10, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "low-light-vision" + }, + "_id": "qRWgh87IWBhY2UzJ", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "afc6784ce9f0b6bd67185556ef15f4fab81e06d7" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!qRWgh87IWBhY2UzJ" +} diff --git a/packs/ac-ancestries-and-class/Giant_Frog_ooiziy69fXCdbdhq.json b/packs/ac-ancestries-and-class/Giant_Frog_ooiziy69fXCdbdhq.json new file mode 100644 index 0000000..a8498e0 --- /dev/null +++ b/packs/ac-ancestries-and-class/Giant_Frog_ooiziy69fXCdbdhq.json @@ -0,0 +1,179 @@ +{ + "name": "Giant Frog", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a massive frog or toad.
\nSize Large
\nMelee
\n jaws, Damage 1d8 piercingMelee
\n tongue (reach 15 feet), Damage 1d4 bludgeoningStr +2, Dex +2, Con +3, Int –4, Wis +1, Cha +0
\nHit Points 6
\nSkill Survival
\nSenses low-light vision
\nSpeed 20 feet, climb 20 feet, swim 25 feet
\nSpecial @UUID[Compendium.pf2e.actionspf2e.Item.PM5jvValFkbFH3TV]{Mount}
\nSupport Benefit Your giant frog's tongue darts into openings you create and sticks to opponents to disrupt their movements. Until the start of your next turn, whenever you successfully Strike a creature your giant frog threatens, that creature can't use reactions triggered by your actions unless its level is higher than yours.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.X1UE76uHDTcXf9ZW]{Tongue Grab}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "BaseSpeed", + "selector": "swim", + "value": 25 + }, + { + "key": "BaseSpeed", + "selector": "climb", + "value": 20 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d4" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Tongue", + "range": 15, + "traits": [ + "unarmed", + "reach" + ], + "img": "systems/pf2e/icons/unarmed-attacks/tongue.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:giant-frog", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.LscuCDZJ5oTscjmJ" + } + ], + "slug": "giant-frog", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "amphibious", + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 6, + "size": "lg", + "reach": 5, + "speed": 20, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "low-light-vision" + }, + "_id": "ooiziy69fXCdbdhq", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "0f373be25daf10c2d7ee0a92e833478bc85223de" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!ooiziy69fXCdbdhq" +} diff --git a/packs/ac-ancestries-and-class/Giant_Wasp_SSkujfe48TvY2yNK.json b/packs/ac-ancestries-and-class/Giant_Wasp_SSkujfe48TvY2yNK.json new file mode 100644 index 0000000..c338855 --- /dev/null +++ b/packs/ac-ancestries-and-class/Giant_Wasp_SSkujfe48TvY2yNK.json @@ -0,0 +1,167 @@ +{ + "name": "Giant Wasp", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a large wasp, hornet, or other stinging hymenopteran.
\nSize Large
\nMelee
\n stinger (finesse), Damage 1d6 piercing plus poisonStr +2, Dex +3, Con +2, Int –4, Wis +1, Cha +0
\nHit Points 4
\nSkill Survival
\nSenses darkvision
\nSpeed 20 feet, fly 40 feet
\nSpecial @UUID[Compendium.pf2e.actionspf2e.Item.PM5jvValFkbFH3TV]{Mount}
\nSupport Benefit Your wasp drones its wings, unnerving your enemies. Until the start of your next turn, if you hit and deal damage to a creature in your giant wasp's reach, the creature becomes @UUID[Compendium.pf2e.conditionitems.Item.TBSHQspnbcqxsmjL]{Frightened 1}.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.5ux66ubWlevY7z2K]{Darting Stab}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "BaseSpeed", + "selector": "fly", + "value": 40 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Stinger", + "range": null, + "traits": [ + "unarmed", + "finesse", + "poison" + ], + "img": "systems/pf2e/icons/unarmed-attacks/stinger.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:giant-wasp", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.V3XczB8r8fQfJIhe" + }, + { + "key": "DamageDice", + "selector": "stinger-damage", + "predicate": [ + { + "not": "self:specialized" + } + ], + "diceNumber": 1, + "dieSize": "d4", + "damageType": "poison" + } + ], + "slug": "giant-wasp", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 4, + "size": "lg", + "reach": 5, + "speed": 20, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "normal" + }, + "_id": "SSkujfe48TvY2yNK", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "76fd971ba0e44146efc5b59905ad4243085a79b8" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!SSkujfe48TvY2yNK" +} diff --git a/packs/ac-ancestries-and-class/Gibtas_QJghnxvSitRl5ubE.json b/packs/ac-ancestries-and-class/Gibtas_QJghnxvSitRl5ubE.json new file mode 100644 index 0000000..68c8ee4 --- /dev/null +++ b/packs/ac-ancestries-and-class/Gibtas_QJghnxvSitRl5ubE.json @@ -0,0 +1,201 @@ +{ + "_id": "QJghnxvSitRl5ubE", + "name": "Gibtas", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 2200000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.eBgMfYf0PVbsGOYp" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a gibtas.
\nSize Small
\nMelee
\n jaws, Damage 1d8 piercingMelee
\n claw (agile), Damage 1d6 slashingStr +3, Dex +2, Con +2, Int -4, Wis +1, Cha +0
\nHit Points 8
\nSkill Intimidation
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 35 feet
\nSupport Benefit Your gibtas mauls your enemies when you create an opening. Until the start of your next turn, each time you hit a creature in the gibtas' reach with a Strike, the creature takes [[/r 1d8[slashing]]] damage from the gibtas. If your gibtas is nimble or savage, the slashing damage increases to [[/r 2d8]]{2d8}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.Uv49tQCwUUjaMCj5]{Bouncing Slam}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.claw", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/claw.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:gibtas", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.AvDlo1mgxXd7ZA8W" + } + ], + "slug": "gibtas", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "aberration" + ], + "rarity": "rare" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "sm", + "reach": 5, + "speed": 35, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder #164: Hands of the Devil" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.559-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.eBgMfYf0PVbsGOYp", + "duplicateSource": null + }, + "_key": "!items!QJghnxvSitRl5ubE" +} diff --git a/packs/ac-ancestries-and-class/Giraffe_9IARvRDnPZFC4PyY.json b/packs/ac-ancestries-and-class/Giraffe_9IARvRDnPZFC4PyY.json new file mode 100644 index 0000000..f866c89 --- /dev/null +++ b/packs/ac-ancestries-and-class/Giraffe_9IARvRDnPZFC4PyY.json @@ -0,0 +1,177 @@ +{ + "name": "Giraffe", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a giraffe.
\nSize Large
\nMelee
\n hoof (agile), Damage 1d6 bludgeoningMelee
\n neck (nonlethal, reach 10 feet), Damage 1d4 bludgeoningStr +3, Dex +2, Con +2, Int –4, Wis +1, Cha +0
\nHit Points 8
\nSkill Intimidation
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 35 feet
\nSpecial @UUID[Compendium.pf2e.actionspf2e.Item.PM5jvValFkbFH3TV]{Mount}
\nSupport Benefit Your giraffe pushes against opponents with its long neck. While riding on your giraffe this turn, you do not need a hand free to @UUID[Compendium.pf2e.actionspf2e.Item.7blmbDrQFNfdT731]{Shove} and any foe you successfully Shove moves 10 feet (15 feet on a critical success).
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.9IqqECMTmfbaBY0C]{Long Stomp}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Hoof", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/foot.webp", + "replaceBasicUnarmed": true + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d4" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Neck", + "range": 10, + "traits": [ + "unarmed", + "nonlethal", + "reach" + ], + "img": "systems/pf2e/icons/unarmed-attacks/tail.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:giraffe", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.LcAJTLzLDcIrQ7KQ" + } + ], + "slug": "giraffe", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 8, + "size": "lg", + "reach": 5, + "speed": 35, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "low-light-vision" + }, + "_id": "9IARvRDnPZFC4PyY", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "412140eb7b3d88bfa49e13b062e6680be2962caa" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!9IARvRDnPZFC4PyY" +} diff --git a/packs/ac-ancestries-and-class/Goat_3ubDMtiqlPI1Xcu8.json b/packs/ac-ancestries-and-class/Goat_3ubDMtiqlPI1Xcu8.json new file mode 100644 index 0000000..f27e390 --- /dev/null +++ b/packs/ac-ancestries-and-class/Goat_3ubDMtiqlPI1Xcu8.json @@ -0,0 +1,174 @@ +{ + "name": "Goat", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "flags": { + "core": {} + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a breed of mountain goat populous in the Five Kings Mountains.
\nSize Medium
\nMelee
\n headbutt (shove), Damage 1d8 bludgeoningStr +3, Dex +2, Con +2, Int –4, Wis +1, Cha +0
\nHit Points 8
\nSkill Acrobatics
\nSenses scent (imprecise) 30 feet
\nSpeed 35 feet, climb 15 feet
\nSpecial mount
\nSupport Benefit Your goat boosts you up a wall, allowing you to reach greater heights. You climb up a surface as if you had rolled a success on a Climb action.
\nAdvanced Maneuver Knock Aside
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.acr.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Headbutt", + "range": null, + "traits": [ + "shove", + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/horn.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:goat", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.ugEUIh47YrNUIsnd", + "allowDuplicate": false + }, + { + "key": "BaseSpeed", + "selector": "climb", + "value": 15 + } + ], + "slug": "ankylosaurus", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "med", + "reach": 5, + "speed": 35, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "normal", + "source": { + "value": "Pathfinder Lost Omens: Highhelm" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.572-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "3ubDMtiqlPI1Xcu8", + "sort": 500000, + "_key": "!items!3ubDMtiqlPI1Xcu8" +} diff --git a/packs/ac-ancestries-and-class/Griffon_iyrY2PZ4YII66JhD.json b/packs/ac-ancestries-and-class/Griffon_iyrY2PZ4YII66JhD.json new file mode 100644 index 0000000..74cbfc1 --- /dev/null +++ b/packs/ac-ancestries-and-class/Griffon_iyrY2PZ4YII66JhD.json @@ -0,0 +1,178 @@ +{ + "name": "Griffon", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a majestic beast combining the features of a raptor and a lion.
\nSize Large
\nMelee
\n beak, Damage 1d8 piercingMelee
\n talon (agile), Damage 1d6 slashingStr +3, Dex +2, Con +2, Int –4, Wis +1, Cha +0
\nHit Points 8
\nSkill Survival
\nSenses darkvision, scent (imprecise) 30 feet
\nSpeed 25 feet, fly 60 feet
\nSpecial @UUID[Compendium.pf2e.actionspf2e.Item.PM5jvValFkbFH3TV]{Mount}
\nSupport Benefit Your griffon adopts a noble pose, inspiring you to defy the horrors before you. Until the start of your next turn, you and your griffon gain a +2 circumstance bonus to saves against emotion effects.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.WocN44CJGHYxitzM]{Flying Strafe}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "BaseSpeed", + "selector": "fly", + "value": 60 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Beak", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/beak.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Talon", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/talon.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:griffon", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.ShKTegi69Hizn0vB" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + } + ], + "slug": null, + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 8, + "size": "lg", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision" + }, + "_id": "iyrY2PZ4YII66JhD", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "1286c9f256f542d0c7b9877a2fba5c5b86cbaf74" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!iyrY2PZ4YII66JhD" +} diff --git a/packs/ac-ancestries-and-class/Hippocampus_PF4GAtNIkRUn36WD.json b/packs/ac-ancestries-and-class/Hippocampus_PF4GAtNIkRUn36WD.json new file mode 100644 index 0000000..534ae3e --- /dev/null +++ b/packs/ac-ancestries-and-class/Hippocampus_PF4GAtNIkRUn36WD.json @@ -0,0 +1,160 @@ +{ + "name": "Hippocampus", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a strange beast combining aspects of a horse and a fish.
\nSize Large
\nMelee
\n tail, Damage 1d6 bludgeoningStr +3, Dex +1, Con +3, Int –4, Wis +1, Cha +0
\nHit Points 6
\nSkill Survival
\nSenses darkvision, scent (imprecise) 30 feet
\nSpeed 5 feet, swim 40 feet
\nSpecial @UUID[Compendium.pf2e.actionspf2e.Item.PM5jvValFkbFH3TV]{Mount}
\nSupport Benefit Until the start of your next turn, if you're mounted on your hippocampus and moved 10 feet or more on the action before a melee Strike, add a circumstance bonus to damage for that Strike equal to twice the number of weapon damage dice. If your weapon already has the jousting weapon trait, increase the trait's damage bonus by 2 per die instead.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.R2RNXJH06UhSMmzp]{Sudden Retreat}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "key": "BaseSpeed", + "selector": "swim", + "value": 40 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Tail", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/tail.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:hippocampus", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.t1KMf7rDzJJ2vWhe" + } + ], + "slug": "hippocampus", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal", + "aquatic" + ], + "rarity": "common" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 6, + "size": "lg", + "reach": 5, + "speed": 5, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision" + }, + "_id": "PF4GAtNIkRUn36WD", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "ab00244400b06a17f36e54fe30d6e5b06a8f9eef" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!PF4GAtNIkRUn36WD" +} diff --git a/packs/ac-ancestries-and-class/Hippogriff_1LE7VyvXCiOOmdE6.json b/packs/ac-ancestries-and-class/Hippogriff_1LE7VyvXCiOOmdE6.json new file mode 100644 index 0000000..3266c86 --- /dev/null +++ b/packs/ac-ancestries-and-class/Hippogriff_1LE7VyvXCiOOmdE6.json @@ -0,0 +1,178 @@ +{ + "name": "Hippogriff", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion combines the features of a hawk and a horse.
\nSize Large
\nMelee
\n beak, Damage 1d6 piercingMelee
\n talon (agile), Damage 1d4 slashingStr +2, Dex +2, Con +2, Int –4, Wis +2, Cha +0
\nHit Points 8
\nSkill Survival
\nSenses darkvision, scent (imprecise) 30 feet
\nSpeed 30 feet, fly 60 feet
\nSpecial @UUID[Compendium.pf2e.actionspf2e.Item.PM5jvValFkbFH3TV]{Mount}
\nSupport Benefit Until the start of your next turn, if you're mounted on your hippogriff and moved 10 feet or more on the action before a melee Strike, add a circumstance bonus to damage for that Strike equal to twice the number of weapon damage dice. If your weapon already has the jousting weapon trait, increase the trait's damage bonus by 2 per die instead.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.SkVl3yomdYZoS7Hx]{Aerial Retreat}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "key": "BaseSpeed", + "selector": "fly", + "value": 60 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Beak", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/beak.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d4" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Talon", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/talon.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:hippogriff", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.cJBAKsVacLTIiPcz" + } + ], + "slug": "hippogriff", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 8, + "size": "lg", + "reach": 5, + "speed": 30, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision" + }, + "_id": "1LE7VyvXCiOOmdE6", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "e00388f905ab80ade069446d11cb5fe982602991" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!1LE7VyvXCiOOmdE6" +} diff --git a/packs/ac-ancestries-and-class/Horse_8gSeDqJLLQRlQWis.json b/packs/ac-ancestries-and-class/Horse_8gSeDqJLLQRlQWis.json new file mode 100644 index 0000000..804fc16 --- /dev/null +++ b/packs/ac-ancestries-and-class/Horse_8gSeDqJLLQRlQWis.json @@ -0,0 +1,209 @@ +{ + "_id": "8gSeDqJLLQRlQWis", + "name": "Horse", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 1100000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8gSeDqJLLQRlQWis" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a horse, pony, or similar equine.
\nSize Medium or Large
\nMelee
\n hoof (agile), Damage 1d6 bludgeoningStr +3, Dex +2, Con +2, Int -4, Wis +1, Cha +0
\nHit Points 8
\nSkill Survival
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 40 feet
\nSpecial mount
\nSupport Benefit Your horse adds momentum to your charge. Until the start of your next turn, if you moved at least 10 feet on the action before your attack, add a circumstance bonus to damage to that attack equal to twice the number of damage dice. If your weapon already has the jousting weapon trait, increase the trait's damage bonus by 2 per die instead.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.tsOaXTRWQvsKTyaL]{Gallop}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Hoof", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/foot.webp", + "replaceBasicUnarmed": true + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeLarge", + "value": "lg" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:horse", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.wf20kx6pPGBWwUn2", + "allowDuplicate": false + } + ], + "slug": "horse", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "med", + "reach": 5, + "speed": 40, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Core Rulebook" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.566-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {}, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8gSeDqJLLQRlQWis", + "duplicateSource": null + }, + "_key": "!items!8gSeDqJLLQRlQWis" +} diff --git a/packs/ac-ancestries-and-class/Hyena_efkFqs6LXzWkawfL.json b/packs/ac-ancestries-and-class/Hyena_efkFqs6LXzWkawfL.json new file mode 100644 index 0000000..386923e --- /dev/null +++ b/packs/ac-ancestries-and-class/Hyena_efkFqs6LXzWkawfL.json @@ -0,0 +1,183 @@ +{ + "_id": "efkFqs6LXzWkawfL", + "name": "Hyena", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 3600000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.efkFqs6LXzWkawfL" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a hyena.
\nSize Small
\nMelee
\n jaws (finesse), Damage 1d8 piercingStr +2, Dex +3, Con +2, Int -4, Wis +1, Cha +0
\nHit Points 6
\nSkill Intimidation
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 40 feet
\nSupport Benefit The hyena mockingly yowls at your enemies and bites at them when you create an opening. Until the start of your next turn, each time you hit a creature in the hyena's reach with a Strike, the creature becomes @Compendium[pf2e.conditionitems.Frightened]{Frightened 1}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.oisXYTTYE0TABboA]{Gnaw}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:hyena", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.wlh1poSMLK9wk2Nw" + } + ], + "slug": "hyena", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 40, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder #149: Against the Scarlet Triad" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.548-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.efkFqs6LXzWkawfL", + "duplicateSource": null + }, + "_key": "!items!efkFqs6LXzWkawfL" +} diff --git a/packs/ac-ancestries-and-class/Kangaroo_sRIW3dSlEDw9SMLi.json b/packs/ac-ancestries-and-class/Kangaroo_sRIW3dSlEDw9SMLi.json new file mode 100644 index 0000000..776b9ac --- /dev/null +++ b/packs/ac-ancestries-and-class/Kangaroo_sRIW3dSlEDw9SMLi.json @@ -0,0 +1,148 @@ +{ + "name": "Kangaroo", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a kangaroo or wallaby.
\nSize Small
\nMelee
\n foot (agile), Damage 1d6 bludgeoningStr +3, Dex +2, Con +2, Int –4, Wis +1, Cha +0
\nHit Points 6
\nSkill Survival
\nSenses low-light vision
\nSpeed 30 feet
\nSpecial When the kangaroo Leaps horizontally, it travels up to 25 feet.
\nSupport Benefit Your kangaroo bounces and shifts back and forth. Until the start of your next turn, it counts as being in its space or an empty space of your choice within 5 feet when determining whether you and your companion are flanking; you can choose a different space for each of your attacks.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.hjYmAzurrzcGyds4]{Spring Kick}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Foot", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/foot.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:kangaroo", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.oawpSPdSj1hSkSYk" + } + ], + "slug": "kangaroo", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 30, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "low-light-vision" + }, + "_id": "sRIW3dSlEDw9SMLi", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "7d906c4619c8c05f7827e89491593b0894f80ba0" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!sRIW3dSlEDw9SMLi" +} diff --git a/packs/ac-ancestries-and-class/LOG b/packs/ac-ancestries-and-class/LOG deleted file mode 100644 index 30814b9..0000000 --- a/packs/ac-ancestries-and-class/LOG +++ /dev/null @@ -1,3 +0,0 @@ -2024/05/25-18:34:59.888 dc8 Recovering log #292 -2024/05/25-18:34:59.890 dc8 Delete type=0 #292 -2024/05/25-18:34:59.890 dc8 Delete type=3 #290 diff --git a/packs/ac-ancestries-and-class/LOG.old b/packs/ac-ancestries-and-class/LOG.old deleted file mode 100644 index 5d80a77..0000000 --- a/packs/ac-ancestries-and-class/LOG.old +++ /dev/null @@ -1,5 +0,0 @@ -2024/05/23-20:18:10.884 2950 Recovering log #288 -2024/05/23-20:18:10.891 2950 Level-0 table #291: started -2024/05/23-20:18:10.896 2950 Level-0 table #291: 264904 bytes OK -2024/05/23-20:18:10.900 2950 Delete type=0 #288 -2024/05/23-20:18:10.900 2950 Delete type=3 #286 diff --git a/packs/ac-ancestries-and-class/Legchair_2DHIdNZsWW0QMktP.json b/packs/ac-ancestries-and-class/Legchair_2DHIdNZsWW0QMktP.json new file mode 100644 index 0000000..99cc981 --- /dev/null +++ b/packs/ac-ancestries-and-class/Legchair_2DHIdNZsWW0QMktP.json @@ -0,0 +1,205 @@ +{ + "_id": "2DHIdNZsWW0QMktP", + "name": "Legchair", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 300000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8gSeDqJLLQRlQWis" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a strange creature, akin to a chair with bestial legs.
\nSize Medium or Large
\nMelee
\n hoof (agile), Damage 1d6 bludgeoningStr +3, Dex +2, Con +2, Int -4, Wis +1, Cha +0
\nHit Points 8
\nSkill Stealth
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 40 feet
\nSpecial mount
\nSupport Benefit Your legchair moves its limbs in the way of enemy attacks. You gain lesser cover from your legchair against all attacks, not just ones where the legchair would be in the way.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.lrchn6ROZcuKCg3C]{Careful Withdraw}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeLarge", + "value": "lg" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Hoof", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/foot.webp", + "replaceBasicUnarmed": true + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:legchair", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.kZvomyJobGrDs1MU" + } + ], + "slug": "legchair", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "med", + "reach": 5, + "speed": 40, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Lost Omens: Grand Bazaar" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.767-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8gSeDqJLLQRlQWis", + "duplicateSource": null + }, + "_key": "!items!2DHIdNZsWW0QMktP" +} diff --git a/packs/ac-ancestries-and-class/MANIFEST-000293 b/packs/ac-ancestries-and-class/MANIFEST-000293 deleted file mode 100644 index b465a36..0000000 Binary files a/packs/ac-ancestries-and-class/MANIFEST-000293 and /dev/null differ diff --git a/packs/ac-ancestries-and-class/Metal_Elemental_BPo2AA9M7OBqJIYY.json b/packs/ac-ancestries-and-class/Metal_Elemental_BPo2AA9M7OBqJIYY.json new file mode 100644 index 0000000..2d26bda --- /dev/null +++ b/packs/ac-ancestries-and-class/Metal_Elemental_BPo2AA9M7OBqJIYY.json @@ -0,0 +1,163 @@ +{ + "name": "Metal Elemental", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "flags": { + "core": {} + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a metal elemental, such as a mercurial. Metal elementals don't have any special access because druids don't have an order dedicated to the elemental magic of metal.
\nSize Small
\nMelee
\n spike, Damage 1d8 piercingStr +2, Dex +1, Con +2, Int –4, Wis +1, Cha +0
\nHit Points 8
\nSkill Intimidation
\nSenses darkvision
\nSpeed 25 feet
\nSupport Benefit Your metal elemental pierces an enemy with metal spikes that cause it to bleed. Until the start of your next turn, your Strikes that damage a creature in your metal elemental's reach also deal @Damage[1d6[persistent,bleed]] damage. If your metal elemental is nimble or savage, the persistent bleed damage increases to [[/r 2d6]].
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.oyNZpuQ6EU3prvo2]{Spiked Bunker}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Spike", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/equipment/adventuring-gear/shield-sconce.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:metal-elemental", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.SZD1hU2ageIDw4To", + "allowDuplicate": false + } + ], + "slug": "ankylosaurus", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "elemental", + "metal" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "sm", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.556-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "BPo2AA9M7OBqJIYY", + "folder": null, + "sort": 1400000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!BPo2AA9M7OBqJIYY" +} diff --git a/packs/ac-ancestries-and-class/Mole_qbnExhXh5IqzWQmy.json b/packs/ac-ancestries-and-class/Mole_qbnExhXh5IqzWQmy.json new file mode 100644 index 0000000..3814d2e --- /dev/null +++ b/packs/ac-ancestries-and-class/Mole_qbnExhXh5IqzWQmy.json @@ -0,0 +1,179 @@ +{ + "name": "Mole", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a giant mole, gopher, or prairie dog.
\nSize Small
\nMelee
\n jaws, Damage 1d8 piercingMelee
\n claw (agile), Damage 1d6 slashingStr +3, Dex +2, Con +2, Int –4, Wis +1, Cha +0
\nHit Points 8
\nSkill Stealth
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 25 feet, burrow 20 feet
\nSupport Benefit Your mole leaps into the ground and burrows beneath your foes, disturbing their footing. Until the end of your next turn, if you hit and damage a creature adjacent to your mole, that creature is @UUID[Compendium.pf2e.conditionitems.Item.i3OJZU2nk64Df3xm]{Clumsy 1} until it moves from its current position.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.PZAHlaN4aG6NkSjj]{Burrowing Ambush}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "BaseSpeed", + "selector": "burrow", + "value": 20 + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.claw", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/claw.webp" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:mole", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.vvuB2kEzRYSs4IpH" + } + ], + "slug": "mole", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 8, + "size": "sm", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "normal" + }, + "_id": "qbnExhXh5IqzWQmy", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "43b16e36e682a18d0fd1132569a543c9b7ec1329" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!qbnExhXh5IqzWQmy" +} diff --git a/packs/ac-ancestries-and-class/Mongoose_QAxXekyFHgG5A2cc.json b/packs/ac-ancestries-and-class/Mongoose_QAxXekyFHgG5A2cc.json new file mode 100644 index 0000000..8402044 --- /dev/null +++ b/packs/ac-ancestries-and-class/Mongoose_QAxXekyFHgG5A2cc.json @@ -0,0 +1,186 @@ +{ + "name": "Mongoose", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a mongoose or meerkat.
\nSize Small
\nMelee
\n jaws (finesse), Damage 1d6 piercingMelee
\n claw (agile, finesse), Damage 1d4 slashingStr +2, Dex +3, Con +1, Int –4, Wis +1, Cha +1
\nHit Points 4
\nSkill Survival
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 25 feet, burrow 10 feet
\nSupport Benefit The mongoose bounds to your side, alert and at the ready. Until the end of your next turn, creatures adjacent to the mongoose cannot flank you.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.LBPGvjR3zSau0QC4]{Liberating Bite}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.cha.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "BaseSpeed", + "selector": "burrow", + "value": 10 + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d4" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.claw", + "range": null, + "traits": [ + "unarmed", + "agile", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/claw.webp" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:mongoose", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.D8uiA6qJN2NfxDjx" + } + ], + "slug": "mongoose", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 4, + "size": "sm", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "low-light-vision" + }, + "_id": "QAxXekyFHgG5A2cc", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "60706a440c129115182eb70467d641f25e645485" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!QAxXekyFHgG5A2cc" +} diff --git a/packs/ac-ancestries-and-class/Monitor_Lizard_0BVoHy7R86KJoani.json b/packs/ac-ancestries-and-class/Monitor_Lizard_0BVoHy7R86KJoani.json new file mode 100644 index 0000000..c0d81c6 --- /dev/null +++ b/packs/ac-ancestries-and-class/Monitor_Lizard_0BVoHy7R86KJoani.json @@ -0,0 +1,182 @@ +{ + "_id": "0BVoHy7R86KJoani", + "name": "Monitor Lizard", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 100000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.0BVoHy7R86KJoani" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a stocky-limbed lizard with a long, almost serpentine body.
\nSize Medium
\nMelee
\n jaws, Damage 1d8 piercingStr +3, Dex +2, Con +2, Int -4, Wis +1, Cha +0
\nHit Points 8
\nSkill Survival
\nSenses low-light vision, scent (imprecise) 30 feet
\nSpeed 30 feet
\nSpecial mount
\nSupport Benefit The monitor lizard distracts an adjacent opponent with snapping jaws and rapid movements. Until the start of your next turn, if your Strike damages a foe, any time the foe attempts an action with the manipulate trait until the end of your next turn, it must attempt a DC 5 flat check. On a failure, the action is disrupted.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.uR3j6TAJFeOVUHpY]{Lurching Rush}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:monitor-lizard", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.2Jaz98WiQMNnqKCD" + } + ], + "slug": "monitor-lizard", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "med", + "reach": 5, + "speed": 30, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder #154: Siege of the Dinosaurs" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.769-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.0BVoHy7R86KJoani", + "duplicateSource": null + }, + "_key": "!items!0BVoHy7R86KJoani" +} diff --git a/packs/ac-ancestries-and-class/Moth_SMYGh6WPjKIMAmXc.json b/packs/ac-ancestries-and-class/Moth_SMYGh6WPjKIMAmXc.json new file mode 100644 index 0000000..593be96 --- /dev/null +++ b/packs/ac-ancestries-and-class/Moth_SMYGh6WPjKIMAmXc.json @@ -0,0 +1,181 @@ +{ + "_id": "SMYGh6WPjKIMAmXc", + "name": "Moth", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 2500000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8gSeDqJLLQRlQWis" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your animal companion is a giant fruit eating moth with a strong proboscis that can pierce skin.
\nSize Small
\nMelee
\n Probiscis (finesse), Damage 1d6 piercingStr +2, Dex +3, Con +1, Int -4, Wis +2, Cha +0
\nHit Points 6
\nSkill Stealth
\nSenses darkvision, scent (imprecise, 30 feet)
\nSpeed 15 feet, fly 30 feet
\nSpecial Your moth is invisible to echolocation.
\nSupport Benefit Your moth releases a shower of dust to reveal your foes. Until the start of your next turn, if you damage a @Compendium[pf2e.conditionitems.Concealed]{Concealed} or @Compendium[pf2e.conditionitems.Hidden]{Hidden} creature in your moth's reach with a Strike, that creature requires only a Flat Check to target it if it's concealed, or Flat Check if it's hidden. The reduced DC lasts until the end of your next turn.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.WdTzlCO2i4loeYkQ]{Ultrasonic Scream}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "BaseSpeed", + "selector": "fly", + "value": 30 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Proboscis", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/tail.webp", + "replaceBasicUnarmed": true + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:moth", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.9Y5QKMvy0KsliE29" + } + ], + "slug": "moth", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 15, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder Lost Omens: Grand Bazaar" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.558-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8gSeDqJLLQRlQWis", + "duplicateSource": null + }, + "_key": "!items!SMYGh6WPjKIMAmXc" +} diff --git a/packs/ac-ancestries-and-class/Oozeform_Chair_0MAsdLGCLSM2W3h0.json b/packs/ac-ancestries-and-class/Oozeform_Chair_0MAsdLGCLSM2W3h0.json new file mode 100644 index 0000000..f435ee8 --- /dev/null +++ b/packs/ac-ancestries-and-class/Oozeform_Chair_0MAsdLGCLSM2W3h0.json @@ -0,0 +1,184 @@ +{ + "name": "Oozeform Chair", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "flags": { + "core": {} + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is an alchemical ooze that extends pseudopods to move around.
\nSize Medium or Large
\nMelee
\n pseudopod (agile), Damage 1d6 bludgeoningStr +3, Dex +2, Con +3, Int –4, Wis +0, Cha +0
\nHit Points 6
\nSkill Athletics Motion Sense Your oozeform chair can sense nearby creatures through vibration in the air. This is an imprecise sense with a range of 30 feet.
\nSpeed 20 feet
\nSpecial mount
\nSupport Benefit A pseudopod extends out from your chair, retrieving an unattended object within 15 feet. If you don't have a hand free to receive the object, the chair drops it in your space.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.gzefJocgdWbXWWPi]{Extend Pseudopod}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ath.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "motionsense" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Pseudopod", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/pseudopod.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:oozeform-chair", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.hC0YEa4Z8I4XxV3r", + "allowDuplicate": false + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeLarge", + "value": "lg" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + } + ], + "slug": "ankylosaurus", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "med", + "reach": 5, + "speed": 20, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "normal", + "source": { + "value": "Pathfinder Treasure Vault" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.768-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "0MAsdLGCLSM2W3h0", + "sort": 200000, + "_key": "!items!0MAsdLGCLSM2W3h0" +} diff --git a/packs/ac-ancestries-and-class/Orca_6NhuGYfekQfBxAVd.json b/packs/ac-ancestries-and-class/Orca_6NhuGYfekQfBxAVd.json new file mode 100644 index 0000000..c528f46 --- /dev/null +++ b/packs/ac-ancestries-and-class/Orca_6NhuGYfekQfBxAVd.json @@ -0,0 +1,159 @@ +{ + "name": "Orca", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a killer whale.
\nSize Large
\nMelee
\n jaws, Damage 1d8 piercingStr +3, Dex +2, Con +3, Int –4, Wis +0, Cha +0
\nHit Points 8
\nSkill Survival
\nSenses echolocation 30 feet (the orca can use hearing as a precise sense within this range while underwater)
\nSpeed 5 feet, swim 40 feet
\nSpecial @UUID[Compendium.pf2e.actionspf2e.Item.PM5jvValFkbFH3TV]{Mount}; the orca can hold its breath for 20 minutes.
\nSupport Benefit Your orca attempts to drag down unwary swimmers. Until the start of your next turn, each time you hit a swimming creature in the orca's reach, the target is pulled 5 feet down into the water. This is forced movement.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.HY6rzDpBJ4L5OmgI]{Breach}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "acuity": "precise", + "key": "Sense", + "range": 30, + "selector": "echolocation" + }, + { + "key": "BaseSpeed", + "selector": "swim", + "value": 40 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:orca", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.EkyB80qlJ6VbC7bi" + } + ], + "slug": "orca", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 8, + "size": "lg", + "reach": 5, + "speed": 5, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "normal" + }, + "_id": "6NhuGYfekQfBxAVd", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "d7a2e37fc09d8537b27be51215213400b33a4fa6" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!6NhuGYfekQfBxAVd" +} diff --git a/packs/ac-ancestries-and-class/Pangolin_6r0IkniXbYu0bPdi.json b/packs/ac-ancestries-and-class/Pangolin_6r0IkniXbYu0bPdi.json new file mode 100644 index 0000000..00a2d36 --- /dev/null +++ b/packs/ac-ancestries-and-class/Pangolin_6r0IkniXbYu0bPdi.json @@ -0,0 +1,190 @@ +{ + "_id": "6r0IkniXbYu0bPdi", + "name": "Pangolin", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 800000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8gSeDqJLLQRlQWis" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a particularly large pangolin, such as an ugvashi from Vudra.
\nSize Medium
\nMelee
\n body, Damage 1d8 bludgeoningMelee
\n claw (agile), Damage 1d6 slashingStr +3, Dex +2, Con +2, Int -4, Wis +1, Cha +0
\nHit Points 8
\nSkill Survival
\nSenses low-light vision
\nSpeed 25 feet
\nSupport Benefit Your pangolin tears at your enemies with its serrated plates. Until the start of your next turn, your Strikes that damage a creature in your pangolin's reach also deal [[/r 1d6[persistent,bleed]]] damage. If your pangolin is nimble or savage, the persistent bleed damage increases to [[/r 2d6]]{2d6}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.pMPtswKNokDNyYR2]{Defensive Curl}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Body", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/body.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.claw", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/claw.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:pangolin", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.QiQvx7jtfrkGnf13" + } + ], + "slug": "pangolin", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "med", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Lost Omens: Grand Bazaar" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.570-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {}, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8gSeDqJLLQRlQWis", + "duplicateSource": null + }, + "_key": "!items!6r0IkniXbYu0bPdi" +} diff --git a/packs/ac-ancestries-and-class/Rhinoceros_6dNZ1K8X9OgK8aCL.json b/packs/ac-ancestries-and-class/Rhinoceros_6dNZ1K8X9OgK8aCL.json new file mode 100644 index 0000000..3b0d503 --- /dev/null +++ b/packs/ac-ancestries-and-class/Rhinoceros_6dNZ1K8X9OgK8aCL.json @@ -0,0 +1,166 @@ +{ + "_id": "6dNZ1K8X9OgK8aCL", + "name": "Rhinoceros", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 700000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.6dNZ1K8X9OgK8aCL" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a rhinoceros or woolly rhinoceros.
\nSize Large
\nMelee
\n horn, Damage 1d8 piercingStr +3, Dex +1, Con +3, Int -4, Wis +1, Cha +0
\nHit Points 8
\nSkill Survival
\nSenses scent (imprecise, 30 feet)
\nSpeed 30 feet
\nSpecial mount
\nSupport Benefit Your rhino swings its heavy head to unbalance your enemy. The first creature within your rhino's reach that you hit and deal damage to before the start of your next turn becomes @Compendium[pf2e.conditionitems.Clumsy]{Clumsy 1} until the end of your next turn.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.JMHoCFb886K6dT1n]{Rhinoceros Charge}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Horn", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/horn.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:rhinoceros", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.kecawjDhBFz5QA4f" + } + ], + "slug": "rhinoceros", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "lg", + "reach": 5, + "speed": 30, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "normal", + "source": { + "value": "Pathfinder #177: Burning Tundra" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.571-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.6dNZ1K8X9OgK8aCL", + "duplicateSource": null + }, + "_key": "!items!6dNZ1K8X9OgK8aCL" +} diff --git a/packs/ac-ancestries-and-class/Riding_Drake_pAiHiUC9NfbndLNG.json b/packs/ac-ancestries-and-class/Riding_Drake_pAiHiUC9NfbndLNG.json new file mode 100644 index 0000000..9a8e065 --- /dev/null +++ b/packs/ac-ancestries-and-class/Riding_Drake_pAiHiUC9NfbndLNG.json @@ -0,0 +1,200 @@ +{ + "_id": "pAiHiUC9NfbndLNG", + "name": "Riding Drake", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 5100000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.pAiHiUC9NfbndLNG" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a swift, flightless drake with limited intelligence, less vicious than most drakes but fiercely loyal to you. A riding drake has the dragon trait instead of the animal trait, but it otherwise functions normally as an animal companion.
\nSize Large
\nMelee
\n jaws, Damage 1d8 piercingMelee
\n tail, Damage 1d6 bludgeoningStr +2, Dex +1, Con +2, Int -4, Wis +1, Cha +2
\nHit Points 8
\nSkill Intimidation
\nSenses darkvision
\nSpeed 45 feet
\nSpecial mount
\nSupport Benefit Your drake snorts fire in your foes' faces. Until the start of your next turn, each time you Strike while riding the drake and hit a creature in the drake's reach, the creature takes [[/r 1d4[fire]]] damage from the drake. If your drake is nimble or savage, the fire damage increases to [[/r 2d4]]{2d4}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.8JdETVTpbZAgtBA3]{Breath Weapon}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.cha.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Tail", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/tail.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:riding-drake", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.C41lCXjerYjMyOTI" + } + ], + "slug": "riding-drake", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "dragon" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "lg", + "reach": 5, + "speed": 45, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder Advanced Player's Guide" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.537-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.pAiHiUC9NfbndLNG", + "duplicateSource": null + }, + "_key": "!items!pAiHiUC9NfbndLNG" +} diff --git a/packs/ac-ancestries-and-class/Riding_Tarantula_bBy7LGZB2GamqkML.json b/packs/ac-ancestries-and-class/Riding_Tarantula_bBy7LGZB2GamqkML.json new file mode 100644 index 0000000..3feb7a9 --- /dev/null +++ b/packs/ac-ancestries-and-class/Riding_Tarantula_bBy7LGZB2GamqkML.json @@ -0,0 +1,196 @@ +{ + "name": "Riding Tarantula", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a massive hairy spider.
\nSize Large
\nMelee
\n fangs (finesse), Damage 1d6 piercing plus poisonMelee
\n leg (agile, finesse), Damage 1d4 piercingStr +2, Dex +3, Con +1, Int –4, Wis +2, Cha +0
\nSkill Stealth
\nSenses darkvision
\nSpeed 30 feet, climb 30 feet
\nSpecial @UUID[Compendium.pf2e.actionspf2e.Item.PM5jvValFkbFH3TV]{Mount} at 8th level; your riding tarantula's fangs attack deals an additional @Damage[1d4[poison]] damage or @Damage[2d4[poison]] damage if the riding tarantula is a specialized companion
\nSupport Benefit Your riding tarantula flicks urticating hairs at your foe, disrupting their focus. Until the start of your next turn, if you hit and deal damage to a creature your riding tarantula threatens, the target must succeed at a @Check[type:flat|dc:5] whenever it takes a concentrate action or that action is lost.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.eFZtA8LHdw4mWJVt]{Hair Barrage}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "BaseSpeed", + "selector": "climb", + "value": 30 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "key": "DamageDice", + "selector": "fangs-damage", + "predicate": [ + { + "not": "self:specialized" + } + ], + "diceNumber": 1, + "dieSize": "d4", + "damageType": "poison" + }, + { + "key": "DamageDice", + "selector": "fangs-damage", + "predicate": [ + "self:specialized" + ], + "diceNumber": 2, + "dieSize": "d4", + "damageType": "poison" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Fangs", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d4" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Leg", + "range": null, + "traits": [ + "unarmed", + "agile", + "finesse" + ], + "img": "icons/creatures/invertebrates/tick-cross-glowing-purple.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:riding-tarantula", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.NKgFIZQYkL3bb6xn" + } + ], + "slug": "riding-tarantula", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 4, + "size": "lg", + "reach": 5, + "speed": 30, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision" + }, + "_id": "bBy7LGZB2GamqkML", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "6aa3a7cf9e8f690dbb953a9c42677ce093daeafc" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!bBy7LGZB2GamqkML" +} diff --git a/packs/ac-ancestries-and-class/Roc_MTLituSKaObePjOL.json b/packs/ac-ancestries-and-class/Roc_MTLituSKaObePjOL.json new file mode 100644 index 0000000..f1219ac --- /dev/null +++ b/packs/ac-ancestries-and-class/Roc_MTLituSKaObePjOL.json @@ -0,0 +1,176 @@ +{ + "name": "Roc", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a younger example of the legendary bird of prey.
\nSize Huge
\nMelee
\n beak, Damage 1d10 piercingMelee
\n talon (agile), Damage 1d8 slashing plus GrabStr +3, Dex +1, Con +3, Int –4, Wis +1, Cha +0
\nHit Points 8
\nSkill Intimidation
\nSenses low-light vision
\nSpeed 15 feet, fly 60 feet
\nSpecial @UUID[Compendium.pf2e.actionspf2e.Item.PM5jvValFkbFH3TV]{Mount}
\nSupport Benefit Your roc beats its wings, creating a powerful downdraft. Until the start of your next turn, your Strikes that damage a creature that your roc threatens push the target 5 feet away from your roc.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.HzGLDKNJJBs7fsYN]{Snatch}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "BaseSpeed", + "selector": "fly", + "value": 60 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d10" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Beak", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/beak.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Talon", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/talon.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:roc", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.R0e3jHpB7nTzIUPm" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e.bestiary-ability-glossary-srd.Item.Tkd8sH4pwFIPzqTr" + } + ], + "slug": null, + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 8, + "size": "huge", + "reach": 5, + "speed": 15, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "low-light-vision" + }, + "_id": "MTLituSKaObePjOL", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "10d074f85697334bfeccac86b40d68e1cf0f29ae" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!MTLituSKaObePjOL" +} diff --git a/packs/ac-ancestries-and-class/Rootball_Chair_8Y7gGICWeeiLARjj.json b/packs/ac-ancestries-and-class/Rootball_Chair_8Y7gGICWeeiLARjj.json new file mode 100644 index 0000000..8e363a0 --- /dev/null +++ b/packs/ac-ancestries-and-class/Rootball_Chair_8Y7gGICWeeiLARjj.json @@ -0,0 +1,185 @@ +{ + "name": "Rootball Chair", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "flags": { + "core": {} + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a woven sphere of living plant roots that rolls over the ground, while you sit on a stabilized seat above it.
\nSize Medium or Large
\nMelee
\n vine (reach 10 feet), Damage 1d8 slashingStr +2, Dex +2, Con +3, Int –4, Wis +1, Cha +0
\nHit Points 8
\nSkill Stealth
\nSenses low-light vision
\nSpeed 30 feet
\nSpecial mount
\nSupport Benefit Your rootball chair moves smoothly over most terrain, thanks to its many tendrils. Your rootball chair ignores difficult terrain.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.Xd4dnyHWexQRVyXn]{Seedpod Spring}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Vine", + "range": null, + "traits": [ + "reach", + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/tail.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:rootball-chair", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.hjvjnSzrslebg0dk", + "allowDuplicate": false + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeLarge", + "value": "lg" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + } + ], + "slug": "ankylosaurus", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "med", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Treasure Vault" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.569-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "8Y7gGICWeeiLARjj", + "sort": 900000, + "_key": "!items!8Y7gGICWeeiLARjj" +} diff --git a/packs/ac-ancestries-and-class/Salamander_cLYMOs1OMaEmMzSI.json b/packs/ac-ancestries-and-class/Salamander_cLYMOs1OMaEmMzSI.json new file mode 100644 index 0000000..cb93c0c --- /dev/null +++ b/packs/ac-ancestries-and-class/Salamander_cLYMOs1OMaEmMzSI.json @@ -0,0 +1,179 @@ +{ + "name": "Salamander", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a salamander, newt, axolotl, or similar amphibian.
\nSize Small
\nMelee
\n tail, Damage 1d6 bludgeoningMelee
\n jaws, Damage 1d4 piercingStr +2, Dex +2, Con +2, Int –4, Wis +1, Cha +1
\nHit Points 6
\nSkill Survival
\nSenses darkvision
\nSpeed 20 feet, swim 10 feet
\nSupport Benefit Your salamander secretes a poisonous, viscous fluid from its skin. Until the start of your next turn, if you or your salamander are hit by a creature adjacent to the salamander, that creature takes @Damage[1d6[poison]] damage. This damage increases to 2d6 if the salamander is nimble or savage.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.l3aasm0to5RvUkU0]{Poisonous Sweep}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.cha.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Tail", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/tail.webp", + "replaceBasicUnarmed": true + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d4" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "BaseSpeed", + "selector": "swim", + "value": 10 + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:salamander", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.XWRd0x7AvdXoeJi3" + } + ], + "slug": "salamander", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 20, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision" + }, + "_id": "cLYMOs1OMaEmMzSI", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "b624ad8e855c1e8e5fbc62165fd02776b06a4c7d" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!cLYMOs1OMaEmMzSI" +} diff --git a/packs/ac-ancestries-and-class/Scorpion_tT2lEqAPTM2u1hNV.json b/packs/ac-ancestries-and-class/Scorpion_tT2lEqAPTM2u1hNV.json new file mode 100644 index 0000000..ece7ab7 --- /dev/null +++ b/packs/ac-ancestries-and-class/Scorpion_tT2lEqAPTM2u1hNV.json @@ -0,0 +1,217 @@ +{ + "_id": "tT2lEqAPTM2u1hNV", + "name": "Scorpion", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 5300000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.tT2lEqAPTM2u1hNV" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is one of the various species of giant scorpion.
\nSize Small
\nMelee
\n stinger, Damage 1d6 piercing plus poison (see Special)Melee
\n pincer (agile), Damage 1d6 slashingStr +3, Dex +3, Con +1, Int -4, Wis +1, Cha +0
\nHit Points 6
\nSkill Stealth
\nSenses darkvision
\nSpeed 30 feet
\nSpecial The scorpion's stinger attack deals an additional [[/r 1d4[poison]]] damage or [[/r 2d4[poison]]] damage if the scorpion is a specialized companion.
\nSupport Benefit Your scorpion drips poison from its stinger when you create an opening. Until the start of your next turn, your Strikes that damage a creature in your scorpion's reach also deal [[/r 1d6[persistent,poison]]] damage. If your scorpion is nimble or savage, the persistent poison damage increases to [[/r 2d6]]{2d6}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.7H8wqKtsAaSgyLyp]{Grab and Sting}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "key": "DamageDice", + "selector": "stinger-damage", + "predicate": [ + { + "not": "self:specialized" + } + ], + "diceNumber": 1, + "dieSize": "d4", + "damageType": "poison" + }, + { + "key": "DamageDice", + "selector": "stinger-damage", + "predicate": [ + "self:specialized" + ], + "diceNumber": 2, + "dieSize": "d4", + "damageType": "poison" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Stinger", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/stinger.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Pincer", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/pincer.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:scorpion", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.xtXdDC5KrUqh7eCu" + } + ], + "slug": "scorpion", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 30, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder Advanced Player's Guide" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.535-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.tT2lEqAPTM2u1hNV", + "duplicateSource": null + }, + "_key": "!items!tT2lEqAPTM2u1hNV" +} diff --git a/packs/ac-ancestries-and-class/Shadow_Hound_kbPrh3KBomvQcLOn.json b/packs/ac-ancestries-and-class/Shadow_Hound_kbPrh3KBomvQcLOn.json new file mode 100644 index 0000000..18c4943 --- /dev/null +++ b/packs/ac-ancestries-and-class/Shadow_Hound_kbPrh3KBomvQcLOn.json @@ -0,0 +1,176 @@ +{ + "_id": "kbPrh3KBomvQcLOn", + "name": "Shadow Hound", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 4500000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.kbPrh3KBomvQcLOn" + } + }, + "system": { + "description": { + "gm": "", + "value": "Access You're a shadowcaster.
\nYour companion is a canine creature related to the Shadow Plane denizens known as shadow mastiffs.
\nSize Small
\nMelee
\n jaws (finesse), Damage 1d8 piercingStr +2, Dex +3, Con +1, Int -4, Wis +1, Cha +1
\nHit Points 4
\nSkill Intimidation
\nSenses darkvision, scent (imprecise) 30 feet
\nSpeed 30 feet
\nSupport Benefit Your shadow hound shrouds your foes in shadow when you leave an opening. Until the start of your next turn, when you damage a creature with a Strike and that creature is within reach of your shadow hound, both you and your shadow hound become @Compendium[pf2e.conditionitems.Concealed]{Concealed} to the creature until the end of your next turn.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.EvuMVR9ut9wIHOtq]{Bay}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:shadow-hound", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.h65iGxPkfrT8DdPv" + } + ], + "slug": "shadow-hound", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 4, + "size": "sm", + "reach": 5, + "speed": 30, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder: Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.540-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "vD7HMkL8eJh8gXaP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.kbPrh3KBomvQcLOn", + "duplicateSource": null + }, + "_key": "!items!kbPrh3KBomvQcLOn" +} diff --git a/packs/ac-ancestries-and-class/Shark_oB8ylf56HRtXE9yq.json b/packs/ac-ancestries-and-class/Shark_oB8ylf56HRtXE9yq.json new file mode 100644 index 0000000..0db0883 --- /dev/null +++ b/packs/ac-ancestries-and-class/Shark_oB8ylf56HRtXE9yq.json @@ -0,0 +1,188 @@ +{ + "_id": "oB8ylf56HRtXE9yq", + "name": "Shark", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 5000000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.oB8ylf56HRtXE9yq" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a shark of any kind, such as a hammerhead, great white, or jigsaw shark.
\nSize Small
\nMelee
\n jaws, Damage 1d8 piercingStr +3, Dex +2, Con +2, Int -4, Wis +1, Cha +0
\nHit Points 6
\nSkill Stealth
\nSenses blood scent, scent (imprecise, 60 feet)
\nSpeed swim 40 feet
\nSpecial The shark has the aquatic trait. Its blood scent enables it to smell blood in the water from up to 1 mile away.
\nSupport Benefit When your shark senses blood, it tears into your enemies. Until the start of your next turn, each time you hit a creature in the shark's reach with a Strike and deal slashing or piercing damage, the creature takes [[/r 1d8[slashing]]] damage from the shark. If your shark is nimble or savage, the slashing damage increases to [[/r 2d8]]{2d8}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.F98ajoIakyOPEuwj]{Shred}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "BaseSpeed", + "selector": "swim", + "value": 40 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 60, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:shark", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.YsLLV4J7L6fgzTXf" + } + ], + "slug": "shark", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal", + "aquatic" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 0, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "normal", + "source": { + "value": "Pathfinder Advanced Player's Guide" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.537-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.oB8ylf56HRtXE9yq", + "duplicateSource": null + }, + "_key": "!items!oB8ylf56HRtXE9yq" +} diff --git a/packs/ac-ancestries-and-class/Shotalashu_hxN1RjBfKIIMe7WF.json b/packs/ac-ancestries-and-class/Shotalashu_hxN1RjBfKIIMe7WF.json new file mode 100644 index 0000000..4e14b2d --- /dev/null +++ b/packs/ac-ancestries-and-class/Shotalashu_hxN1RjBfKIIMe7WF.json @@ -0,0 +1,180 @@ +{ + "name": "Shotalashu", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a shotalashu, a telepathic creature originally from the planet of Castrovel but now introduced in small numbers to Golarion. Acquiring a shotalashu typically requires that the prospective rider bond with it first by spending a week of time with it and succeeding on a @Check[type:occultism|dc:21] check to establish a telepathic link. A rider who fails the check can attempt it again after another week with the shotalashu for each attempt. Any creature with telepathic capabilities, such as telepathy, touch telepathy, empathic sense, or the ability to cast spells such as telepathy, gains a +4 circumstance bonus to this check. The GM is the final arbiter of whether a given ability counts as telepathy for the purposes of forming a link. This link remains, and neither can form a new link until one member dies. The shock of a bonded partner dying leaves the survivor @UUID[Compendium.pf2e.conditionitems.Item.e1XGnhKNSQIm5IXg]{Stupefied 2} for 24 hours and prevents them from forming a new link for at least a month.
\nA shotalashu has the beast trait instead of the animal trait but otherwise functions normally as an animal companion.
\nSize Medium or Large
\nMelee
\n claw (agile), Damage 1d6 slashingStr +2, Dex +3, Con +2, Int –3, Wis +1, Cha +2
\nHit Points 8
\nSkill Survival
\nSenses darkvision
\nSpeed 40 feet
\nSpecial @UUID[Compendium.pf2e.actionspf2e.Item.PM5jvValFkbFH3TV]{Mount}
\nSupport Benefit The shotalashu telepathically assails your enemies when you create an opening. Until the start of your next turn, each time you hit a creature in the shotalashu's reach with a Strike, the creature takes @Damage[1d6[mental]] damage from the shotalashu. If your shotalashu is nimble or savage, the mental damage increases to [[/r 2d6]].
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.i8RWZ5XkR6DYbOCp]{Telepathic Pounce}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.cha.mod" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "key": "FlatModifier", + "selector": "1", + "value": 1, + "type": "ability", + "ability": "int" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.claw", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/claw.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:shotalashu", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.ufAZJqCN7ZOBhMSJ" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeLarge", + "value": "lg" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + } + ], + "slug": "shotalashu", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "beast" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 8, + "size": "med", + "reach": 5, + "speed": 40, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [ + "int" + ] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision" + }, + "_id": "hxN1RjBfKIIMe7WF", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "33f07050fe0ea614117632009ea6c6ca26bf0c1f" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!hxN1RjBfKIIMe7WF" +} diff --git a/packs/ac-ancestries-and-class/Skeletal_Bird_of_Prey_vvlTOzxghrlewzB0.json b/packs/ac-ancestries-and-class/Skeletal_Bird_of_Prey_vvlTOzxghrlewzB0.json new file mode 100644 index 0000000..07413b9 --- /dev/null +++ b/packs/ac-ancestries-and-class/Skeletal_Bird_of_Prey_vvlTOzxghrlewzB0.json @@ -0,0 +1,185 @@ +{ + "_id": "vvlTOzxghrlewzB0", + "name": "Skeletal Bird of Prey", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 5500000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.vvlTOzxghrlewzB0" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is the skeleton of a bird of prey like a falcon or an owl.
\nSize Small
\nMelee
\n jaws (finesse), Damage 1d6 piercingMelee
\n talon (agile, finesse), Damage 1d4 slashingStr +2, Dex +3, Con +1, Int -5, Wis +0, Cha +0
\nHit Points 4
\nSkill none (mindless)
\nSenses darkvision
\nSpeed 10 feet, fly 50 feet
\nSpecial mindless
\nSupport Benefit The bird flaps around and throws your foe off balance. Until the start of your next turn, when you damage a creature in the bird's reach with a Strike, that creature becomes @Compendium[pf2e.conditionitems.Clumsy]{Clumsy 1} until the end of your next turn.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.ow3S5zhS51Nj8tsI]{Unnerving Screech}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -5, + "mode": "override", + "path": "system.abilities.int.mod", + "priority": 60 + }, + { + "key": "BaseSpeed", + "selector": "fly", + "value": 50 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/beak.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d4" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Talon", + "range": null, + "traits": [ + "unarmed", + "agile", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/talon.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:undead-bird-of-prey", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.bEkXle5FLNxnp3IE" + } + ], + "slug": "skeletal-bird-of-prey", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "mindless", + "minion", + "undead" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 4, + "size": "sm", + "reach": 5, + "speed": 10, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder #181: Zombie Feast" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.530-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.vvlTOzxghrlewzB0", + "duplicateSource": null + }, + "_key": "!items!vvlTOzxghrlewzB0" +} diff --git a/packs/ac-ancestries-and-class/Skeletal_Constrictor_WthugGo14WNxa3L5.json b/packs/ac-ancestries-and-class/Skeletal_Constrictor_WthugGo14WNxa3L5.json new file mode 100644 index 0000000..a54a154 --- /dev/null +++ b/packs/ac-ancestries-and-class/Skeletal_Constrictor_WthugGo14WNxa3L5.json @@ -0,0 +1,175 @@ +{ + "_id": "WthugGo14WNxa3L5", + "name": "Skeletal Constrictor", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 2700000, + "flags": { + "core": { + "sourceId": "Item.WthugGo14WNxa3L5" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is the skeleton of a constrictor snake such as a boa or python. Red lights burn deep in its eye sockets.
\nSize Small
\nMelee
\n jaws (finesse), Damage 1d8 piercingStr +2, Dex +2, Con +1, Int -5, Wis +1, Cha +0
\nHit Points 4
\nSkill none (mindless)
\nSenses darkvision
\nSpeed 20 feet, climb 20 feet, swim 20 feet
\nSpecial mindless
\nSupport Benefit Your snake sways, captivating an enemy. Choose one creature within 20 feet of the constrictor that can see it. Until the start of your next turn, your Strikes that deal damage to the chosen creature make the target @Compendium[pf2e.conditionitems.Off-Guard]{Off-Guard} until the end of your next turn.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.AH3kNbdGLYaRjVAr]{Bony Constriction}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": -5, + "mode": "override", + "path": "system.abilities.int.mod", + "priority": 60 + }, + { + "key": "BaseSpeed", + "selector": "climb", + "value": 20 + }, + { + "key": "BaseSpeed", + "selector": "swim", + "value": 20 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.Si13B4VFANZN8mi1" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:skeletal-constrictor", + "priority": 1 + } + ], + "slug": "skeletal-constrictor", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "minion", + "undead" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 4, + "size": "sm", + "reach": 5, + "speed": 20, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder #181: Zombie Feast" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.556-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.WthugGo14WNxa3L5", + "duplicateSource": null + }, + "_key": "!items!WthugGo14WNxa3L5" +} diff --git a/packs/ac-ancestries-and-class/Skeletal_Mount_DUnwMSEutz35cCvB.json b/packs/ac-ancestries-and-class/Skeletal_Mount_DUnwMSEutz35cCvB.json new file mode 100644 index 0000000..7744b94 --- /dev/null +++ b/packs/ac-ancestries-and-class/Skeletal_Mount_DUnwMSEutz35cCvB.json @@ -0,0 +1,187 @@ +{ + "_id": "DUnwMSEutz35cCvB", + "name": "Skeletal Mount", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 1500000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.DUnwMSEutz35cCvB" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a skeletal horse, drake, elk, or other animal suitable for riding. Skeletal mounts can be collapsed, gathered into piles of bone, and packed away for storage.
\nSize Large
\nMelee
\n hoof (agile), Damage 1d6 bludgeoningStr +2, Dex +2, Con +2, Int -5, Wis +0, Cha +0
\nHit Points 4
\nSkill none (mindless)
\nSenses darkvision
\nSpeed 35 feet
\nSpecial @Compendium[pf2e-animal-companions.AC-Features.CSBy1IgHTSkVAFMM]{Mindless Companion}, mount
\nSupport Benefit Your skeletal mount strikes fear when it charges. Until the start of your next turn, if you are riding your skeletal mount and move at least 10 feet on the action before your attack, any creature damaged by the attack becomes @Compendium[pf2e.conditionitems.Frightened]{Frightened 1}, or @Compendium[pf2e.conditionitems.Frightened]{Frightened 2} if the attack was a critical hit. This is an emotion, fear, and mental effect.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.tsOaXTRWQvsKTyaL]{Gallop}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -5, + "mode": "override", + "path": "system.abilities.int.mod", + "priority": 60 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Foot", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/hoof.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:skeletal-mount", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.CKMQC3zu1XoGjeNd" + }, + { + "key": "Immunity", + "type": "death-effects" + }, + { + "key": "Immunity", + "type": "disease" + }, + { + "key": "Immunity", + "type": "poison" + }, + { + "key": "Immunity", + "type": "mental" + } + ], + "slug": "skeletal-mount", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "undead" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 4, + "size": "lg", + "reach": 5, + "speed": 35, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "j9gf3": { + "img": "systems/pf2e/icons/spells/mind-of-menace.webp", + "name": "Mindless Companion", + "level": 0, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.CSBy1IgHTSkVAFMM" + }, + "cjaao": { + "img": "systems/pf2e/icons/spells/agonizing-despair.webp", + "name": "Negative Healing", + "level": 0, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.3mUx8vXEQkiIuBcR" + } + }, + "vision": "darkvision", + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.563-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.DUnwMSEutz35cCvB", + "duplicateSource": null + }, + "_key": "!items!DUnwMSEutz35cCvB" +} diff --git a/packs/ac-ancestries-and-class/Skeletal_Servant_eVcgERbL1hyeqCaW.json b/packs/ac-ancestries-and-class/Skeletal_Servant_eVcgERbL1hyeqCaW.json new file mode 100644 index 0000000..c50b16d --- /dev/null +++ b/packs/ac-ancestries-and-class/Skeletal_Servant_eVcgERbL1hyeqCaW.json @@ -0,0 +1,232 @@ +{ + "_id": "eVcgERbL1hyeqCaW", + "name": "Skeletal Servant", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 3500000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.eVcgERbL1hyeqCaW" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a humanoid skeleton, mindless but capable of assisting in rudimentary chores. Like the skeletal mount, it can be collapsed for easy storage.
\nSize Small or Medium
\nMelee
\n jaws, Damage 1d8 piercingMelee
\n claw (agile), Damage 1d6 slashingStr +2, Dex +2, Con +1, Int -5, Wis +0, Cha +1
\nHit Points 4
\nSkill none (mindless)
\nSenses darkvision
\nSpeed 20 feet
\nSpecial @Compendium[pf2e-animal-companions.AC-Features.CSBy1IgHTSkVAFMM]{Mindless Companion}
\nSupport Benefit Your skeletal servant jabs bones into your enemies to distract them while you attack. Until the start of your next turn, when a Strike you make hits and deals damage to a creature within your skeletal servant's reach, that target becomes @Compendium[pf2e.conditionitems.AJh5ex99aV6VTggg]{Off-Guard} until the end of your next turn.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.6LvtdtVVwtbzqUXG]{Screaming Skull}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -5, + "mode": "override", + "path": "system.abilities.int.mod", + "priority": 60 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Claw", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/claw.webp", + "replaceBasicUnarmed": true + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:skeletal-servant", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.bHaJZSm7SakAsk00" + }, + { + "key": "Immunity", + "type": "death-effects" + }, + { + "key": "Immunity", + "type": "disease" + }, + { + "key": "Immunity", + "type": "poison" + }, + { + "key": "Immunity", + "type": "mental" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeSmall", + "value": "sm" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + } + ], + "slug": "skeletal-servant", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "undead" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 4, + "size": "med", + "reach": 5, + "speed": 20, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "zp355": { + "img": "systems/pf2e/icons/spells/mind-of-menace.webp", + "name": "Mindless Companion", + "level": 0, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.CSBy1IgHTSkVAFMM" + }, + "4am0m": { + "img": "systems/pf2e/icons/spells/agonizing-despair.webp", + "name": "Negative Healing", + "level": 0, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.3mUx8vXEQkiIuBcR" + } + }, + "vision": "darkvision", + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.550-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.eVcgERbL1hyeqCaW", + "duplicateSource": null + }, + "_key": "!items!eVcgERbL1hyeqCaW" +} diff --git a/packs/ac-ancestries-and-class/Snake_MpqwqLf7AaLOfyZh.json b/packs/ac-ancestries-and-class/Snake_MpqwqLf7AaLOfyZh.json new file mode 100644 index 0000000..3864ec1 --- /dev/null +++ b/packs/ac-ancestries-and-class/Snake_MpqwqLf7AaLOfyZh.json @@ -0,0 +1,195 @@ +{ + "_id": "MpqwqLf7AaLOfyZh", + "name": "Snake", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 1900000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.MpqwqLf7AaLOfyZh" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a constrictor snake, such as a boa or python.
\nSize Small
\nMelee
\n jaws (finesse), Damage 1d8 piercingStr +3, Dex +3, Con +1, Int -4, Wis +1, Cha +0
\nHit Points 6
\nSkill Stealth
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 20 feet, climb 20 feet, swim 20 feet
\nSupport Benefit Your snake holds your enemies with its coils, interfering with reactions. Until the start of your next turn, any creature your snake threatens can't use reactions triggered by your actions unless its level is higher than yours.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.kKW68gi1FNJlNSOp]{Constrict}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "BaseSpeed", + "selector": "climb", + "value": 20 + }, + { + "key": "BaseSpeed", + "selector": "swim", + "value": 20 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:snake", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.trujzLuDqjQ7nJEO" + } + ], + "slug": "snake", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 20, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Core Rulebook" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.561-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {}, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.MpqwqLf7AaLOfyZh", + "duplicateSource": null + }, + "_key": "!items!MpqwqLf7AaLOfyZh" +} diff --git a/packs/ac-ancestries-and-class/Terror_Bird_wcS3dKMoIxc77rtp.json b/packs/ac-ancestries-and-class/Terror_Bird_wcS3dKMoIxc77rtp.json new file mode 100644 index 0000000..ec1f086 --- /dev/null +++ b/packs/ac-ancestries-and-class/Terror_Bird_wcS3dKMoIxc77rtp.json @@ -0,0 +1,188 @@ +{ + "_id": "wcS3dKMoIxc77rtp", + "name": "Terror Bird", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 5700000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8gSeDqJLLQRlQWis" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a terror bird, a large species of flightless carnivorous avian.
\nSize Large
\nMelee
\n beak, Damage 1d8 piercingMelee
\n talon (agile), Damage 1d6 piercingStr +3, Dex +2, Con +2, Int -4, Wis +1, Cha +0
\nHit Points 8
\nSkill Survival
\nSenses low-light vision
\nSpeed 40 feet
\nSpecial mount
\nSupport Benefit Your terror bird screeches at your enemies when you create an opening. Until the start of your next turn, your Strikes that deal damage to a creature within your terror bird's reach make the target @Compendium[pf2e.conditionitems.Off-Guard]{Off-Guard} until the start of your next turn.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.TCEQtO5DawzVAIyT]{Tearing Clutch}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Beak", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/beak.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Talon", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/talon.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:terror-bird", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.oLwBrrW33fIjSHLr" + } + ], + "slug": "terror-bird", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "lg", + "reach": 5, + "speed": 40, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Lost Omens: Grand Bazaar" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.528-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8gSeDqJLLQRlQWis", + "duplicateSource": null + }, + "_key": "!items!wcS3dKMoIxc77rtp" +} diff --git a/packs/ac-ancestries-and-class/Triceratops_UwzROlMRrkPDrWjk.json b/packs/ac-ancestries-and-class/Triceratops_UwzROlMRrkPDrWjk.json new file mode 100644 index 0000000..cd0936d --- /dev/null +++ b/packs/ac-ancestries-and-class/Triceratops_UwzROlMRrkPDrWjk.json @@ -0,0 +1,185 @@ +{ + "_id": "UwzROlMRrkPDrWjk", + "name": "Triceratops", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 2600000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.UwzROlMRrkPDrWjk" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a triceratops or other armored dinosaur. If necessary, change the horn attack and damage type to an appropriate attack for the dinosaur (for example, an ankylosaurus would have a tail attack that deals bludgeoning damage).
\nSize Large
\nMelee
\n horn, Damage 1d8 piercingMelee
\n foot, Damage 1d6 bludgeoningStr +3, Dex +1, Con +2, Int -4, Wis +2, Cha +0
\nHit Points 8
\nSkill Intimidation
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 25 feet
\nSpecial mount
\nSupport Benefit Your triceratops gores @Compendium[pf2e.conditionitems.Prone]{Prone} targets in your wake. Until the start of your next turn, your Strikes that damage a prone creature in your triceratops's reach also deal [[/r 1d8[persistent,bleed]]] damage. If your triceratops is nimble or savage, the persistent bleed damage increases to [[/r 2d8]]{2d8}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.H1ElYt6KovGYGzLD]{Lumbering Knockdown}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Horn", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/horn.webp", + "replaceBasicUnarmed": true + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Foot", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/foot.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:triceratops", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.TDMhLC16cQOYBbmA" + } + ], + "slug": "triceratops", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "lg", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder #177: Burning Tundra" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.557-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.UwzROlMRrkPDrWjk", + "duplicateSource": null + }, + "_key": "!items!UwzROlMRrkPDrWjk" +} diff --git a/packs/ac-ancestries-and-class/Tyrannosaurus_Nab2afki863WAtBG.json b/packs/ac-ancestries-and-class/Tyrannosaurus_Nab2afki863WAtBG.json new file mode 100644 index 0000000..7ae0c33 --- /dev/null +++ b/packs/ac-ancestries-and-class/Tyrannosaurus_Nab2afki863WAtBG.json @@ -0,0 +1,184 @@ +{ + "_id": "Nab2afki863WAtBG", + "name": "Tyrannosaurus", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 2000000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.Nab2afki863WAtBG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a tyrannosaurus, allosaurus, or similar large, carnivorous dinosaur.
\nSize Large
\nMelee
\n jaws, Damage 1d8 piercingMelee
\n foot, Damage 1d6 bludgeoningStr +3, Dex +1, Con +3, Int -4, Wis +1, Cha +0
\nHit Points 8
\nSkill Intimidation
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 35 feet
\nSupport Benefit Your tyrannosaurus roars and puts on a fearsome display as you attack, startling your foes. Until the start of your next turn, if you hit and deal damage to a creature within your tyrannosaurus's reach, the creature is @Compendium[pf2e.conditionitems.Frightened]{Frightened 1}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.yXw82Zd5nkcCUfRQ]{Overwhelm}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Foot", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/foot.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:tyrannosaurus", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.XrxIRaD1A5tpKm1t" + } + ], + "slug": "tyrannosaurus", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "lg", + "reach": 5, + "speed": 35, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder #177: Burning Tundra" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.560-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.Nab2afki863WAtBG", + "duplicateSource": null + }, + "_key": "!items!Nab2afki863WAtBG" +} diff --git a/packs/ac-ancestries-and-class/Ulgrem_Lurann_jUYTm3wUR0GX1zfO.json b/packs/ac-ancestries-and-class/Ulgrem_Lurann_jUYTm3wUR0GX1zfO.json new file mode 100644 index 0000000..0cbac5c --- /dev/null +++ b/packs/ac-ancestries-and-class/Ulgrem_Lurann_jUYTm3wUR0GX1zfO.json @@ -0,0 +1,201 @@ +{ + "_id": "jUYTm3wUR0GX1zfO", + "name": "Ulgrem-Lurann", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 4200000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.vbBkKVl9tgnVasFU" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is one of the few surviving members of a formerly lost species, hatched from the last clutch of Ulgrem-Axaan. As it's so young, its intelligence hasn't developed yet, but some day, it will become a highly intelligent creature. An Ulgrem-Lurann has the beast trait instead of the animal trait but otherwise functions normally as an animal companion.
\nSize Medium
\nMelee
\n jaws, Damage 1d8 piercingMelee
\n tail, Damage 1d6 bludgeoningStr +3, Dex +2, Con +2, Int -4, Wis 0, Cha +1
\nHit Points 6
\nSkill Intimidation
\nSenses darkvision
\nSpeed 20 feet, swim 25 feet
\nSpecial The Ulgrem-Lurann has the amphibious trait.
\nSupport Benefit The Ulgrem-Lurann grabs at your foe and zaps it. Until the start of your next turn, each time you hit a creature in the Ulgrem-Lurann's reach with a Strike, the creature takes an additional [[/r 1d4[piercing]]] damage and [[/r 1d4[electricity]]] damage from the Ulgrem-Lurann. If the Ulgrem-Lurann is nimble or savage, the piercing damage and electricity damage each increase to [[/r 2d4]]{2d4}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.Upr7u0KhPAIMOqXv]{Snatch and Zap}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.cha.mod" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Tail", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/tail.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "BaseSpeed", + "selector": "swim", + "value": "25" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:ulgrem-lurann", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.uZLtEOimbFnEDUKh" + } + ], + "slug": "ulgrem-lurann", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "amphibious", + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "med", + "reach": 5, + "speed": 20, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder Lost Omens: Monsters of Myth" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.542-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.vbBkKVl9tgnVasFU", + "duplicateSource": null + }, + "_key": "!items!jUYTm3wUR0GX1zfO" +} diff --git a/packs/ac-ancestries-and-class/Umbrella_Mushroom_UAYfpvQykPEDngco.json b/packs/ac-ancestries-and-class/Umbrella_Mushroom_UAYfpvQykPEDngco.json new file mode 100644 index 0000000..d9ab320 --- /dev/null +++ b/packs/ac-ancestries-and-class/Umbrella_Mushroom_UAYfpvQykPEDngco.json @@ -0,0 +1,153 @@ +{ + "name": "Umbrella Mushroom", + "type": "ancestry", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your companion is a wide-capped mushroom capable of floating on air currents. A loop at the base of the stem acts as a stirrup for riding. An umbrella mushroom has the fungus trait instead of the animal trait, but it otherwise functions normally as an animal companion.
\nSize Large
\nMelee
\n stalk, Damage 1d8 bludgeoningStr +2, Dex +2, Con +3, Int –4, Wis +1, Cha +0
\nHit Points 6
\nSkill Stealth
\nSenses low-light vision
\nSpeed 15 feet, fly 30 feet
\nSpecial @UUID[Compendium.pf2e.actionspf2e.Item.PM5jvValFkbFH3TV]{Mount}; when you use Command an Animal to command your umbrella mushroom, it gains a reaction it can only use for its Float advanced maneuver
\nSupport Benefit Your umbrella mushroom exudes sense dulling spores when you create an opening. Until the start of your next turn, your Strikes that damage a creature within your umbrella mushroom's reach becomes @UUID[Compendium.pf2e.conditionitems.Item.e1XGnhKNSQIm5IXg]{Stupefied 1} for 1 round. This effect has the poison trait.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.VSsW37hmpmXNOUwd]{Float}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "BaseSpeed", + "selector": "fly", + "value": 30 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "Stalk", + "range": null, + "traits": [ + "unarmed" + ], + "img": "icons/magic/nature/mushrooms-fire-glow-blue.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:umbrella-mushroom", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.XVOVZjvTwaoalpWC" + } + ], + "slug": "umbrella-mushroom", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "fungus" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "hp": 6, + "size": "lg", + "reach": 5, + "speed": 15, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "common" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "low-light-vision" + }, + "_id": "UAYfpvQykPEDngco", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "4435bc44c4fb1e2d44bf9477bd90882ec4d28d74" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!UAYfpvQykPEDngco" +} diff --git a/packs/ac-ancestries-and-class/Undead_Hand_8an4Nsuh2Md5wWHI.json b/packs/ac-ancestries-and-class/Undead_Hand_8an4Nsuh2Md5wWHI.json new file mode 100644 index 0000000..56f3525 --- /dev/null +++ b/packs/ac-ancestries-and-class/Undead_Hand_8an4Nsuh2Md5wWHI.json @@ -0,0 +1,170 @@ +{ + "_id": "8an4Nsuh2Md5wWHI", + "name": "Undead Hand", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 1000000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8an4Nsuh2Md5wWHI" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a large skeletal or fleshy humanoid hand, similar to a giant crawling hand (Pathfinder Bestiary 2 56).
\nSize Small
\nMelee
\n claw (agile, finesse), Damage 1d6 slashingStr +2, Dex +2, Con +1, Int -5, Wis +1, Cha +0
\nHit Points 4
\nSkill none (mindless)
\nSenses darkvision
\nSpeed 20 feet, climb 20 feet
\nSpecial mindless
\nSupport Benefit The hand viciously batters the foes you attack. Until the start of your next turn, each time you hit a creature in the hand's reach with a Strike, the creature takes [[/r 1d6[bludgeoning]]] damage from the hand. If your hand is nimble or savage, the bludgeoning damage increases to [[/r 2d6]]{2d6}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.MQv67R7KBIrJkshN]{Grip Throat}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -5, + "mode": "override", + "path": "system.abilities.int.mod", + "priority": 60 + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.claw", + "range": null, + "traits": [ + "unarmed", + "agile", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/claw.webp" + }, + { + "key": "BaseSpeed", + "selector": "climb", + "value": 20 + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:undead-hand", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.imNJpD4afn4UrLpu" + } + ], + "slug": "undead-hand", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "minion", + "undead" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 4, + "size": "sm", + "reach": 5, + "speed": 20, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder #181: Zombie Feast" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.568-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.8an4Nsuh2Md5wWHI", + "duplicateSource": null + }, + "_key": "!items!8an4Nsuh2Md5wWHI" +} diff --git a/packs/ac-ancestries-and-class/Vampiric_Animal_hynwj4kRnb7yLNGu.json b/packs/ac-ancestries-and-class/Vampiric_Animal_hynwj4kRnb7yLNGu.json new file mode 100644 index 0000000..451bacd --- /dev/null +++ b/packs/ac-ancestries-and-class/Vampiric_Animal_hynwj4kRnb7yLNGu.json @@ -0,0 +1,208 @@ +{ + "_id": "hynwj4kRnb7yLNGu", + "name": "Vampiric Animal", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 3700000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.hynwj4kRnb7yLNGu" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a wolf, weasel, fox, or other predator with fangs and the blood thirst of a vampire. They often serve vampires who willingly shared their blood to bind the animal to their vampiric whims.
\nSize Small or Medium
\nMelee
\n jaws (finesse), Damage 1d8 piercingStr +2, Dex +2, Con +1, Int -4, Wis +1, Cha +0
\nHit Points 4
\nSkill Survival
\nSenses low‑light vision, scent (imprecise 30 feet)
\nSpeed 30 feet
\nSpecial Vampiric animal companions are particularly attuned to the scent of blood. If a creature has persistent bleed damage, your vampiric animal companion can smell the creature if it's within 120 feet rather than 30 feet.
\nSupport Benefit When your vampiric animal senses blood it tears into your enemies. Until the start of your next turn, your Strikes that damage a creature in your vampiric animal's reach also deal [[/r 1d6[persistent,bleed]]] damage. If your vampiric animal is nimble or savage, the persistent bleed damage increases to [[/r 2d6]]{2d6}.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.cVrW2GGLVpydj8h5]{Blood Feast}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:vampiric-animal", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.3jZOVJsYwBQ7GPDi" + }, + { + "key": "Immunity", + "type": "death-effects" + }, + { + "key": "Immunity", + "type": "disease" + }, + { + "key": "Immunity", + "type": "poison" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeSmall", + "value": "sm" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + } + ], + "slug": "vampiric-animal", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "undead" + ], + "rarity": "rare" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 4, + "size": "med", + "reach": 5, + "speed": 30, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "c8kd4": { + "img": "systems/pf2e/icons/spells/agonizing-despair.webp", + "name": "Negative Healing", + "level": 0, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.3mUx8vXEQkiIuBcR" + } + }, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.547-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.hynwj4kRnb7yLNGu", + "duplicateSource": null + }, + "_key": "!items!hynwj4kRnb7yLNGu" +} diff --git a/packs/ac-ancestries-and-class/Vulture_a9luOko3LqrhIe2k.json b/packs/ac-ancestries-and-class/Vulture_a9luOko3LqrhIe2k.json new file mode 100644 index 0000000..509c4f3 --- /dev/null +++ b/packs/ac-ancestries-and-class/Vulture_a9luOko3LqrhIe2k.json @@ -0,0 +1,222 @@ +{ + "_id": "a9luOko3LqrhIe2k", + "name": "Vulture", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 3200000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.a9luOko3LqrhIe2k" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a vulture, condor, or other large scavenging bird.
\nSize Small
\nMelee
\n jaws (finesse), Damage 1d8 piercingStr +2, Dex +2, Con +2, Int -4, Wis +2, Cha +0
\nHit Points 6
\nSkill Survival
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 10 feet, fly 45 feet
\nSpecial Your vulture gains a +1 status bonus to all saves against disease, and if it rolls a success on a save against a disease, the result is a critical success instead.
\nSupport Benefit The vulture retches and vomits onto a foe within 10 feet. Until the start of your next turn, if you hit and deal damage to the target, the target must succeed at a Fortitude save or become @Compendium[pf2e.conditionitems.Sickened]{Sickened 1} (@Compendium[pf2e.conditionitems.Sickened]{Sickened 2} on a critical failure). The DC of the Fortitude save is 12 (or 14, if the vulture is a specialized animal companion) + your level + the vulture's Constitution modifier.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.g4JEtCnKXyY4LJpm]{Feast on the Fallen}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "BaseSpeed", + "selector": "fly", + "value": 45 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "key": "Note", + "selector": "saving-throw", + "text": "Vulture When your vulture rolls a success on a save against a disease, the result is a critical success instead.
", + "predicate": [ + "disease" + ], + "outcome": [ + "success" + ], + "title": "" + }, + { + "key": "FlatModifier", + "selector": "saving-throw", + "value": 1, + "type": "status", + "predicate": [ + "disease" + ] + }, + { + "key": "AdjustDegreeOfSuccess", + "type": "save", + "selector": "saving-throw", + "adjustment": { + "success": "one-degree-better" + }, + "predicate": [ + "disease" + ] + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:vulture", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.QEZUnvbdrgQJAUs0" + } + ], + "slug": "vulture", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 10, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder #149: Against the Scarlet Triad" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.553-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {}, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.a9luOko3LqrhIe2k", + "duplicateSource": null + }, + "_key": "!items!a9luOko3LqrhIe2k" +} diff --git a/packs/ac-ancestries-and-class/Water_Elemental_mdbWMaCPpShOKrmR.json b/packs/ac-ancestries-and-class/Water_Elemental_mdbWMaCPpShOKrmR.json new file mode 100644 index 0000000..1ae44cf --- /dev/null +++ b/packs/ac-ancestries-and-class/Water_Elemental_mdbWMaCPpShOKrmR.json @@ -0,0 +1,168 @@ +{ + "name": "Water Elemental", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "flags": { + "core": {} + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a water elemental, such as a brine shark.
\nAccess You are a member of the wave order SoM .
\nSize Small
\nMelee
\n wave, Damage 1d8 bludgeoningStr +2, Dex +2, Con +1, Int –4, Wis +1, Cha +0
\nHit Points 6
\nSkill Survival
\nSenses darkvision
\nSpeed 15 feet, swim 35 feet
\nSpecial Resistances fire (equal to the water elemental's level)
\nSupport Benefit Your water elemental waterlogs a foe. The first time before the start of your next turn you hit with a Strike that deals damage to a creature within your water elemental's reach, that creature becomes @UUID[Compendium.pf2e.conditionitems.Item.i3OJZU2nk64Df3xm]{Clumsy 1} until the end of your next turn.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.x4clojDNIvYB5V7X]{Drench}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Wave", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/spells/crashing-wave.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:water-elemental", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.BFvS1wnFxgUqgX8m", + "allowDuplicate": false + }, + { + "key": "Resistance", + "type": "fire", + "value": "@actor.level" + } + ], + "slug": "ankylosaurus", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "elemental", + "water" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.556-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "mdbWMaCPpShOKrmR", + "folder": null, + "sort": 4800000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!mdbWMaCPpShOKrmR" +} diff --git a/packs/ac-ancestries-and-class/Water_Wraith_KMHnOhuO57vnUHZH.json b/packs/ac-ancestries-and-class/Water_Wraith_KMHnOhuO57vnUHZH.json new file mode 100644 index 0000000..5b2a0bc --- /dev/null +++ b/packs/ac-ancestries-and-class/Water_Wraith_KMHnOhuO57vnUHZH.json @@ -0,0 +1,193 @@ +{ + "name": "Water Wraith", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.eBgMfYf0PVbsGOYp" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a water wraith, an amphibious and expressive lizard capable of changing the color of its scales as it pleases. While your companion hasn't yet matured into its full strength and intelligence, it still serves you with admirable tenacity and loyalty, not to mention its lamprey-like mouth of lacerating teeth and eight clawed, slashing feet.
\nSize Small
\nSkill Survival
\nStr +3, Dex +2, Con +2, Int –4, Wis +1, Cha +0 HP 6
\nSpeed 20 feet, swim 25 feet
\nMelee
\n jaws, Damage 1d8 piercingMelee
\n claw (agile), Damage 1d6 slashingSpecial The water wraith can hold its breath for about 2 hours.
\nSupport Benefit Your water wraith hisses and changes colors swiftly in an iridescent clash, overwhelming your foes in an avalanche of shades and hues. Until the start of your next turn, each time you hit a creature within your water wraith's reach, the creature is @Compendium[pf2e.conditionitems.Dazzled]{Dazzled} for 1 round.
\nAdvanced Maneuver Gulp Blood
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "key": "BaseSpeed", + "value": 25, + "selector": "swim" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "slashing", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.claw", + "range": null, + "traits": [ + "unarmed", + "agile" + ], + "img": "systems/pf2e/icons/unarmed-attacks/claw.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:water-wraith", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.IUXX1lUd9kMzV4bq" + } + ], + "slug": "water-wraith", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 20, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Core Rulebook" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.563-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.eBgMfYf0PVbsGOYp", + "duplicateSource": null + }, + "folder": null, + "sort": 1600000, + "_id": "KMHnOhuO57vnUHZH", + "_key": "!items!KMHnOhuO57vnUHZH" +} diff --git a/packs/ac-ancestries-and-class/Wolf_vbBkKVl9tgnVasFU.json b/packs/ac-ancestries-and-class/Wolf_vbBkKVl9tgnVasFU.json new file mode 100644 index 0000000..5539265 --- /dev/null +++ b/packs/ac-ancestries-and-class/Wolf_vbBkKVl9tgnVasFU.json @@ -0,0 +1,185 @@ +{ + "_id": "vbBkKVl9tgnVasFU", + "name": "Wolf", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 5400000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.vbBkKVl9tgnVasFU" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a wolf or other canine creature, such as a dog.
\nSize Small
\nMelee
\n jaws (finesse), Damage 1d8 piercingStr +2, Dex +3, Con +2, Int -4, Wis +1, Cha +0
\nHit Points 6
\nSkill Survival
\nSenses low-light vision, scent (imprecise, 30 feet)
\nSpeed 40 feet
\nSupport Benefit Your wolf tears tendons with each opening. Until the start of your next turn, your Strikes that damage creatures your wolf threatens give the target a -5-foot status penalty to its Speeds for 1 minute (-10 on a critical success).
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.xssFjTXqGlsaddvl]{Knockdown}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed", + "finesse" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:wolf", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.5HnWXmOp8qNjfhdU", + "allowDuplicate": false + } + ], + "slug": "wolf", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "animal" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 40, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Core Rulebook" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.531-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "rDxs69lNqIFN75Bl": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.vbBkKVl9tgnVasFU", + "duplicateSource": null + }, + "_key": "!items!vbBkKVl9tgnVasFU" +} diff --git a/packs/ac-ancestries-and-class/Wood_Elemental_S0VK8tj0rOTR2MIe.json b/packs/ac-ancestries-and-class/Wood_Elemental_S0VK8tj0rOTR2MIe.json new file mode 100644 index 0000000..0870ff3 --- /dev/null +++ b/packs/ac-ancestries-and-class/Wood_Elemental_S0VK8tj0rOTR2MIe.json @@ -0,0 +1,169 @@ +{ + "name": "Wood Elemental", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "flags": { + "core": {} + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a wood elemental, such as a moss sloth.
\nAccess You are a member of the leaf order.
\nSize Small
\nMelee
\n branch, Damage 1d8 bludgeoningStr +2, Dex +1, Con +2, Int –4, Wis +1, Cha +0
\nHit Points 8
\nSkill Survival
\nSenses darkvision
\nSpeed 25 feet, climb 25 feet
\nSupport Benefit Your wood elemental entangles your foes with detachable branches and roots. Until the start of your next turn, if you hit with a Strike that deals damage to a creature in your wood elemental's reach, the creature takes a –5-foot circumstance penalty to its speeds for 1 minute (–10 on a critical success). The creature, or a creature adjacent to it, can use an Interact action to unravel the branches and roots and remove the penalty.
\nAdvanced Maneuver @UUID[Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.gvOo0KSSHkqfW3j5]{Grabbing Branches}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Branch", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/branch.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:wood-elemental", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.KomM6mTwJAzvqAgi", + "allowDuplicate": false + }, + { + "key": "BaseSpeed", + "selector": "climb", + "value": 25 + } + ], + "slug": "ankylosaurus", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "elemental", + "plant", + "wood" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "sm", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.556-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "S0VK8tj0rOTR2MIe", + "folder": null, + "sort": 2400000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!S0VK8tj0rOTR2MIe" +} diff --git a/packs/ac-ancestries-and-class/Zombie_Carrion_Bird_ikbae8cDXga00PbG.json b/packs/ac-ancestries-and-class/Zombie_Carrion_Bird_ikbae8cDXga00PbG.json new file mode 100644 index 0000000..2bf4078 --- /dev/null +++ b/packs/ac-ancestries-and-class/Zombie_Carrion_Bird_ikbae8cDXga00PbG.json @@ -0,0 +1,163 @@ +{ + "_id": "ikbae8cDXga00PbG", + "name": "Zombie Carrion Bird", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 3900000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.ikbae8cDXga00PbG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is the zombified corpse of a large scavenging bird, such as a vulture or a raven, that subsists upon meat.
\nSize Small
\nMelee
\n jaws, Damage 1d8 piercingStr +2, Dex +1, Con +3, Int -5, Wis +0, Cha +0
\nHit Points 6
\nSkill none (mindless)
\nSenses darkvision
\nSpeed 10 feet, fly 30 feet
\nSpecial mindless
\nSupport Benefit The zombie emits an aura of rot, causing wounds to fester. Until the start of your next turn, each time you hit and deal damage to a creature that's within 10 feet of the zombie carrion bird, the creature takes an additional 1d6 damage as the wound festers. If your carrion bird is nimble or savage, the damage increases to [[/r 2d6]]{2d6}. This is a disease and necromancy effect.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.9o7NwxGqohpa9M7r]{Pick at the Meat}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -5, + "mode": "override", + "path": "system.abilities.int.mod", + "priority": 60 + }, + { + "key": "BaseSpeed", + "selector": "fly", + "value": 30 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Weapon.Base.jaws", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/jaws.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:zombie-carrion-bird", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.zE01vpjowhoKygig" + } + ], + "slug": "zombie-carrion-bird", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "minion", + "undead" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 6, + "size": "sm", + "reach": 5, + "speed": 10, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder #181: Zombie Feast" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.545-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.ikbae8cDXga00PbG", + "duplicateSource": null + }, + "_key": "!items!ikbae8cDXga00PbG" +} diff --git a/packs/ac-ancestries-and-class/Zombie_Mount_Mld98WoM7R1wOQtX.json b/packs/ac-ancestries-and-class/Zombie_Mount_Mld98WoM7R1wOQtX.json new file mode 100644 index 0000000..48fb157 --- /dev/null +++ b/packs/ac-ancestries-and-class/Zombie_Mount_Mld98WoM7R1wOQtX.json @@ -0,0 +1,158 @@ +{ + "_id": "Mld98WoM7R1wOQtX", + "name": "Zombie Mount", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 1800000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.Mld98WoM7R1wOQtX" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is the rotting, reanimated corpse of a horse, camel, or similar riding animal.
\nSize Large
\nMelee
\n hoof, Damage 1d8 bludgeoningStr +2, Dex +1, Con +3, Int -5, Wis +0, Cha +0
\nHit Points 8
\nSkill none (see Special)
\nSenses darkvision
\nSpeed 30 feet
\nSpecial mindless, mount
\nSupport Benefit Your zombie mount chews on your enemies. Until the start of your next turn, each time you Strike while riding the zombie mount and hit a creature in the zombie mount's reach, the creature takes [[/r 1d4[bludgeoning]]] damage from the zombie mount. If your zombie mount is nimble or savage, the bludgeoning damage increases to [[/r 2d4]]{2d4}. This benefit is based on a zombie horse or camel, but might deal piercing damage if your mount has sharp teeth.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.h1Rldre8WVjUR5XO]{Disgusting Gallop}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -5, + "mode": "override", + "path": "system.abilities.int.mod", + "priority": 60 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.BattleForm.Attack.Hoof", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/foot.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:zombie-mount", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.N9fYaUuIgD6RQ7CY" + } + ], + "slug": "zombie-mount", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "minion", + "undead" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 8, + "size": "lg", + "reach": 5, + "speed": 30, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": {}, + "vision": "darkvision", + "source": { + "value": "Pathfinder #181: Zombie Feast" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.562-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.Mld98WoM7R1wOQtX", + "duplicateSource": null + }, + "_key": "!items!Mld98WoM7R1wOQtX" +} diff --git a/packs/ac-ancestries-and-class/Zombie_xiSoZz2JHX095nHo.json b/packs/ac-ancestries-and-class/Zombie_xiSoZz2JHX095nHo.json new file mode 100644 index 0000000..13fe35c --- /dev/null +++ b/packs/ac-ancestries-and-class/Zombie_xiSoZz2JHX095nHo.json @@ -0,0 +1,204 @@ +{ + "_id": "xiSoZz2JHX095nHo", + "name": "Zombie", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 5900000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.xiSoZz2JHX095nHo" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your companion is a mindless zombie created from a soulless dead body, be it animal or humanoid. The stats below list a fist Strike, but this can be replaced by a claw or similar option better suited to the creature's form.
\nSize Small or Medium
\nMelee
\n fist, Damage 1d8 piercingStr +2, Dex +0, Con +4, Int -5, Wis +0, Cha +0
\nHit Points 10
\nSkill none (mindless)
\nSenses darkvision
\nSpeed 20 feet
\nSpecial @Compendium[pf2e-animal-companions.AC-Features.CSBy1IgHTSkVAFMM]{Mindless Companion}
\nSupport Benefit The zombie emits an aura of rot, causing wounds to fester. Until the start of your next turn, each time you hit a creature that's within 10 feet of the zombie and you deal damage, the creature takes an additional 1d6 damage as the wound festers. If your zombie is nimble or savage, the damage increases to [[/r 2d6]]{2d6}. This is a disease and necromancy effect.
\nAdvanced Maneuver @Compendium[pf2e-animal-companions.AC-Advanced-Maneuvers.LaBfTYUsvoI3nscv]{Take a Taste}
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -5, + "mode": "override", + "path": "system.abilities.int.mod", + "priority": 60 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KKOgokqHa7RjVDN6", + "allowDuplicate": false + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "piercing", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "label": "PF2E.Strike.Fist.Label", + "range": null, + "traits": [ + "unarmed" + ], + "img": "systems/pf2e/icons/unarmed-attacks/fist.webp", + "replaceBasicUnarmed": true + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:ancestry:zombie", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Support.Item.yAYlM3aIRYnqx6j8", + "allowDuplicate": false + }, + { + "key": "Immunity", + "type": "death-effects" + }, + { + "key": "Immunity", + "type": "disease" + }, + { + "key": "Immunity", + "type": "poison" + }, + { + "key": "Immunity", + "type": "mental" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeSmall", + "value": "sm" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + } + ], + "slug": "zombie", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "undead" + ], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 10, + "size": "med", + "reach": 5, + "speed": 20, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "7mqwg": { + "img": "systems/pf2e/icons/spells/mind-of-menace.webp", + "name": "Mindless Companion", + "level": 0, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.CSBy1IgHTSkVAFMM" + }, + "7a9lj": { + "img": "systems/pf2e/icons/spells/agonizing-despair.webp", + "name": "Negative Healing", + "level": 0, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.3mUx8vXEQkiIuBcR" + } + }, + "vision": "darkvision", + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:44.521-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "voluntaryBoosts": {}, + "voluntaryFlaws": {} + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.xiSoZz2JHX095nHo", + "duplicateSource": null + }, + "_key": "!items!xiSoZz2JHX095nHo" +} diff --git a/packs/ac-construct-breakthroughs/000233.ldb b/packs/ac-construct-breakthroughs/000233.ldb deleted file mode 100644 index fc39250..0000000 Binary files a/packs/ac-construct-breakthroughs/000233.ldb and /dev/null differ diff --git a/packs/ac-construct-breakthroughs/Accelerated_Mobility_CxT9zcqn7LV2eMHZ.json b/packs/ac-construct-breakthroughs/Accelerated_Mobility_CxT9zcqn7LV2eMHZ.json new file mode 100644 index 0000000..5e9a8cf --- /dev/null +++ b/packs/ac-construct-breakthroughs/Accelerated_Mobility_CxT9zcqn7LV2eMHZ.json @@ -0,0 +1,86 @@ +{ + "_id": "CxT9zcqn7LV2eMHZ", + "name": "Accelerated Mobility", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.CxT9zcqn7LV2eMHZ" + } + }, + "system": { + "description": { + "gm": "", + "value": "Actuated legs, efficient gears in the wheels or treads, or add-on boosters make your construct faster. Your innovation's Speed increases to 40 feet.
" + }, + "rules": [ + { + "key": "BaseSpeed", + "selector": "land", + "value": 40, + "priority": 1 + } + ], + "slug": "accelerated-mobility", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.829-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.CxT9zcqn7LV2eMHZ", + "duplicateSource": null + }, + "_key": "!items!CxT9zcqn7LV2eMHZ" +} diff --git a/packs/ac-construct-breakthroughs/Advanced_Weaponry_djv1KiWWTOajTsCk.json b/packs/ac-construct-breakthroughs/Advanced_Weaponry_djv1KiWWTOajTsCk.json new file mode 100644 index 0000000..5558102 --- /dev/null +++ b/packs/ac-construct-breakthroughs/Advanced_Weaponry_djv1KiWWTOajTsCk.json @@ -0,0 +1,79 @@ +{ + "_id": "djv1KiWWTOajTsCk", + "name": "Advanced Weaponry", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.djv1KiWWTOajTsCk" + } + }, + "system": { + "description": { + "gm": "", + "value": "You've powered up your construct's weaponry. Choose one of your construct's unarmed attacks to gain your choice of one initial weapon modification, chosen from the list on page 18 or from other initial weapon modifications to which you have access. The unarmed attack must meet any requirements for the chosen traits (such as being a melee attack for entangling form), and since it's an unarmed attack, it can never meet certain requirements, such as being a simple weapon for complex simplicity.
\nNote: Weapon Modifications are not in this module or the system currently, the strike rule elements on the appropriate feature can be modified to apply the modifications.
" + }, + "rules": [], + "slug": "advanced-weaponry", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.826-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.djv1KiWWTOajTsCk", + "duplicateSource": null + }, + "_key": "!items!djv1KiWWTOajTsCk" +} diff --git a/packs/ac-construct-breakthroughs/Amphibious_Construct_O6kII65D6nqbbHtO.json b/packs/ac-construct-breakthroughs/Amphibious_Construct_O6kII65D6nqbbHtO.json new file mode 100644 index 0000000..e8bcbdb --- /dev/null +++ b/packs/ac-construct-breakthroughs/Amphibious_Construct_O6kII65D6nqbbHtO.json @@ -0,0 +1,85 @@ +{ + "_id": "O6kII65D6nqbbHtO", + "name": "Amphibious Construct", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.O6kII65D6nqbbHtO" + } + }, + "system": { + "description": { + "gm": "", + "value": "Increased buoyancy, rudders, and a means of propulsion like a fluked tail or powerful propeller make your construct able to travel in water. Your innovation gains a swim Speed of 25 feet.
" + }, + "rules": [ + { + "key": "BaseSpeed", + "selector": "swim", + "value": 25 + } + ], + "slug": "amphibious-construct", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.828-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.O6kII65D6nqbbHtO", + "duplicateSource": null + }, + "_key": "!items!O6kII65D6nqbbHtO" +} diff --git a/packs/ac-construct-breakthroughs/Antimagic_Construction_cYu2Rf6SiyAhtsr2.json b/packs/ac-construct-breakthroughs/Antimagic_Construction_cYu2Rf6SiyAhtsr2.json new file mode 100644 index 0000000..ca95410 --- /dev/null +++ b/packs/ac-construct-breakthroughs/Antimagic_Construction_cYu2Rf6SiyAhtsr2.json @@ -0,0 +1,98 @@ +{ + "_id": "cYu2Rf6SiyAhtsr2", + "name": "Antimagic Construction", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.cYu2Rf6SiyAhtsr2" + } + }, + "system": { + "description": { + "gm": "", + "value": "Whether you used some clever adaptation of the magic-negating skymetal known as noqual or created magical protections entirely of your own devising, you've made your innovation highly resilient to spells. Your construct innovation gains a +2 circumstance bonus to all saving throws and AC against spells.
" + }, + "rules": [ + { + "key": "FlatModifier", + "selector": "saving-throw", + "predicate": [ + "spell" + ], + "value": 2, + "type": "circumstance" + }, + { + "key": "FlatModifier", + "selector": "ac", + "predicate": [ + "spell" + ], + "value": 2, + "type": "circumstance" + } + ], + "slug": "antimagic-construction", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.827-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.cYu2Rf6SiyAhtsr2", + "duplicateSource": null + }, + "_key": "!items!cYu2Rf6SiyAhtsr2" +} diff --git a/packs/ac-construct-breakthroughs/CURRENT b/packs/ac-construct-breakthroughs/CURRENT deleted file mode 100644 index c1a1bbb..0000000 --- a/packs/ac-construct-breakthroughs/CURRENT +++ /dev/null @@ -1 +0,0 @@ -MANIFEST-000266 diff --git a/packs/ac-construct-breakthroughs/Climbing_Limbs_Jl0HsbQh05ajHZAh.json b/packs/ac-construct-breakthroughs/Climbing_Limbs_Jl0HsbQh05ajHZAh.json new file mode 100644 index 0000000..09e1477 --- /dev/null +++ b/packs/ac-construct-breakthroughs/Climbing_Limbs_Jl0HsbQh05ajHZAh.json @@ -0,0 +1,85 @@ +{ + "_id": "Jl0HsbQh05ajHZAh", + "name": "Climbing Limbs", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.Jl0HsbQh05ajHZAh" + } + }, + "system": { + "description": { + "gm": "", + "value": "With appendages that can claw or create suction, your construct becomes a capable climber. Your innovation gains a climb Speed equal to half its land Speed.
" + }, + "rules": [ + { + "key": "BaseSpeed", + "selector": "climb", + "value": "5*floor(@actor.system.attributes.speed.value/10)" + } + ], + "slug": "climbing-limbs", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.829-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.Jl0HsbQh05ajHZAh", + "duplicateSource": null + }, + "_key": "!items!Jl0HsbQh05ajHZAh" +} diff --git a/packs/ac-construct-breakthroughs/Durable_Construction_gL9ywotxNnoP1rOp.json b/packs/ac-construct-breakthroughs/Durable_Construction_gL9ywotxNnoP1rOp.json new file mode 100644 index 0000000..3782888 --- /dev/null +++ b/packs/ac-construct-breakthroughs/Durable_Construction_gL9ywotxNnoP1rOp.json @@ -0,0 +1,85 @@ +{ + "_id": "gL9ywotxNnoP1rOp", + "name": "Durable Construction", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.gL9ywotxNnoP1rOp" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your innovation is solidly built; it can take significant punishment before being destroyed. Increase its maximum HP by your level.
" + }, + "rules": [ + { + "key": "FlatModifier", + "selector": "hp", + "value": "@actor.level" + } + ], + "slug": "durable-construction", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.826-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.gL9ywotxNnoP1rOp", + "duplicateSource": null + }, + "_key": "!items!gL9ywotxNnoP1rOp" +} diff --git a/packs/ac-construct-breakthroughs/Flight_Chassis_CugdA3rsjW1hWt9O.json b/packs/ac-construct-breakthroughs/Flight_Chassis_CugdA3rsjW1hWt9O.json new file mode 100644 index 0000000..d310403 --- /dev/null +++ b/packs/ac-construct-breakthroughs/Flight_Chassis_CugdA3rsjW1hWt9O.json @@ -0,0 +1,85 @@ +{ + "_id": "CugdA3rsjW1hWt9O", + "name": "Flight Chassis", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.CugdA3rsjW1hWt9O" + } + }, + "system": { + "description": { + "gm": "", + "value": "You fit your construct with a means of flight, such as adding rotors or rebuilding it with wings and a lightweight construction. Your innovation gains a fly Speed of 25 feet.
" + }, + "rules": [ + { + "key": "BaseSpeed", + "selector": "fly", + "value": 25 + } + ], + "slug": "flight-chassis", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 15 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.829-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.CugdA3rsjW1hWt9O", + "duplicateSource": null + }, + "_key": "!items!CugdA3rsjW1hWt9O" +} diff --git a/packs/ac-construct-breakthroughs/Increased_Size_lg4K3gO0VtIawWq0.json b/packs/ac-construct-breakthroughs/Increased_Size_lg4K3gO0VtIawWq0.json new file mode 100644 index 0000000..4cb5d35 --- /dev/null +++ b/packs/ac-construct-breakthroughs/Increased_Size_lg4K3gO0VtIawWq0.json @@ -0,0 +1,84 @@ +{ + "_id": "lg4K3gO0VtIawWq0", + "name": "Increased Size", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.lg4K3gO0VtIawWq0" + } + }, + "system": { + "description": { + "gm": "", + "value": "You built your construct innovation bigger than most. Your construct is Large. If you have this modification and your construct innovation becomes an advanced construct companion or otherwise gains the ability to become Large, you can immediately change increased size to a different initial construct modification.
" + }, + "rules": [ + { + "key": "CreatureSize", + "value": "large" + } + ], + "slug": "increased-size", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.826-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.lg4K3gO0VtIawWq0", + "duplicateSource": null + }, + "_key": "!items!lg4K3gO0VtIawWq0" +} diff --git a/packs/ac-construct-breakthroughs/LOG b/packs/ac-construct-breakthroughs/LOG deleted file mode 100644 index 1682a4e..0000000 --- a/packs/ac-construct-breakthroughs/LOG +++ /dev/null @@ -1,3 +0,0 @@ -2024/05/19-12:56:42.501 1d10 Recovering log #264 -2024/05/19-12:56:42.509 1d10 Delete type=0 #264 -2024/05/19-12:56:42.509 1d10 Delete type=3 #262 diff --git a/packs/ac-construct-breakthroughs/LOG.old b/packs/ac-construct-breakthroughs/LOG.old deleted file mode 100644 index ab6c93b..0000000 --- a/packs/ac-construct-breakthroughs/LOG.old +++ /dev/null @@ -1,7 +0,0 @@ -2024/05/19-16:38:49.555051 ffff96fbf100 Recovering log #260 -2024/05/19-16:38:49.563035 ffff96fbf100 Delete type=3 #258 -2024/05/19-16:38:49.563074 ffff96fbf100 Delete type=0 #260 -2024/05/19-16:45:29.738214 fffe74bad100 Level-0 table #265: started -2024/05/19-16:45:29.738235 fffe74bad100 Level-0 table #265: 0 bytes OK -2024/05/19-16:45:29.741657 fffe74bad100 Delete type=0 #263 -2024/05/19-16:45:29.750088 fffe74bad100 Manual compaction at level-0 from '!items!1mE83uSucJZS4FB9' @ 72057594037927935 : 1 .. '!items!zo6B3JGQIt99K1HF' @ 0 : 0; will stop at (end) diff --git a/packs/ac-construct-breakthroughs/MANIFEST-000262 b/packs/ac-construct-breakthroughs/MANIFEST-000262 deleted file mode 100644 index 23671d2..0000000 Binary files a/packs/ac-construct-breakthroughs/MANIFEST-000262 and /dev/null differ diff --git a/packs/ac-construct-breakthroughs/MANIFEST-000266 b/packs/ac-construct-breakthroughs/MANIFEST-000266 deleted file mode 100644 index 2d6bb67..0000000 Binary files a/packs/ac-construct-breakthroughs/MANIFEST-000266 and /dev/null differ diff --git a/packs/ac-construct-breakthroughs/Manual_Dexterity_A3UROfr7qu1iWNKy.json b/packs/ac-construct-breakthroughs/Manual_Dexterity_A3UROfr7qu1iWNKy.json new file mode 100644 index 0000000..3c19280 --- /dev/null +++ b/packs/ac-construct-breakthroughs/Manual_Dexterity_A3UROfr7qu1iWNKy.json @@ -0,0 +1,79 @@ +{ + "_id": "A3UROfr7qu1iWNKy", + "name": "Manual Dexterity", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.A3UROfr7qu1iWNKy" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your construct innovation has articulated hands or similar appendages with significant manual dexterity. It can perform manipulate actions with up to two of its limbs. As normal for a companion, it still can't wield weapons or held items that don't have the companion trait, and it can't activate items.
" + }, + "rules": [], + "slug": "manual-dexterity", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.830-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.A3UROfr7qu1iWNKy", + "duplicateSource": null + }, + "_key": "!items!A3UROfr7qu1iWNKy" +} diff --git a/packs/ac-construct-breakthroughs/Marvelous_Gears_BR7Bu48ijB4Jzgci.json b/packs/ac-construct-breakthroughs/Marvelous_Gears_BR7Bu48ijB4Jzgci.json new file mode 100644 index 0000000..04f1521 --- /dev/null +++ b/packs/ac-construct-breakthroughs/Marvelous_Gears_BR7Bu48ijB4Jzgci.json @@ -0,0 +1,98 @@ +{ + "_id": "BR7Bu48ijB4Jzgci", + "name": "Marvelous Gears", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.BR7Bu48ijB4Jzgci" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your innovation gains expert proficiency in Intimidation, Stealth, and Survival. For any of these skills in which it was already an expert (because of being an advanced construct companion, for example), it gains master proficiency instead. If you have the revolutionary innovation class feature, these proficiencies improve to master, or legendary if your construct innovation was already an expert. You must have the wonder gears modification to select this modification.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "mode": "add", + "path": "system.skills.sur.rank", + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "add", + "path": "system.skills.itm.rank", + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "add", + "path": "system.skills.ste.rank", + "value": 1 + } + ], + "slug": "marvelous-gears", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.830-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.BR7Bu48ijB4Jzgci", + "duplicateSource": null + }, + "_key": "!items!BR7Bu48ijB4Jzgci" +} diff --git a/packs/ac-construct-breakthroughs/Miracle_Gears_qRnfaGuJ1k0Agm35.json b/packs/ac-construct-breakthroughs/Miracle_Gears_qRnfaGuJ1k0Agm35.json new file mode 100644 index 0000000..eab85c4 --- /dev/null +++ b/packs/ac-construct-breakthroughs/Miracle_Gears_qRnfaGuJ1k0Agm35.json @@ -0,0 +1,86 @@ +{ + "_id": "qRnfaGuJ1k0Agm35", + "name": "Miracle Gears", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.qRnfaGuJ1k0Agm35" + } + }, + "system": { + "description": { + "gm": "", + "value": "As you perfect your innovation's cortex, it becomes much more intelligent. Its Intelligence modifier increases by 2, and it learns a language of your choice from among the languages you know. Your construct gains the ability to use actions that require greater Intelligence, like @Compendium[pf2e.actionspf2e.Coerce]{Coerce} and @Compendium[pf2e.actionspf2e.d9gbpiQjChYDYA2L]{Decipher Writing}. Finally, your construct becomes legendary in two Intelligence- or Charisma-based skills of your choice. You must have the marvelous gears modification to select this modification.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.int.mod" + } + ], + "slug": "miracle-gears", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 15 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.824-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.qRnfaGuJ1k0Agm35", + "duplicateSource": null + }, + "_key": "!items!qRnfaGuJ1k0Agm35" +} diff --git a/packs/ac-construct-breakthroughs/Projectile_Launcher_zo6B3JGQIt99K1HF.json b/packs/ac-construct-breakthroughs/Projectile_Launcher_zo6B3JGQIt99K1HF.json new file mode 100644 index 0000000..1b7fe57 --- /dev/null +++ b/packs/ac-construct-breakthroughs/Projectile_Launcher_zo6B3JGQIt99K1HF.json @@ -0,0 +1,112 @@ +{ + "_id": "zo6B3JGQIt99K1HF", + "name": "Projectile Launcher", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.zo6B3JGQIt99K1HF" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your construct has a mounted dart launcher, embedded cannon, or similar armament. Your innovation gains a ranged unarmed attack that deals 1d4 bludgeoning or piercing damage (you choose when you pick this modification). The attack has the propulsive trait and a range increment of 30 feet.
" + }, + "rules": [ + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "{item|flags.pf2e.rulesSelections.damageType}", + "dice": 1, + "die": "d4" + } + }, + "key": "Strike", + "range": 30, + "traits": [ + "propulsive", + "unarmed" + ] + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.TraitBludgeoning", + "value": "bludgeoning" + }, + { + "label": "PF2E.TraitPiercing", + "value": "piercing" + } + ], + "flag": "damageType", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt", + "key": "ChoiceSet" + } + ], + "slug": "projectile-launcher", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.824-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.zo6B3JGQIt99K1HF", + "duplicateSource": null + }, + "_key": "!items!zo6B3JGQIt99K1HF" +} diff --git a/packs/ac-construct-breakthroughs/Resistant_Coating_phxQm79wotHHIGUg.json b/packs/ac-construct-breakthroughs/Resistant_Coating_phxQm79wotHHIGUg.json new file mode 100644 index 0000000..af50d7e --- /dev/null +++ b/packs/ac-construct-breakthroughs/Resistant_Coating_phxQm79wotHHIGUg.json @@ -0,0 +1,88 @@ +{ + "_id": "phxQm79wotHHIGUg", + "name": "Resistant Coating", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.phxQm79wotHHIGUg" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your innovation is hard to damage by any means. It gains resistance 5 to all damage (except adamantine).
" + }, + "rules": [ + { + "key": "Resistance", + "type": "all-damage", + "value": 5, + "exceptions": [ + "adamantine" + ] + } + ], + "slug": "resistant-coating", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 15 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.825-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.phxQm79wotHHIGUg", + "duplicateSource": null + }, + "_key": "!items!phxQm79wotHHIGUg" +} diff --git a/packs/ac-construct-breakthroughs/Runic_Keystone_1mE83uSucJZS4FB9.json b/packs/ac-construct-breakthroughs/Runic_Keystone_1mE83uSucJZS4FB9.json new file mode 100644 index 0000000..e6ee6c5 --- /dev/null +++ b/packs/ac-construct-breakthroughs/Runic_Keystone_1mE83uSucJZS4FB9.json @@ -0,0 +1,79 @@ +{ + "_id": "1mE83uSucJZS4FB9", + "name": "Runic Keystone", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.1mE83uSucJZS4FB9" + } + }, + "system": { + "description": { + "gm": "", + "value": "You've incorporated a device similar to a runestone into your innovation, allowing it to hold a property rune, even though it isn't a weapon or suit of armor. An armor property rune affects your innovation itself if it would affect the wearer of the armor. A weapon property rune grants whatever properties it would normally grant to a weapon to your innovation's unarmed attacks, following all the requirements as normal (for instance, a vorpal rune would only apply to slashing melee unarmed attacks); if the rune affects only ranged attacks, it has no effect unless your innovation has a built-in ranged attack (from the projectile launcher initial modification, for example). If the rune would affect the physical shape or appearance of the weapon or armor itself, like glamered, the rune has no effect when etched into your construct.
\nNote: This is left without automation until system rune improvements are completed.
" + }, + "rules": [], + "slug": "runic-keystone", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 15 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.831-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.1mE83uSucJZS4FB9", + "duplicateSource": null + }, + "_key": "!items!1mE83uSucJZS4FB9" +} diff --git a/packs/ac-construct-breakthroughs/Sensory_Array_owiurEqGXM726Iwd.json b/packs/ac-construct-breakthroughs/Sensory_Array_owiurEqGXM726Iwd.json new file mode 100644 index 0000000..6c10f80 --- /dev/null +++ b/packs/ac-construct-breakthroughs/Sensory_Array_owiurEqGXM726Iwd.json @@ -0,0 +1,94 @@ +{ + "_id": "owiurEqGXM726Iwd", + "name": "Sensory Array", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.owiurEqGXM726Iwd" + } + }, + "system": { + "description": { + "gm": "", + "value": "Additional sensory devices give your innovation low-light vision and darkvision, as well as imprecise tremorsense out to a range of 30 feet.
" + }, + "rules": [ + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "tremorsense" + }, + { + "key": "Sense", + "selector": "darkvision" + }, + { + "key": "Sense", + "selector": "lowLightVision" + } + ], + "slug": "sensory-array", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.825-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.owiurEqGXM726Iwd", + "duplicateSource": null + }, + "_key": "!items!owiurEqGXM726Iwd" +} diff --git a/packs/ac-construct-breakthroughs/Turret_Configuration_3Q7nASFamnMm7cBz.json b/packs/ac-construct-breakthroughs/Turret_Configuration_3Q7nASFamnMm7cBz.json new file mode 100644 index 0000000..e2fa5ca --- /dev/null +++ b/packs/ac-construct-breakthroughs/Turret_Configuration_3Q7nASFamnMm7cBz.json @@ -0,0 +1,96 @@ +{ + "_id": "3Q7nASFamnMm7cBz", + "name": "Turret Configuration", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.3Q7nASFamnMm7cBz" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your innovation can transform from a mobile construct to a stationary turret. Your construct companion can transform as a single action, which has the manipulate trait, turning into a turret in its space (or transforming back from a turret into its normal configuration). While it's a turret, your innovation is @Compendium[pf2e.conditionitems.Immobilized]{Immobilized}, but the damage die from its projectile launcher increases to 1d6 and the range increment increases to 60 feet. You must have the projectile launcher modification to select this modification.
\nNote: If you renamed the Projectile Launcher breakthrough you will need to modify the rule element selector on this to the new name.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "turretMode", + "toggleable": true + }, + { + "key": "DamageDice", + "selector": "projectile-launcher-damage", + "override": { + "dieSize": "d6" + }, + "predicate": [ + "turretMode" + ] + } + ], + "slug": "turret-configuration", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.831-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.3Q7nASFamnMm7cBz", + "duplicateSource": null + }, + "_key": "!items!3Q7nASFamnMm7cBz" +} diff --git a/packs/ac-construct-breakthroughs/Wall_Configuration_TS2DXi5f4y7wtED5.json b/packs/ac-construct-breakthroughs/Wall_Configuration_TS2DXi5f4y7wtED5.json new file mode 100644 index 0000000..e5548d6 --- /dev/null +++ b/packs/ac-construct-breakthroughs/Wall_Configuration_TS2DXi5f4y7wtED5.json @@ -0,0 +1,95 @@ +{ + "_id": "TS2DXi5f4y7wtED5", + "name": "Wall Configuration", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.TS2DXi5f4y7wtED5" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your innovation can transform from a mobile construct to a stationary battlefield emplacement. It can unfold as a 2-action activity that has the manipulate trait, changing from its usual form into a thin, straight wall of metal and gears up to 10 feet tall and 30 feet long. The wall must extend through your innovation's original space. While your construct is a wall, it can't take any actions except to use the same activity to transform back, and it can't defend itself easily, making it @Compendium[pf2e.conditionitems.Off-Guard]{Off-Guard} and giving it an additional -2 status penalty to its AC. The wall blocks line of sight and effect unless your innovation has half its maximum HP or fewer, at which point holes in the wall allow creatures to see through and attack with cover, and Tiny creatures to slip through.
" + }, + "rules": [ + { + "key": "RollOption", + "domain": "all", + "option": "wallConfiguration", + "toggleable": true + }, + { + "key": "FlatModifier", + "selector": "ac", + "value": -2, + "type": "status", + "predicate": [ + "wallConfiguration" + ] + } + ], + "slug": "wall-configuration", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 15 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.828-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.TS2DXi5f4y7wtED5", + "duplicateSource": null + }, + "_key": "!items!TS2DXi5f4y7wtED5" +} diff --git a/packs/ac-construct-breakthroughs/Wonder_Gears_Z2GWP5gsbS1SsP1W.json b/packs/ac-construct-breakthroughs/Wonder_Gears_Z2GWP5gsbS1SsP1W.json new file mode 100644 index 0000000..56ba155 --- /dev/null +++ b/packs/ac-construct-breakthroughs/Wonder_Gears_Z2GWP5gsbS1SsP1W.json @@ -0,0 +1,98 @@ +{ + "_id": "Z2GWP5gsbS1SsP1W", + "name": "Wonder Gears", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.Z2GWP5gsbS1SsP1W" + } + }, + "system": { + "description": { + "gm": "", + "value": "You map specialized skills into your construct's crude intelligence. Your innovation becomes trained in Intimidation, Stealth, and Survival.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.sur.rank", + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.itm.rank", + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.sur.rank", + "value": 1 + } + ], + "slug": "wonder-gears", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:49.827-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Construct-Breakthroughs.Item.Z2GWP5gsbS1SsP1W", + "duplicateSource": null + }, + "_key": "!items!Z2GWP5gsbS1SsP1W" +} diff --git a/packs/ac-construct-companions/000233.ldb b/packs/ac-construct-companions/000233.ldb deleted file mode 100644 index e1b3036..0000000 Binary files a/packs/ac-construct-companions/000233.ldb and /dev/null differ diff --git a/packs/ac-construct-companions/Advanced_Construct__CC__5v2Kj6Jh2YYGaSQq.json b/packs/ac-construct-companions/Advanced_Construct__CC__5v2Kj6Jh2YYGaSQq.json new file mode 100644 index 0000000..94ddbec --- /dev/null +++ b/packs/ac-construct-companions/Advanced_Construct__CC__5v2Kj6Jh2YYGaSQq.json @@ -0,0 +1,177 @@ +{ + "_id": "5v2Kj6Jh2YYGaSQq", + "name": "Advanced Construct (CC)", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 200000, + "flags": { + "core": { + "sourceId": "Item.pSbtGxTCyS32FZrY" + } + }, + "system": { + "description": { + "gm": "", + "value": "To advance a prototype construct companion to an advanced construct companion (usually a result of one of your class feat choices), make the following adjustments.
\n\n
To improve an advanced construct companion to an incredible construct companion, make the following adjustments.
\n\n
You activate gears, explosives, and other hidden mechanisms in your innovation to make a powerful attack. You make a Strike, dealing an extra die of weapon damage. If you're at least 10th level, increase this to two extra dice, and if you're at least 18th level, increase it to three extra dice. The type of Strike you can make depends on your innovation.
\nUnstable Function You put even more force into the Strike, though you risk stress fractures to your innovation. Add the unstable trait to Megaton Strike. The Strike deals another extra damage die, for a total of two extra dice at 4th level, three at 10th level, and four at 18th level.
\nSpecial If your innovation is a minion, it can take this action rather than you.
" + }, + "rules": [ + { + "key": "RollOption", + "option": "megaton", + "suboptions": [ + { + "label": "PF2E.SpecificRule.Inventor.Unstable.Stable", + "value": "stable" + }, + { + "label": "PF2E.TraitUnstable", + "value": "unstable" + } + ], + "toggleable": true + }, + { + "key": "AdjustStrike", + "mode": "add", + "predicate": [ + "megaton:unstable" + ], + "property": "traits", + "value": "unstable" + }, + { + "diceNumber": "ternary(gte(@actor.level, 18), 3, ternary(gte(@actor.level, 10), 2, 1))", + "key": "DamageDice", + "predicate": [ + "megaton:stable" + ], + "selector": "strike-damage" + }, + { + "diceNumber": "ternary(gte(@actor.level, 18), 4, ternary(gte(@actor.level, 10), 3, 2))", + "key": "DamageDice", + "predicate": [ + "megaton:unstable" + ], + "selector": "strike-damage" + } + ], + "slug": "megaton-strike", + "_migration": { + "version": 0.922, + "lastMigration": null, + "previous": null + }, + "traits": { + "otherTags": [], + "value": [ + "inventor" + ], + "rarity": "common" + }, + "publication": { + "title": "Pathfinder Guns & Gears", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 4 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "action" + }, + "actions": { + "value": 2 + }, + "prerequisites": { + "value": [ + { + "value": "armor, construct, or weapon innovation" + } + ] + }, + "location": null + }, + "type": "feat", + "flags": { + "core": {} + }, + "effects": [], + "folder": null, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "6RhPpyIH3fKF1CNJ", + "sort": 100000, + "_key": "!items!6RhPpyIH3fKF1CNJ" +} diff --git a/packs/ac-construct-companions/Paragon_Construct__CC__B3XfI8hQKdr7WG4R.json b/packs/ac-construct-companions/Paragon_Construct__CC__B3XfI8hQKdr7WG4R.json new file mode 100644 index 0000000..dea8b0d --- /dev/null +++ b/packs/ac-construct-companions/Paragon_Construct__CC__B3XfI8hQKdr7WG4R.json @@ -0,0 +1,168 @@ +{ + "_id": "B3XfI8hQKdr7WG4R", + "name": "Paragon Construct (CC)", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "folder": null, + "sort": 300000, + "flags": { + "core": { + "sourceId": "Item.MBLwQP3kATtKmi8M" + } + }, + "system": { + "description": { + "gm": "", + "value": "To improve an incredible construct companion to a paragon construct companion, make the following adjustments.
\n\n
Rename this feat to rename the strike created by it, the image of this feat can also be adjusted to the image you want for the strike.
" + }, + "rules": [ + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "bludgeoning", + "dice": 1, + "die": "d8" + } + }, + "group": "brawling", + "key": "Strike", + "range": null, + "traits": [ + "unarmed" + ] + } + ], + "slug": "unarmed-strike-1", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:51.980-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Item.r0BretFLl3eDhEUg", + "duplicateSource": null + }, + "_key": "!items!i4Fz5yg9JufpyVns" +} diff --git a/packs/ac-construct-companions/Unarmed_Strike_2_mjDtydpNNfI9SuFq.json b/packs/ac-construct-companions/Unarmed_Strike_2_mjDtydpNNfI9SuFq.json new file mode 100644 index 0000000..89dcbe5 --- /dev/null +++ b/packs/ac-construct-companions/Unarmed_Strike_2_mjDtydpNNfI9SuFq.json @@ -0,0 +1,114 @@ +{ + "_id": "mjDtydpNNfI9SuFq", + "name": "Unarmed Strike 2", + "type": "feat", + "img": "systems/pf2e/icons/spells/impaling-spike.webp", + "effects": [], + "folder": null, + "sort": 700000, + "flags": { + "core": { + "sourceId": "Item.r0BretFLl3eDhEUg" + } + }, + "system": { + "description": { + "gm": "", + "value": "Rename this feat to rename the strike created by it, the image of this feat can also be adjusted to the image you want for the strike.
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.TraitSlashing", + "value": "slashing" + }, + { + "label": "PF2E.TraitPiercing", + "value": "piercing" + } + ], + "flag": "damageChoice", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt", + "key": "ChoiceSet" + }, + { + "category": "unarmed", + "damage": { + "base": { + "damageType": "{item|flags.pf2e.rulesSelections.damageChoice}", + "dice": 1, + "die": "d6" + } + }, + "group": "brawling", + "key": "Strike", + "range": null, + "traits": [ + "finesse", + "agile", + "unarmed" + ] + } + ], + "slug": "unarmed-strike-2", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:51.979-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Item.r0BretFLl3eDhEUg", + "duplicateSource": null + }, + "_key": "!items!mjDtydpNNfI9SuFq" +} diff --git a/packs/ac-eidolons/000247.ldb b/packs/ac-eidolons/000247.ldb deleted file mode 100644 index 4d4f45f..0000000 Binary files a/packs/ac-eidolons/000247.ldb and /dev/null differ diff --git a/packs/ac-eidolons/Angel_Eidolon_mKWiBb4xmnwVhmh7.json b/packs/ac-eidolons/Angel_Eidolon_mKWiBb4xmnwVhmh7.json new file mode 100644 index 0000000..f4dc7c1 --- /dev/null +++ b/packs/ac-eidolons/Angel_Eidolon_mKWiBb4xmnwVhmh7.json @@ -0,0 +1,173 @@ +{ + "_id": "mKWiBb4xmnwVhmh7", + "name": "Angel Eidolon", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 1000000, + "flags": { + "core": { + "sourceId": "Item.QlhL9vPXzjhkYd8W" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon is a celestial messenger, a member of the angelic host with a unique link to you, allowing them to carry a special message to the mortal world at your side. Most angel eidolons are roughly humanoid in form, with feathered wings, glowing eyes, halos, or similar angelic features. However, some take the form of smaller angelic servitors like the winged helmet cassisian angel instead. The two of you are destined for an important role in the plans of the celestial realms. Though a true angel, your angel eidolon's link to you as a mortal prevents them from casting the angelic messenger ritual, even if they somehow learn it.
\nTradition divine
\nTraits angel, celestial, eidolon
\nAlignment must be good, usually neutral good
\nHome Plane Nirvana (if NG), Elysium (if CG), or Heaven (if LG)
\nSize Medium or Small
\nSuggested Attacks fist (bludgeoning), wing (bludgeoning), unarmed attacks shaped like a weapon
\nAngelic Avenger Str 18, Dex 14, Con 16, Int 8, Wis 12, Cha 10; +2 AC (+3 Dex cap)
\nAngelic Emissary Str 12, Dex 18, Con 12, Int 10, Wis 12, Cha 14; +1 AC (+4 Dex cap)
\nSkills Diplomacy, Religion
\nSenses darkvision
\nLanguage Celestial
\nSpeed 25 feet
\nEidolon Abilities Initial @UUID[Compendium.pf2e-animal-companions.AC-Features.WyN2qQ2AP4cOMNxF]{hallowed strikes}; Symbiosis @UUID[Compendium.pf2e-animal-companions.AC-Features.6uCSkTAltByUK2Pb]{traveler's aura}; Transcendence @UUID[Compendium.pf2e-animal-companions.AC-Features.Item.QDtXuIshSTUBcxff]{angelic mercy}
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.oQ4aTLTv0qU7sRGG" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.WeZLk8HXhoa20J7t" + } + ], + "flag": "eidolonType", + "key": "ChoiceSet", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.eidolonType}" + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.rel.rank", + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.dip.rank", + "value": 1 + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeSmall", + "value": "sm" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.xPn27nNxcLOByTXJ" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "flags.pf2e.eidolon-features", + "value": { + "initial": "Compendium.pf2e-animal-companions.AC-Features.WyN2qQ2AP4cOMNxF", + "symbiosis": "Compendium.pf2e-animal-companions.AC-Features.6uCSkTAltByUK2Pb", + "transcendence": "Compendium.pf2e-animal-companions.AC-Features.QDtXuIshSTUBcxff" + } + } + ], + "slug": "angel-eidolon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "angel", + "eidolon" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 0, + "size": "med", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "celestial" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "in5zg": { + "img": "systems/pf2e/icons/features/classes/eidolon.webp", + "name": "Eidolon Ability", + "level": 1, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.5E71mdImeRE9Fh1D" + } + }, + "vision": "darkvision", + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:53.833-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.QlhL9vPXzjhkYd8W", + "duplicateSource": null + }, + "_key": "!items!mKWiBb4xmnwVhmh7" +} diff --git a/packs/ac-eidolons/Anger_Phantom_Eidolon_o3wSjAaxYUmdbDvB.json b/packs/ac-eidolons/Anger_Phantom_Eidolon_o3wSjAaxYUmdbDvB.json new file mode 100644 index 0000000..8868b23 --- /dev/null +++ b/packs/ac-eidolons/Anger_Phantom_Eidolon_o3wSjAaxYUmdbDvB.json @@ -0,0 +1,179 @@ +{ + "_id": "o3wSjAaxYUmdbDvB", + "name": "Anger Phantom Eidolon", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 1100000, + "flags": { + "core": { + "sourceId": "Item.QlhL9vPXzjhkYd8W" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon is a lost soul, bound to the mortal world by undying anger or a bitter grudge. Most phantom eidolons are humanoids with a spectral or ectoplasmic appearance, though some take far stranger forms. Your link with your eidolon prevents it from succumbing to corruption and undeath. Together, you will need to decide whether to work with your eidolon to control its anger, or channel its wrath into power.
\nTradition occult
\nTraits eidolon, ethereal, phantom
\nHome Plane Ethereal Plane
\nSize Medium or Small
\nSuggested Attacks fist (bludgeoning), tendril (bludgeoning), unarmed attacks shaped like a weapon
\nWrathful Berserker Str 18, Dex 14, Con 16, Int 8, Wis 10, Cha 12; +2 AC (+3 Dex cap)
\nEnraged Assassin Str 14, Dex 18, Con 16, Int 10, Wis 8, Cha 12; +1 AC (+4 Dex cap)
\nSkills Intimidation, Occultism
\nSenses darkvision
\nLanguage one common mortal language the eidolon spoke in life
\nSpeed 25 feet
\nEidolon Abilities Initial @UUID[Compendium.pf2e-animal-companions.AC-Features.Item.CBJrHjIETQsh3OG6]{furious ftrike}; Symbiosis @UUID[Compendium.pf2e-animal-companions.AC-Features.MzqIc3XmAUQVdSFO]{seething frenzy}; Transcendence @UUID[Compendium.pf2e-animal-companions.AC-Features.MET0PzSNfpxi0D3E]{anger aura}
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.le0f9D0ZOnkdGaQO" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.oqRBCMQDSicPRkVA" + } + ], + "flag": "eidolonType", + "key": "ChoiceSet", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.eidolonType}" + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.itm.rank", + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.occ.rank", + "value": 1 + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeSmall", + "value": "sm" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.xPn27nNxcLOByTXJ" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "flags.pf2e.eidolon-features", + "value": { + "initial": "Compendium.pf2e-animal-companions.AC-Features.Item.CBJrHjIETQsh3OG6", + "symbiosis": "Compendium.pf2e-animal-companions.AC-Features.MzqIc3XmAUQVdSFO", + "transcendence": "Compendium.pf2e-animal-companions.AC-Features.MET0PzSNfpxi0D3E" + } + } + ], + "slug": "anger-phantom-eidolon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "eidolon", + "ethereal", + "phantom" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 0, + "size": "med", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [ + "str", + "dex", + "con", + "int", + "wis", + "cha" + ] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "y1x3u": { + "img": "systems/pf2e/icons/features/classes/eidolon.webp", + "name": "Eidolon Ability", + "level": 1, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.5E71mdImeRE9Fh1D" + } + }, + "vision": "darkvision", + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:53.833-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.QlhL9vPXzjhkYd8W", + "duplicateSource": null + }, + "_key": "!items!o3wSjAaxYUmdbDvB" +} diff --git a/packs/ac-eidolons/Beast_Eidolon_5IvhL9PsniwiVhEZ.json b/packs/ac-eidolons/Beast_Eidolon_5IvhL9PsniwiVhEZ.json new file mode 100644 index 0000000..45e4a7b --- /dev/null +++ b/packs/ac-eidolons/Beast_Eidolon_5IvhL9PsniwiVhEZ.json @@ -0,0 +1,152 @@ +{ + "_id": "5IvhL9PsniwiVhEZ", + "name": "Beast Eidolon", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 200000, + "flags": { + "core": { + "sourceId": "Item.QlhL9vPXzjhkYd8W" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon is a manifestation of the life force of nature in the form of a powerful magical beast that often has animal features, possibly even several from different species. You might have learned the way to connect with the world's life force via a specific philosophy or practice, such as the beliefs of the god callers of Sarkoris, or formed a bond on your own. Regardless, your link to your eidolon allows you both to grow in power and influence to keep your home safe from those who would despoil it.
\nTradition primal
\nTraits beast, eidolon
\nHome Plane Material Plane
\nSize Medium
\nSuggested Attacks claw (slashing), jaws (piercing), fangs (piercing), hoof (bludgeoning), horn (piercing)
\nBrutal Beast Str 18, Dex 14, Con 16, Int 8, Wis 12, Cha 10; +2 AC (+3 Dex cap)
\nFleet Beast Str 14, Dex 18, Con 16, Int 8, Wis 12, Cha 10; +1 AC (+4 Dex cap)
\nSkills Intimidation, Nature
\nSenses low-light vision
\nLanguage Sylvan
\nSpeed 25 feet
\nEidolon Abilities Initial @UUID[Compendium.pf2e-animal-companions.AC-Features.Item.lonj7zEZdJD2pbai]{beast's bharge}; Symbiosis @UUID[Compendium.pf2e-animal-companions.AC-Features.Gn750G9nNM3GiI5k]{primal roar}; Transcendence @UUID[Compendium.pf2e-animal-companions.AC-Features.coBen1GA1czeBTOs]{whirlwind maul}
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.gLvVuJKxvL85qv4n" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.doQ6pf2mVdysqgfB" + } + ], + "flag": "eidolonType", + "key": "ChoiceSet", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.eidolonType}", + "allowDuplicate": false + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.itm.rank", + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.nat.rank", + "value": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.xPn27nNxcLOByTXJ", + "allowDuplicate": false + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "flags.pf2e.eidolon-features", + "value": { + "initial": "Compendium.pf2e-animal-companions.AC-Features.Item.lonj7zEZdJD2pbai", + "symbiosis": "Compendium.pf2e-animal-companions.AC-Features.Item.Gn750G9nNM3GiI5k", + "transcendence": "Compendium.pf2e-animal-companions.AC-Features.Item.coBen1GA1czeBTOs" + } + } + ], + "slug": "beast-eidolon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "eidolon" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 0, + "size": "med", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "fey" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "i3f7b": { + "img": "systems/pf2e/icons/features/classes/eidolon.webp", + "name": "Eidolon Ability", + "level": 1, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.5E71mdImeRE9Fh1D" + } + }, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:53.836-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.QlhL9vPXzjhkYd8W", + "duplicateSource": null + }, + "_key": "!items!5IvhL9PsniwiVhEZ" +} diff --git a/packs/ac-eidolons/CURRENT b/packs/ac-eidolons/CURRENT deleted file mode 100644 index df84f3d..0000000 --- a/packs/ac-eidolons/CURRENT +++ /dev/null @@ -1 +0,0 @@ -MANIFEST-000268 diff --git a/packs/ac-eidolons/Construct_Eidolon_dnQUp0Vhg3XdZFtP.json b/packs/ac-eidolons/Construct_Eidolon_dnQUp0Vhg3XdZFtP.json new file mode 100644 index 0000000..af042bc --- /dev/null +++ b/packs/ac-eidolons/Construct_Eidolon_dnQUp0Vhg3XdZFtP.json @@ -0,0 +1,150 @@ +{ + "_id": "dnQUp0Vhg3XdZFtP", + "name": "Construct Eidolon", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 800000, + "flags": { + "core": { + "sourceId": "Item.QlhL9vPXzjhkYd8W" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon is a mental construct based on an astral thoughtform and given physical presence and life by its connection to you, its shape limited only by your imagination. Your eidolon's appearance and physical form vary based on your shared vision for its construction, from clockworks to stuffed dolls and everything between, and it's not uncommon for that appearance to change greatly as your construct gains evolutions. Because it arises from an astral entity, your construct is no mindless servitor, but a fully thinking being with its own ideas, goals, and even emotions. These entities are extremely diverse; while many construct eidolons come from a powerful symbiotic connection with astral denizens, just as many arise from the forgotten memories of ancient empires and craftworks drifting across the Silver Sea of the Astral Plane.
\nTradition arcane
\nTraits astral, construct, eidolon
\nHome Plane Astral Plane
\nSize Medium
\nSuggested Attacks fist (bludgeoning)
\nWarrior Construct Str 18, Dex 14, Con 16, Int 12, Wis 10, Cha 8; +2 AC (+3 Dex cap)
\nScout Construct Str 14, Dex 18, Con 16, Int 12, Wis 10, Cha 8; +1 AC (+4 Dex cap)
\nSkills Arcana, Crafting
\nSenses darkvision
\nLanguage one common mortal language
\nSpeed 25 feet
\nEidolon Abilities Initial @UUID[Compendium.pf2e-animal-companions.AC-Features.Item.tBhCZN3SwlxQirL1]{construct heart}; Symbiosis @UUID[Compendium.pf2e-animal-companions.AC-Features.Item.AaVyAec0r17ocz42]{reconfigured evolution}; Transcendence @UUID[Compendium.pf2e-animal-companions.AC-Features.Item.f5t6k3hwRSXqGto1]{ultimate reconfiguration}
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.c2c6dqt5rMakwb4V" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.bjSHfY92UwLjdWZC" + } + ], + "flag": "eidolonType", + "key": "ChoiceSet", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.eidolonType}" + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.arc.rank", + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.cra.rank", + "value": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.xPn27nNxcLOByTXJ" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "flags.pf2e.eidolon-features", + "value": { + "initial": "Compendium.pf2e-animal-companions.AC-Features.Item.tBhCZN3SwlxQirL1", + "symbiosis": "Compendium.pf2e-animal-companions.AC-Features.Item.AaVyAec0r17ocz42", + "transcendence": "Compendium.pf2e-animal-companions.AC-Features.Item.f5t6k3hwRSXqGto1" + } + } + ], + "slug": "construct-eidolon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "astral", + "construct", + "eidolon" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 0, + "size": "med", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "1d1bn": { + "img": "systems/pf2e/icons/features/classes/eidolon.webp", + "name": "Eidolon Ability", + "level": 1, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.5E71mdImeRE9Fh1D" + } + }, + "vision": "darkvision", + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:53.834-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.QlhL9vPXzjhkYd8W", + "duplicateSource": null + }, + "_key": "!items!dnQUp0Vhg3XdZFtP" +} diff --git a/packs/ac-eidolons/Demon_Eidolon_P5GSucPtackfg6Qt.json b/packs/ac-eidolons/Demon_Eidolon_P5GSucPtackfg6Qt.json new file mode 100644 index 0000000..540e626 --- /dev/null +++ b/packs/ac-eidolons/Demon_Eidolon_P5GSucPtackfg6Qt.json @@ -0,0 +1,174 @@ +{ + "_id": "P5GSucPtackfg6Qt", + "name": "Demon Eidolon", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 400000, + "flags": { + "core": { + "sourceId": "Item.QlhL9vPXzjhkYd8W" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon is a demon, born of mortal sin congealed amid the chaos and evil of the Abyss, using its link to you to spread chaos at your side. Choose an associated sin for your demon. Demon eidolons have appearances as varied as the infinite Abyss. While demons are inherently untrustworthy, your demon eidolon has reached an accord with you and generally keeps it, though that doesn't mean your eidolon isn't actively working to bring your life deeper into its associated sin. Though a true demon, your demon eidolon's link to you as a mortal prevents them from casting the abyssal pact ritual, even if they somehow learn it.
\nTradition divine
\nTraits demon, eidolon, fiend
\nAlignment must be chaotic evil
\nHome Plane The Abyss
\nSize Medium or Small
\nSuggested Attacks claw (slashing), jaws (piercing), horn (piercing), tail (bludgeoning), tentacle (bludgeoning), wing (bludgeoning)
\nWrecker Demon Str 18, Dex 14, Con 16, Int 10, Wis 8, Cha 12; +2 AC (+3 Dex cap)
\nTempter Demon Str 12, Dex 18, Con 12, Int 10, Wis 10, Cha 16; +1 AC (+4 Dex cap)
\nSkills Intimidation, Religion
\nSenses darkvision
\nLanguage Abyssal
\nSpeed 25 feet
\nEidolon Abilities Initial @UUID[Compendium.pf2e-animal-companions.AC-Features.Item.o3P8heIfNr1z53Ay]{demonic strikes}; Symbiosis @UUID[Compendium.pf2e-animal-companions.AC-Features.cnYMvDxCRY4NvUmJ]{visions of sin}; Transcendence @UUID[Compendium.pf2e-animal-companions.AC-Features.C0zzz9wVwfmGtfIQ]{blasphemous decree}
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.ajYVsdmTxkHEXWVO" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.WfNq9WV1ERdAz7xG" + } + ], + "flag": "eidolonType", + "key": "ChoiceSet", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.eidolonType}" + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.itm.rank", + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.rel.rank", + "value": 1 + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeSmall", + "value": "sm" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.xPn27nNxcLOByTXJ" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "flags.pf2e.eidolon-features", + "value": { + "initial": "Compendium.pf2e-animal-companions.AC-Features.Item.o3P8heIfNr1z53Ay", + "symbiosis": "Compendium.pf2e-animal-companions.AC-Features.cnYMvDxCRY4NvUmJ", + "transcendence": "Compendium.pf2e-animal-companions.AC-Features.C0zzz9wVwfmGtfIQ" + } + } + ], + "slug": "demon-eidolon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "demon", + "eidolon", + "fiend" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 0, + "size": "med", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "abyssal" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "28d4x": { + "img": "systems/pf2e/icons/features/classes/eidolon.webp", + "name": "Eidolon Ability", + "level": 1, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.5E71mdImeRE9Fh1D" + } + }, + "vision": "darkvision", + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:53.835-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.QlhL9vPXzjhkYd8W", + "duplicateSource": null + }, + "_key": "!items!P5GSucPtackfg6Qt" +} diff --git a/packs/ac-eidolons/Devotion_Phantom_Eidolon_1YJoaMhZPvLGvj1J.json b/packs/ac-eidolons/Devotion_Phantom_Eidolon_1YJoaMhZPvLGvj1J.json new file mode 100644 index 0000000..005b565 --- /dev/null +++ b/packs/ac-eidolons/Devotion_Phantom_Eidolon_1YJoaMhZPvLGvj1J.json @@ -0,0 +1,172 @@ +{ + "_id": "1YJoaMhZPvLGvj1J", + "name": "Devotion Phantom Eidolon", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 100000, + "flags": { + "core": { + "sourceId": "Item.QlhL9vPXzjhkYd8W" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon is a lost soul, unable to escape the mortal world due to a strong sense of duty, an undying devotion, or a need to complete an important task. Most phantom eidolons are humanoid with a spectral or ectoplasmic appearance, though some take far stranger forms. Your link with your eidolon prevents them from succumbing to corruption and undeath, and together, you will grow in strength and fulfill your phantom's devotion.
\nTradition occult
\nTraits eidolon, ethereal, phantom
\nHome Plane Ethereal Plane
\nSize Medium or Small
\nSuggested Attacks fist (bludgeoning), tendril (bludgeoning), unarmed attacks shaped like a weapon
\nStalwart Guardian Str 18, Dex 14, Con 16, Int 10, Wis 10, Cha 10; +2 AC (+3 Dex cap)
\nSwift Protector Str 14, Dex 18, Con 16, Int 10, Wis 10, Cha 10; +1 AC (+4 Dex cap)
\nSkills Medicine, Occultism
\nSenses darkvision
\nLanguage one common mortal language the eidolon spoke in life
\nSpeed 25 feet
\nEidolon Abilities Initial @UUID[Compendium.pf2e-animal-companions.AC-Features.Item.V5bcYgKbJTHdOBHI]{dutiful retaliation}; Symbiosis @UUID[Compendium.pf2e-animal-companions.AC-Features.N47g9LDkOdZZdgup]{steadfast devotion}; Transcendence @UUID[Compendium.pf2e-animal-companions.AC-Features.Item.oOBWRXPtYIXWp5Sm]{devotion aura}
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.WRWGcHidHQz4ef2W" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.TDWe85aZadixqmRU" + } + ], + "flag": "eidolonType", + "key": "ChoiceSet", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.eidolonType}" + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.med.rank", + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.occ.rank", + "value": 1 + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeSmall", + "value": "sm" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.xPn27nNxcLOByTXJ" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "flags.pf2e.eidolon-features", + "value": { + "initial": "Compendium.pf2e-animal-companions.AC-Features.Item.V5bcYgKbJTHdOBHI", + "symbiosis": "Compendium.pf2e-animal-companions.AC-Features.N47g9LDkOdZZdgup", + "transcendence": "Compendium.pf2e-animal-companions.AC-Features.oOBWRXPtYIXWp5Sm" + } + } + ], + "slug": "devotion-phantom-eidolon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "eidolon", + "ethereal", + "phantom" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 0, + "size": "med", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "tww0l": { + "img": "systems/pf2e/icons/features/classes/eidolon.webp", + "name": "Eidolon Ability", + "level": 1, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.5E71mdImeRE9Fh1D" + } + }, + "vision": "darkvision", + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:53.837-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.QlhL9vPXzjhkYd8W", + "duplicateSource": null + }, + "_key": "!items!1YJoaMhZPvLGvj1J" +} diff --git a/packs/ac-eidolons/Dragon_Eidolon_XDxYBQ6TRCJzoKbf.json b/packs/ac-eidolons/Dragon_Eidolon_XDxYBQ6TRCJzoKbf.json new file mode 100644 index 0000000..b4f1a8f --- /dev/null +++ b/packs/ac-eidolons/Dragon_Eidolon_XDxYBQ6TRCJzoKbf.json @@ -0,0 +1,152 @@ +{ + "_id": "XDxYBQ6TRCJzoKbf", + "name": "Dragon Eidolon", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 700000, + "flags": { + "core": { + "sourceId": "Item.QlhL9vPXzjhkYd8W" + } + }, + "system": { + "description": { + "gm": "", + "value": "Because dragons have a strong connection to magic, their minds can often leave an echo floating in the Astral Plane. Such an entity is extremely powerful but unable to interact with the outside world on its own. Dragon eidolons manifest in the powerful, scaled forms they had in life; most take the form of true dragons (albeit smaller), but some manifest as drakes or other draconic beings. You have forged a connection with such a dragon eidolon and together, you seek to grow as powerful as an ancient wyrm.
\nTradition arcane
\nTraits astral, dragon, eidolon, and one more (see Breath Weapon below)
\nHome Plane Astral Plane
\nSize Medium
\nSuggested Attacks claw (slashing), jaws (piercing), horn (piercing), tail (bludgeoning), wing (bludgeoning)
\nMarauding Dragon Str 18, Dex 14, Con 16, Int 10, Wis 10, Cha 10; +2 AC (+3 Dex cap)
\nCunning Dragon Str 12, Dex 18, Con 12, Int 14, Wis 10, Cha 12; +1 AC (+4 Dex cap)
\nSkills Arcana, Intimidation
\nSenses darkvision
\nLanguage Draconic
\nSpeed 25 feet
\nEidolon Abilities Initial @UUID[Compendium.pf2e-animal-companions.AC-Features.Item.I8fG26JJS29ZYwfZ]{breath weapon}; Symbiosis @UUID[Compendium.pf2e-animal-companions.AC-Features.Item.oSjJ726kv8wvk1Rb]{draconic frenzy}; Transcendence @UUID[Compendium.pf2e-animal-companions.AC-Features.Item.P7qw5V2ylPwCWMPB]{wyrm's breath}
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.JcYmSwl3FCjqFEMm" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.FM1HQ1kqC3N9nWr0" + } + ], + "flag": "eidolonType", + "key": "ChoiceSet", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.eidolonType}" + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.itm.rank", + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.arc.rank", + "value": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.xPn27nNxcLOByTXJ" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "flags.pf2e.eidolon-features", + "value": { + "initial": "Compendium.pf2e-animal-companions.AC-Features.Item.I8fG26JJS29ZYwfZ", + "symbiosis": "Compendium.pf2e-animal-companions.AC-Features.Item.oSjJ726kv8wvk1Rb", + "transcendence": "Compendium.pf2e-animal-companions.AC-Features.Item.P7qw5V2ylPwCWMPB" + } + } + ], + "slug": "dragon-eidolon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "astral", + "dragon", + "eidolon" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 0, + "size": "med", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "draconic" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "jltce": { + "img": "systems/pf2e/icons/features/classes/eidolon.webp", + "name": "Eidolon Ability", + "level": 1, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.5E71mdImeRE9Fh1D" + } + }, + "vision": "darkvision", + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:53.835-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.QlhL9vPXzjhkYd8W", + "duplicateSource": null + }, + "_key": "!items!XDxYBQ6TRCJzoKbf" +} diff --git a/packs/ac-eidolons/Elemental_Eidolon_Int1LFtquj8MTIFp.json b/packs/ac-eidolons/Elemental_Eidolon_Int1LFtquj8MTIFp.json new file mode 100644 index 0000000..e82f715 --- /dev/null +++ b/packs/ac-eidolons/Elemental_Eidolon_Int1LFtquj8MTIFp.json @@ -0,0 +1,149 @@ +{ + "name": "Elemental Eidolon", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "flags": { + "core": {} + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon is a primal chunk of elemental matter infused with sapience, power, and identity, but unable to manifest a true form of their own without the life force you provide via your connection. Most elementals in their natural environment already have different sorts of forms, from vaguely humanoid, to animalistic, to simple masses of their component element. As your life force provides your eidolon the instincts necessary to adopt a physical form, their appearance varies based on the strength of their own self image and your prior exposure to elementals.
\nElemental eidolons tend to reach their unusual state— powerful but formless—as the result of large scale events or cataclysms, such as the war to seal the benevolent Elemental Lords or their recent unsealing. Whether elemental eidolons possess any memories of a previous life or are a new sapience formed from left‑over essence of a mighty servant of the Elemental Lords brought low varies from eidolon to eidolon. Together, you might undertake a journey to understand your eidolon's mysterious past or leave the past behind and forge a new destiny of your own.
\nTradition primal
\nTraits eidolon, elemental, and one more (see Elemental Core, below)
\nHome Plane: elemental plane matching their Elemental Core
\nSize Medium
\nSuggested Attacks branch (bludgeoning), fist (bludgeoning), spike (piercing), tendril (bludgeoning), wave (bludgeoning)
\nAdaptable Elemental Str +1, Dex +4, Con +3, Int +0, Wis +1, Cha +0; +1 AC (+4 Dex cap)
\nPrimordial Elemental Str +4, Dex +2, Con +3, Int –1, Wis +1, Cha +0; +2 AC (+3 Dex cap)
\nSkills Nature, Survival
\nSenses darkvision
\nLanguages Sussuran (air elemental), Petran (earth elemental), Pyric (fire elemental), Talican (metal elemental), Thalassic (water elemental), or Muan (wood elemental),
\nSpeed 25 feet
\nAbilities Initial @UUID[Compendium.pf2e-animal-companions.AC-Features.Item.I8ZJ99qzuGDEDbII]{elemental core}; Symbiosis @UUID[Compendium.pf2e-animal-companions.AC-Features.9P5AFhhbU1I2sOEN]{elemental burst}; Transcendence @UUID[Compendium.pf2e-animal-companions.AC-Features.rF67DRcO2oJKJt5t]{elemental maelstrom}
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.Bct9n12OLVxFtmY1" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.uC70GaoV83y2RPPG" + } + ], + "flag": "eidolonType", + "key": "ChoiceSet", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.eidolonType}", + "allowDuplicate": false + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.nat.rank", + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.sur.rank", + "value": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.xPn27nNxcLOByTXJ", + "allowDuplicate": false + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "flags.pf2e.eidolon-features", + "value": { + "initial": "Compendium.pf2e-animal-companions.AC-Features.Item.I8ZJ99qzuGDEDbII", + "symbiosis": "Compendium.pf2e-animal-companions.AC-Features.9P5AFhhbU1I2sOEN", + "transcendence": "Compendium.pf2e-animal-companions.AC-Features.rF67DRcO2oJKJt5t" + } + } + ], + "slug": "dragon-eidolon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "eidolon" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 0, + "size": "med", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "ScqCO": { + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.I8ZJ99qzuGDEDbII", + "img": "systems/pf2e/icons/spells/eclipse-burst.webp", + "name": "Elemental Core", + "level": 0 + } + }, + "vision": "darkvision", + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:53.835-04:00", + "version": { + "schema": 0.854, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3, + "qA45GVv5hySaf9b5": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "Int1LFtquj8MTIFp", + "sort": 600000, + "_key": "!items!Int1LFtquj8MTIFp" +} diff --git a/packs/ac-eidolons/Fey_Eidolon_zjIVbS6nGX6BS2UD.json b/packs/ac-eidolons/Fey_Eidolon_zjIVbS6nGX6BS2UD.json new file mode 100644 index 0000000..9abd4fd --- /dev/null +++ b/packs/ac-eidolons/Fey_Eidolon_zjIVbS6nGX6BS2UD.json @@ -0,0 +1,173 @@ +{ + "_id": "zjIVbS6nGX6BS2UD", + "name": "Fey Eidolon", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 1200000, + "flags": { + "core": { + "sourceId": "Item.QlhL9vPXzjhkYd8W" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon is a fey, a capricious being of the mysterious First World. Many fey appear similar to mortal humanoids with unusual features such as pointed ears, wings, or bodies composed of natural elements, but the full variety of fey is endless, and many others appear completely inhuman. Fey from the First World never truly die, instead forming a new creature. Fey eidolons usually come about when a summoner helps stabilize a difficult reformation. This means your fey eidolon likely lived a different life just before meeting you and might remember fragments of its old memories. Together, you might have to unravel a memory from your eidolon's past life among the fey.
\nTradition primal (but see Fey Gift Spells below)
\nTraits eidolon, fey
\nHome Plane First World
\nSize Small or Medium
\nSuggested Attacks fist (bludgeoning), wing (bludgeoning), attacks shaped like a weapon
\nSkirmisher Fey Str 14, Dex 18, Con 14, Int 10, Wis 10, Cha 12; +1 AC (+4 Dex cap)
\nTrickster Fey Str 12, Dex 18, Con 12, Int 12, Wis 8, Cha 16; +1 AC (+4 Dex cap)
\nSkills Deception, Nature
\nSenses low-light vision
\nLanguage Sylvan
\nSpeed 25 feet
\nEidolon Abilities Initial fey @UUID[Compendium.pf2e-animal-companions.AC-Features.Item.uqwHH20BKk3WcjbW]{fey gift spells}; Symbiosis @UUID[Compendium.pf2e-animal-companions.AC-Features.Item.pn0rELSmLV6G5FUu]{fey mischief}; Transcendence @UUID[Compendium.pf2e-animal-companions.AC-Features.VZQ3CcjOZFG57R0O]{fey chicanery}
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.F8wk9ybBPYBeoszZ" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.ADnKqMNT8kKfPl9o" + } + ], + "flag": "eidolonType", + "key": "ChoiceSet", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.eidolonType}" + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.dec.rank", + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.nat.rank", + "value": 1 + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeSmall", + "value": "sm" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.xPn27nNxcLOByTXJ" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "flags.pf2e.eidolon-features", + "value": { + "initial": "Compendium.pf2e-animal-companions.AC-Features.Item.uqwHH20BKk3WcjbW", + "symbiosis": "Compendium.pf2e-animal-companions.AC-Features.Item.pn0rELSmLV6G5FUu", + "transcendence": "Compendium.pf2e-animal-companions.AC-Features.VZQ3CcjOZFG57R0O" + } + } + ], + "slug": "fey-eidolon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "eidolon", + "fey" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 0, + "size": "med", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "fey" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "8kzmr": { + "img": "systems/pf2e/icons/features/classes/eidolon.webp", + "name": "Eidolon Ability", + "level": 1, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.5E71mdImeRE9Fh1D" + } + }, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:53.832-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.QlhL9vPXzjhkYd8W", + "duplicateSource": null + }, + "_key": "!items!zjIVbS6nGX6BS2UD" +} diff --git a/packs/ac-eidolons/LOG b/packs/ac-eidolons/LOG deleted file mode 100644 index dff706a..0000000 --- a/packs/ac-eidolons/LOG +++ /dev/null @@ -1,3 +0,0 @@ -2024/05/19-12:56:42.514 4158 Recovering log #266 -2024/05/19-12:56:42.521 4158 Delete type=0 #266 -2024/05/19-12:56:42.521 4158 Delete type=3 #264 diff --git a/packs/ac-eidolons/LOG.old b/packs/ac-eidolons/LOG.old deleted file mode 100644 index 82991cc..0000000 --- a/packs/ac-eidolons/LOG.old +++ /dev/null @@ -1,7 +0,0 @@ -2024/05/19-16:38:49.565631 ffff95fbd100 Recovering log #262 -2024/05/19-16:38:49.572399 ffff95fbd100 Delete type=0 #262 -2024/05/19-16:38:49.572430 ffff95fbd100 Delete type=3 #260 -2024/05/19-16:45:29.742048 fffe74bad100 Level-0 table #267: started -2024/05/19-16:45:29.742090 fffe74bad100 Level-0 table #267: 0 bytes OK -2024/05/19-16:45:29.744804 fffe74bad100 Delete type=0 #265 -2024/05/19-16:45:29.750205 fffe74bad100 Manual compaction at level-0 from '!items!1YJoaMhZPvLGvj1J' @ 72057594037927935 : 1 .. '!items!zjIVbS6nGX6BS2UD' @ 0 : 0; will stop at (end) diff --git a/packs/ac-eidolons/MANIFEST-000264 b/packs/ac-eidolons/MANIFEST-000264 deleted file mode 100644 index 0818a5d..0000000 Binary files a/packs/ac-eidolons/MANIFEST-000264 and /dev/null differ diff --git a/packs/ac-eidolons/MANIFEST-000268 b/packs/ac-eidolons/MANIFEST-000268 deleted file mode 100644 index b2a28fb..0000000 Binary files a/packs/ac-eidolons/MANIFEST-000268 and /dev/null differ diff --git a/packs/ac-eidolons/Plant_Eidolon_7a1ei105k24XkJG0.json b/packs/ac-eidolons/Plant_Eidolon_7a1ei105k24XkJG0.json new file mode 100644 index 0000000..8da5260 --- /dev/null +++ b/packs/ac-eidolons/Plant_Eidolon_7a1ei105k24XkJG0.json @@ -0,0 +1,173 @@ +{ + "_id": "7a1ei105k24XkJG0", + "name": "Plant Eidolon", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 300000, + "flags": { + "core": { + "sourceId": "Item.QlhL9vPXzjhkYd8W" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon is an intelligent plant, formed from the same disembodied fragments of nature's life energy that become leshys. Plant eidolons tend to be curious and adaptable, with temperaments based on the parts of mortal culture they feel affinity toward. Despite coming from the same source, plant eidolons don't always look like leshys. Plant eidolons have forms that vary greatly and can look like almost any kind of plant creature in existence. Some even resemble plant creatures so strange they are impossible to identify.
\nTradition primal
\nTraits eidolon, plant
\nHome Plane Material Plane
\nSize Medium
\nSuggested Attacks vine (bludgeoning), branch (bludgeoning), root (bludgeoning)
\nGuardian Plant Str 18, Dex 14, Con 16, Int 8, Wis 12, Cha 10; +2 AC (+3 Dex cap)
\nCreeping Plant Str 12, Dex 18, Con 16, Int 8, Wis 14, Cha 10; +1 AC (+4 Dex cap)
\nSkills Nature, Survival
\nSenses low-light vision
\nLanguage Sylvan
\nSpeed 25 feet
\nEidolon Abilities Initial @UUID[Compendium.pf2e-animal-companions.AC-Features.iunzITJGz0QUudUk]{tendril strike}; Symbiosis @UUID[Compendium.pf2e-animal-companions.AC-Features.sSfOct37bkinwW5E]{growing vines}; Transcendence @UUID[Compendium.pf2e-animal-companions.AC-Features.kpcL3Iz1KJnmEKwC]{field of roots}
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5I9rbPGBER1gzqXT" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.1maDsT21my4REUEX" + } + ], + "flag": "eidolonType", + "key": "ChoiceSet", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.eidolonType}" + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.nat.rank", + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.sur.rank", + "value": 1 + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeSmall", + "value": "sm" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.xPn27nNxcLOByTXJ" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "flags.pf2e.eidolon-features", + "value": { + "initial": "Compendium.pf2e-animal-companions.AC-Features.iunzITJGz0QUudUk", + "symbiosis": "Compendium.pf2e-animal-companions.AC-Features.sSfOct37bkinwW5E", + "transcendence": "Compendium.pf2e-animal-companions.AC-Features.kpcL3Iz1KJnmEKwC" + } + } + ], + "slug": "plant-eidolon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "eidolon", + "plant" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 0, + "size": "med", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "fey" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "safrb": { + "img": "systems/pf2e/icons/features/classes/eidolon.webp", + "name": "Eidolon Ability", + "level": 1, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.5E71mdImeRE9Fh1D" + } + }, + "vision": "lowLightVision", + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:53.836-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.QlhL9vPXzjhkYd8W", + "duplicateSource": null + }, + "_key": "!items!7a1ei105k24XkJG0" +} diff --git a/packs/ac-eidolons/Psychopomp_Eidolon_fvGz8fdP3iW8IBda.json b/packs/ac-eidolons/Psychopomp_Eidolon_fvGz8fdP3iW8IBda.json new file mode 100644 index 0000000..7d76b11 --- /dev/null +++ b/packs/ac-eidolons/Psychopomp_Eidolon_fvGz8fdP3iW8IBda.json @@ -0,0 +1,154 @@ +{ + "_id": "fvGz8fdP3iW8IBda", + "name": "Psychopomp Eidolon", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 900000, + "flags": { + "core": { + "sourceId": "Item.QlhL9vPXzjhkYd8W" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon is a psychopomp, a creature whose sworn duty is to usher souls safely to the afterlife and maintain the courts of the dead. Psychopomp eidolons have a variety of appearances, but since they often traffic with mortals, their form typically includes an elaborate mask. You and your psychopomp eidolon share an important fate together, whether it relates directly to your own soul or to a mission that will somehow protect the souls of others.
\nTradition divine
\nTraits eidolon, monitor, psychopomp
\nAlignment must be true neutral
\nHome Plane The Boneyard
\nSize Medium
\nSuggested Attacks beak (piercing), claw (slashing), fist (bludgeoning), jaws (piercing), unarmed attacks shaped like a weapon
\nSoul Guardian Str 18, Dex 14, Con 16, Int 10, Wis 12, Cha 8; +2 AC (+3 Dex cap)
\nScribe of the Dead Str 12, Dex 18, Con 12, Int 14, Wis 12, Cha 10; +1 AC (+4 Dex cap)
\nSkills Intimidation, Religion
\nSenses darkvision
\nLanguage Requian
\nSpeed 25 feet
\nEidolon Abilities Initial @UUID[Compendium.pf2e-animal-companions.AC-Features.gyI9aHjkO84BQ3tR]{spirit touch}; Symbiosis @UUID[Compendium.pf2e-animal-companions.AC-Features.qFYR3I9XcjBZckUf]{hidden watcher}; Transcendence @UUID[Compendium.pf2e-animal-companions.AC-Features.rFuzSio2a1VOd2Ch]{spirit taker}
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.YkevbtGldcm34DlT" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.VXlVUNQjQls2ubwX" + } + ], + "flag": "eidolonType", + "key": "ChoiceSet", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.eidolonType}", + "allowDuplicate": false + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.itm.rank", + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.rel.rank", + "value": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.xPn27nNxcLOByTXJ", + "allowDuplicate": false + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "flags.pf2e.eidolon-features", + "value": { + "initial": "Compendium.pf2e-animal-companions.AC-Features.gyI9aHjkO84BQ3tR", + "symbiosis": "Compendium.pf2e-animal-companions.AC-Features.qFYR3I9XcjBZckUf", + "transcendence": "Compendium.pf2e-animal-companions.AC-Features.rFuzSio2a1VOd2Ch" + } + } + ], + "slug": "psychopomp-eidolon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "eidolon", + "monitor", + "psychopomp" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 0, + "size": "med", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "requian" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "dvkxn": { + "img": "systems/pf2e/icons/features/classes/eidolon.webp", + "name": "Eidolon Ability", + "level": 1, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.5E71mdImeRE9Fh1D" + } + }, + "vision": "darkvision", + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:53.837-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.QlhL9vPXzjhkYd8W", + "duplicateSource": null + }, + "_key": "!items!fvGz8fdP3iW8IBda" +} diff --git a/packs/ac-eidolons/Undead_Eidolon_UjTUvPAdzj3Ybg8s.json b/packs/ac-eidolons/Undead_Eidolon_UjTUvPAdzj3Ybg8s.json new file mode 100644 index 0000000..1021495 --- /dev/null +++ b/packs/ac-eidolons/Undead_Eidolon_UjTUvPAdzj3Ybg8s.json @@ -0,0 +1,202 @@ +{ + "_id": "UjTUvPAdzj3Ybg8s", + "name": "Undead Eidolon", + "type": "ancestry", + "img": "systems/pf2e/icons/default-icons/ancestry.svg", + "effects": [], + "folder": null, + "sort": 500000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Eidolons.Item.UjTUvPAdzj3Ybg8s" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon is an undead spirit pulled from the Ethereal Plane or Negative Energy Plane, embodied, and bound to your life force in an unusual, potentially antithetical way that even other summoners can't quite understand. Undead eidolons take about every imaginable shape and form, as their bodies manifest from their connection to you. Their ultimate form can be influenced by an amalgamation of the echoes and memories of their old life before becoming undead, their cause of death, their encounters in the afterlife, and portions of your own essences. Together, you and your eidolon need to explore the mysteries of life, death, and undeath to understand what your bond means for both of your futures.
\nTradition divine
\nTraits eidolon, undead
\nHome Plane Ethereal Plane or Negative Energy Plane
\nSize Medium or Small
\nSuggested Attacks claw (slashing), fist (bludgeoning), jaws (piercing)
\nUndead Brute Str 18, Dex 14, Con 16, Int 8, Wis 10, Cha 12
\nUndead Stalker Str 14, Dex 18, Con 16, Int 8, Wis 12, Cha 10
\nSkills Intimidation, Religion
\nSenses darkvision
\nLanguage Necril
\nSpeed 25 feet
\nAbilities Initial @UUID[Compendium.pf2e-animal-companions.AC-Features.Item.CdQUkt9tPINNqSok]{negative essence}; Symbiosis @UUID[Compendium.pf2e-animal-companions.AC-Features.oxpHUtYre2CTaE4t]{drain life}; Transcendence @UUID[Compendium.pf2e-animal-companions.AC-Features.ISKjzLSNysEr7Kit]{rejuvenation}
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.drVBJuBlzQDb9sS0" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.xE3lRxl1t4ulQyLa" + } + ], + "flag": "eidolonType", + "key": "ChoiceSet", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.eidolonType}", + "allowDuplicate": false + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.itm.rank", + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.skills.rel.rank", + "value": 1 + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.ActorSizeMedium", + "value": "med" + }, + { + "label": "PF2E.ActorSizeSmall", + "value": "sm" + } + ], + "flag": "companionSize", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.CreatureSize" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.traits.size.value", + "value": "{item|flags.pf2e.rulesSelections.companionSize}" + }, + { + "key": "FlatModifier", + "selector": "saving-throw", + "type": "circumstance", + "value": 2, + "predicate": [ + { + "or": [ + "disease", + "death-effect", + "poison" + ] + } + ] + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.xPn27nNxcLOByTXJ", + "allowDuplicate": false + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "flags.pf2e.eidolon-features", + "value": { + "initial": "Compendium.pf2e-animal-companions.AC-Features.Item.CdQUkt9tPINNqSok", + "symbiosis": "Compendium.pf2e-animal-companions.AC-Features.oxpHUtYre2CTaE4t", + "transcendence": "Compendium.pf2e-animal-companions.AC-Features.ISKjzLSNysEr7Kit" + } + } + ], + "slug": "undead-eidolon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "eidolon", + "undead" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "hp": 0, + "size": "med", + "reach": 5, + "speed": 25, + "boosts": { + "0": { + "value": [] + }, + "1": { + "value": [] + }, + "2": { + "value": [] + } + }, + "flaws": { + "0": { + "value": [] + } + }, + "languages": { + "value": [ + "necril" + ], + "custom": "" + }, + "additionalLanguages": { + "count": 0, + "value": [], + "custom": "" + }, + "items": { + "ryll6": { + "img": "systems/pf2e/icons/features/classes/eidolon.webp", + "name": "Eidolon Ability", + "level": 0, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.5E71mdImeRE9Fh1D" + }, + "qe0pb": { + "img": "systems/pf2e/icons/spells/bestial-curse.webp", + "name": "Negative Essence", + "level": 0, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.CdQUkt9tPINNqSok" + }, + "if96p": { + "img": "systems/pf2e/icons/spells/vampiric-touch.webp", + "name": "Drain Life", + "level": 0, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.oxpHUtYre2CTaE4t" + } + }, + "vision": "darkvision", + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:53.838-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Eidolons.Item.UjTUvPAdzj3Ybg8s", + "duplicateSource": null + }, + "_key": "!items!UjTUvPAdzj3Ybg8s" +} diff --git a/packs/ac-equipment/CURRENT b/packs/ac-equipment/CURRENT deleted file mode 100644 index f10934b..0000000 --- a/packs/ac-equipment/CURRENT +++ /dev/null @@ -1 +0,0 @@ -MANIFEST-000265 diff --git a/packs/ac-equipment/Heavy_Barding_2SeEnERJqaECplam.json b/packs/ac-equipment/Heavy_Barding_2SeEnERJqaECplam.json new file mode 100644 index 0000000..e0cffd9 --- /dev/null +++ b/packs/ac-equipment/Heavy_Barding_2SeEnERJqaECplam.json @@ -0,0 +1,154 @@ +{ + "name": "Heavy Barding", + "type": "armor", + "img": "systems/pf2e/icons/equipment/armor/studded-leather-armor.webp", + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [], + "slug": "heavy-barding", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "barding" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 2 + }, + "quantity": 1, + "baseItem": null, + "bulk": { + "value": 0.1 + }, + "hp": { + "value": 0, + "max": 0 + }, + "hardness": 0, + "price": { + "value": { + "gp": 25 + } + }, + "equipped": { + "carryType": "worn", + "invested": null, + "handsHeld": 0, + "inSlot": false + }, + "containerId": null, + "size": "med", + "material": { + "type": null, + "grade": null + }, + "identification": { + "status": "identified", + "unidentified": { + "name": "Unusual Armor", + "img": "systems/pf2e/icons/unidentified_item_icons/armor.webp", + "data": { + "description": { + "value": "" + } + } + }, + "misidentified": {} + }, + "category": "light", + "group": null, + "acBonus": 3, + "strength": 5, + "dexCap": 3, + "checkPenalty": -3, + "speedPenalty": -10, + "runes": { + "potency": 0, + "resilient": 0, + "property": [] + }, + "subitems": [], + "source": { + "value": "Pathfinder Core Rulebook" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:56.448-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "weight": { + "value": "4" + }, + "equippedBulk": { + "value": "" + }, + "stackGroup": null, + "negateBulk": { + "value": "0" + }, + "preciousMaterial": { + "value": null + }, + "preciousMaterialGrade": { + "value": null + }, + "usage": { + "value": "wornarmor" + }, + "potencyRune": { + "value": null + }, + "resiliencyRune": { + "value": null + }, + "propertyRune1": { + "value": null + }, + "propertyRune2": { + "value": null + }, + "propertyRune3": { + "value": null + }, + "propertyRune4": { + "value": null + } + }, + "effects": [], + "flags": {}, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "2SeEnERJqaECplam", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!2SeEnERJqaECplam" +} diff --git a/packs/ac-equipment/LOG b/packs/ac-equipment/LOG deleted file mode 100644 index fe1ee23..0000000 --- a/packs/ac-equipment/LOG +++ /dev/null @@ -1,3 +0,0 @@ -2024/05/19-12:56:42.446 1d10 Recovering log #263 -2024/05/19-12:56:42.455 1d10 Delete type=0 #263 -2024/05/19-12:56:42.455 1d10 Delete type=3 #261 diff --git a/packs/ac-equipment/LOG.old b/packs/ac-equipment/LOG.old deleted file mode 100644 index 73d0136..0000000 --- a/packs/ac-equipment/LOG.old +++ /dev/null @@ -1,7 +0,0 @@ -2024/05/19-16:38:49.514201 ffff96fbf100 Recovering log #259 -2024/05/19-16:38:49.521526 ffff96fbf100 Delete type=0 #259 -2024/05/19-16:38:49.521560 ffff96fbf100 Delete type=3 #257 -2024/05/19-16:45:29.726843 fffe74bad100 Level-0 table #264: started -2024/05/19-16:45:29.726961 fffe74bad100 Level-0 table #264: 0 bytes OK -2024/05/19-16:45:29.729584 fffe74bad100 Delete type=0 #262 -2024/05/19-16:45:29.729820 fffe74bad100 Manual compaction at level-0 from '!items!2SeEnERJqaECplam' @ 72057594037927935 : 1 .. '!items!suEEtFqaGpPG2OHt' @ 0 : 0; will stop at (end) diff --git a/packs/ac-equipment/Light_Barding_suEEtFqaGpPG2OHt.json b/packs/ac-equipment/Light_Barding_suEEtFqaGpPG2OHt.json new file mode 100644 index 0000000..d57a18a --- /dev/null +++ b/packs/ac-equipment/Light_Barding_suEEtFqaGpPG2OHt.json @@ -0,0 +1,154 @@ +{ + "name": "Light Barding", + "type": "armor", + "img": "systems/pf2e/icons/equipment/armor/studded-leather-armor.webp", + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [], + "slug": "light-barding", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "barding" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "quantity": 1, + "baseItem": null, + "bulk": { + "value": 0.1 + }, + "hp": { + "value": 0, + "max": 0 + }, + "hardness": 0, + "price": { + "value": { + "gp": 10 + } + }, + "equipped": { + "carryType": "worn", + "invested": null, + "handsHeld": 0, + "inSlot": false + }, + "containerId": null, + "size": "med", + "material": { + "type": null, + "grade": null + }, + "identification": { + "status": "identified", + "unidentified": { + "name": "Unusual Armor", + "img": "systems/pf2e/icons/unidentified_item_icons/armor.webp", + "data": { + "description": { + "value": "" + } + } + }, + "misidentified": {} + }, + "category": "light", + "group": null, + "acBonus": 1, + "strength": 3, + "dexCap": 5, + "checkPenalty": -1, + "speedPenalty": -5, + "runes": { + "potency": 0, + "resilient": 0, + "property": [] + }, + "subitems": [], + "source": { + "value": "Pathfinder Core Rulebook" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:56.448-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "weight": { + "value": "2" + }, + "equippedBulk": { + "value": "" + }, + "stackGroup": null, + "negateBulk": { + "value": "0" + }, + "preciousMaterial": { + "value": null + }, + "preciousMaterialGrade": { + "value": null + }, + "usage": { + "value": "wornarmor" + }, + "potencyRune": { + "value": null + }, + "resiliencyRune": { + "value": null + }, + "propertyRune1": { + "value": null + }, + "propertyRune2": { + "value": null + }, + "propertyRune3": { + "value": null + }, + "propertyRune4": { + "value": null + } + }, + "effects": [], + "flags": {}, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "suEEtFqaGpPG2OHt", + "folder": null, + "sort": 0, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!suEEtFqaGpPG2OHt" +} diff --git a/packs/ac-equipment/MANIFEST-000261 b/packs/ac-equipment/MANIFEST-000261 deleted file mode 100644 index 7272782..0000000 Binary files a/packs/ac-equipment/MANIFEST-000261 and /dev/null differ diff --git a/packs/ac-equipment/MANIFEST-000265 b/packs/ac-equipment/MANIFEST-000265 deleted file mode 100644 index e4d1fc2..0000000 Binary files a/packs/ac-equipment/MANIFEST-000265 and /dev/null differ diff --git a/packs/ac-equipment/Skysunder_mQyhSg9M3VdGEUrN.json b/packs/ac-equipment/Skysunder_mQyhSg9M3VdGEUrN.json new file mode 100644 index 0000000..b4656f2 --- /dev/null +++ b/packs/ac-equipment/Skysunder_mQyhSg9M3VdGEUrN.json @@ -0,0 +1,195 @@ +{ + "_id": "mQyhSg9M3VdGEUrN", + "img": "systems/pf2e/icons/equipment/weapons/clan-dagger.webp", + "name": "Skysunder", + "system": { + "description": { + "gm": "", + "value": "This +1 striking clan dagger bears the face of a stern dwarven god, his beard and features forming part of the blade.
\nForming the Bond The PCs complete the @UUID[Compendium.pf2e.spells-srd.Item.w00PBRjENqJa7Vxu]{Rite of Repatriation}.
\nAdvancing the Bond Protect, recover, and restore dwarven culture and people.
\nMinor Gifts deadly spark, divine retribution, word of faith; divine retribution Strikes made with Skysunder gain the deadly d4 trait.
\nMajor Gifts holy light, propelling winds
" + }, + "rules": [], + "slug": "clan-dagger", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "agile", + "dwarf", + "electricity", + "evocation", + "magical", + "parry", + "relic", + "versatile-b" + ], + "rarity": "unique" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 4 + }, + "quantity": 1, + "baseItem": "clan-dagger", + "bulk": { + "value": 0.1 + }, + "hp": { + "value": 0, + "max": 0 + }, + "hardness": 0, + "price": { + "value": { + "gp": 2 + } + }, + "equipped": { + "carryType": "worn", + "invested": null, + "handsHeld": 0 + }, + "containerId": null, + "size": "med", + "material": { + "type": null, + "grade": null + }, + "identification": { + "status": "identified", + "unidentified": { + "name": "Unusual Clan Dagger", + "img": "systems/pf2e/icons/unidentified_item_icons/weapon.webp", + "data": { + "description": { + "value": "" + } + } + }, + "misidentified": {} + }, + "usage": { + "value": "held-in-one-hand" + }, + "category": "simple", + "group": "knife", + "bonus": { + "value": 0 + }, + "damage": { + "dice": 1, + "die": "d4", + "damageType": "piercing", + "persistent": null + }, + "bonusDamage": { + "value": 0 + }, + "splashDamage": { + "value": 0 + }, + "range": null, + "reload": { + "value": "" + }, + "runes": { + "potency": 0, + "striking": 0, + "property": [] + }, + "specific": { + "value": false + }, + "subitems": [], + "property1": { + "value": "", + "dice": 0, + "die": "", + "damageType": "", + "critDice": 0, + "critDie": "", + "critDamage": "", + "critDamageType": "", + "strikeConditionType": "", + "strikeConditionValue": null, + "criticalConditionType": "", + "criticalConditionValue": null + }, + "source": { + "value": "Pathfinder #193: Mantle of Gold" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "version": { + "schema": 0.849, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "weight": { + "value": "L" + }, + "equippedBulk": { + "value": "" + }, + "stackGroup": null, + "negateBulk": { + "value": "0" + }, + "preciousMaterial": { + "value": null + }, + "preciousMaterialGrade": { + "value": null + }, + "MAP": { + "value": "" + }, + "potencyRune": { + "value": 1 + }, + "strikingRune": { + "value": "striking" + }, + "propertyRune1": { + "value": null + }, + "propertyRune2": { + "value": null + }, + "propertyRune3": { + "value": null + }, + "propertyRune4": { + "value": null + } + }, + "type": "weapon", + "flags": { + "core": {} + }, + "effects": [], + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "folder": "lOLw1ARiFu7iZqsU", + "sort": 0, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!mQyhSg9M3VdGEUrN" +} diff --git a/packs/ac-evolution-feats/000233.ldb b/packs/ac-evolution-feats/000233.ldb deleted file mode 100644 index 4a12587..0000000 Binary files a/packs/ac-evolution-feats/000233.ldb and /dev/null differ diff --git a/packs/ac-evolution-feats/000264.log b/packs/ac-evolution-feats/000264.log deleted file mode 100644 index e69de29..0000000 diff --git a/packs/ac-evolution-feats/000267.log b/packs/ac-evolution-feats/000267.log deleted file mode 100644 index cfe5ce5..0000000 Binary files a/packs/ac-evolution-feats/000267.log and /dev/null differ diff --git a/packs/ac-evolution-feats/Advanced_Weaponry__CC__4mkzupImKqVs2JkW.json b/packs/ac-evolution-feats/Advanced_Weaponry__CC__4mkzupImKqVs2JkW.json new file mode 100644 index 0000000..d8bb09e --- /dev/null +++ b/packs/ac-evolution-feats/Advanced_Weaponry__CC__4mkzupImKqVs2JkW.json @@ -0,0 +1,82 @@ +{ + "_id": "4mkzupImKqVs2JkW", + "name": "Advanced Weaponry (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.kFpVgcqREAfDmjXp" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon's attack evolves.
\nChoose one of your eidolon's starting melee unarmed attacks. It gains one of the following traits, chosen when you gain the feat: disarm, grapple, nonlethal, shove, trip, or versatile bludgeoning, piercing, or slashing.
" + }, + "rules": [], + "slug": "advanced-weaponry", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.660-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.kFpVgcqREAfDmjXp", + "duplicateSource": null + }, + "_key": "!items!4mkzupImKqVs2JkW" +} diff --git a/packs/ac-evolution-feats/Alacritous_Action__CC__RBvfnbDcvNDqAMgP.json b/packs/ac-evolution-feats/Alacritous_Action__CC__RBvfnbDcvNDqAMgP.json new file mode 100644 index 0000000..034d527 --- /dev/null +++ b/packs/ac-evolution-feats/Alacritous_Action__CC__RBvfnbDcvNDqAMgP.json @@ -0,0 +1,89 @@ +{ + "_id": "RBvfnbDcvNDqAMgP", + "name": "Alacritous Action (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.Veaf8vm2M9w8bcBI" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon moves more quickly. It gains a +10-foot status bonus to its Speed.
" + }, + "rules": [ + { + "key": "FlatModifier", + "selector": "land-speed", + "type": "status", + "value": 10 + } + ], + "slug": "alacritous-action", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 2 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.657-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.Veaf8vm2M9w8bcBI", + "duplicateSource": null + }, + "_key": "!items!RBvfnbDcvNDqAMgP" +} diff --git a/packs/ac-evolution-feats/Amphibious_Form__CC__Ryed1oD5pMqREk0j.json b/packs/ac-evolution-feats/Amphibious_Form__CC__Ryed1oD5pMqREk0j.json new file mode 100644 index 0000000..17dba54 --- /dev/null +++ b/packs/ac-evolution-feats/Amphibious_Form__CC__Ryed1oD5pMqREk0j.json @@ -0,0 +1,94 @@ +{ + "_id": "Ryed1oD5pMqREk0j", + "name": "Amphibious Form (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.U6lS758rtYGR6aw9" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon adapts to life on land and underwater. It gains the amphibious trait, allowing it to breathe in water and air and to avoid the normal -2 penalty for making bludgeoning and slashing unarmed Strikes underwater. It gains a swim Speed equal to its land Speed or 25 feet, whichever is less; or if it is normally aquatic, it gains a land Speed equal to its swim Speed or 25 feet, whichever is less.
" + }, + "rules": [ + { + "key": "BaseSpeed", + "selector": "swim", + "value": "min(25,@actor.system.attributes.speed.value)" + }, + { + "key": "ActorTraits", + "add": [ + "amphibious" + ] + } + ], + "slug": "amphibious-form", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 2 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.656-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.U6lS758rtYGR6aw9", + "duplicateSource": null + }, + "_key": "!items!Ryed1oD5pMqREk0j" +} diff --git a/packs/ac-evolution-feats/Blood_Frenzy__CC__iYt3zEgqDnVhnHVf.json b/packs/ac-evolution-feats/Blood_Frenzy__CC__iYt3zEgqDnVhnHVf.json new file mode 100644 index 0000000..7a6dbc7 --- /dev/null +++ b/packs/ac-evolution-feats/Blood_Frenzy__CC__iYt3zEgqDnVhnHVf.json @@ -0,0 +1,87 @@ +{ + "_id": "iYt3zEgqDnVhnHVf", + "name": "Blood Frenzy (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.CvMCw6JqvgMPE5uk" + } + }, + "system": { + "description": { + "gm": "", + "value": "Requirements Your eidolon's last action dealt bleed damage to a living creature.
\nYour eidolon flies into a frenzy. It gains the benefits of @Compendium[pf2e.spells-srd.HStu2Yhw3iQER9tY]{Boost Eidolon} and gains temporary HP equal to your level, but takes a -2 penalty to AC. It can't voluntarily end the frenzy or start another frenzy while in the frenzy.
\nThe frenzy lasts for 1 minute, after which your eidolon is @Compendium[pf2e.conditionitems.HL2l2VRSaQHu9lUw]{Fatigued} for 1 minute and can't start another frenzy for 1 minute.
" + }, + "rules": [], + "slug": "blood-frenzy", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "eidolon", + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 6 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": 1 + }, + "prerequisites": { + "value": [ + { + "value": "Bloodletting Claws" + } + ] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.652-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.CvMCw6JqvgMPE5uk", + "duplicateSource": null + }, + "_key": "!items!iYt3zEgqDnVhnHVf" +} diff --git a/packs/ac-evolution-feats/Bloodletting_Claws__CC__OqWpydcRNgVlmm2k.json b/packs/ac-evolution-feats/Bloodletting_Claws__CC__OqWpydcRNgVlmm2k.json new file mode 100644 index 0000000..d0e92a6 --- /dev/null +++ b/packs/ac-evolution-feats/Bloodletting_Claws__CC__OqWpydcRNgVlmm2k.json @@ -0,0 +1,95 @@ +{ + "_id": "OqWpydcRNgVlmm2k", + "name": "Bloodletting Claws (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.lpG7ZXFDZygmkbH4" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon inflicts bleeding wounds on a telling blow. If your eidolon critically hits with a melee unarmed Strike that deals slashing or piercing damage, its target takes [[/r 1d6[persistent,bleed]]] damage. Your eidolon gains an item bonus to this bleed damage equal to the unarmed attack's item bonus to attack rolls. This is a critical specialization effect.
" + }, + "rules": [ + { + "key": "Note", + "selector": "strike-damage", + "text": "If your eidolon critically hits with a melee unarmed Strike that deals slashing or piercing damage, its target takes [[/r 1d6[persistent,bleed]]] damage. Your eidolon gains an item bonus to this bleed damage equal to the unarmed attack's item bonus to attack rolls. This is a critical specialization effect.", + "predicate": [ + "unarmed" + ], + "outcome": [ + "criticalSuccess" + ], + "title": "{item|_id}" + } + ], + "slug": "bloodletting-claws", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 4 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.658-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.lpG7ZXFDZygmkbH4", + "duplicateSource": null + }, + "_key": "!items!OqWpydcRNgVlmm2k" +} diff --git a/packs/ac-evolution-feats/Burrowing_Form__CC__CaZ36nx2kGFRr0ER.json b/packs/ac-evolution-feats/Burrowing_Form__CC__CaZ36nx2kGFRr0ER.json new file mode 100644 index 0000000..c873add --- /dev/null +++ b/packs/ac-evolution-feats/Burrowing_Form__CC__CaZ36nx2kGFRr0ER.json @@ -0,0 +1,88 @@ +{ + "_id": "CaZ36nx2kGFRr0ER", + "name": "Burrowing Form (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.IeiTuTZExH5DQOqH" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon can burrow through loose dirt. Your eidolon gains a burrow Speed of 15 feet.
" + }, + "rules": [ + { + "key": "BaseSpeed", + "selector": "burrow", + "value": "15" + } + ], + "slug": "burrowing-form", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 10 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.659-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.IeiTuTZExH5DQOqH", + "duplicateSource": null + }, + "_key": "!items!CaZ36nx2kGFRr0ER" +} diff --git a/packs/ac-evolution-feats/CURRENT b/packs/ac-evolution-feats/CURRENT deleted file mode 100644 index c1a1bbb..0000000 --- a/packs/ac-evolution-feats/CURRENT +++ /dev/null @@ -1 +0,0 @@ -MANIFEST-000266 diff --git a/packs/ac-evolution-feats/Constricting_Hold__CC__mz0Y50ZaV7hysmmJ.json b/packs/ac-evolution-feats/Constricting_Hold__CC__mz0Y50ZaV7hysmmJ.json new file mode 100644 index 0000000..c95e5cc --- /dev/null +++ b/packs/ac-evolution-feats/Constricting_Hold__CC__mz0Y50ZaV7hysmmJ.json @@ -0,0 +1,83 @@ +{ + "_id": "mz0Y50ZaV7hysmmJ", + "name": "Constricting Hold (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.si8FGX2ZRxetdVHp" + } + }, + "system": { + "description": { + "gm": "", + "value": "Requirements Your eidolon has a creature @Compendium[pf2e.conditionitems.kWc1fhmv9LBiTuei]{Grabbed} or @Compendium[pf2e.conditionitems.VcDeM8A5oI6VqhbM]{Restrained}.
\nYour eidolon constricts the creature, dealing [[/r @actor.level+@actor.abilities.str.mod #bludgeoning]]{bludgeoning damage} equal to your eidolon's level plus its Strength modifier, with a basic Fortitude save against your spell DC.
" + }, + "rules": [], + "slug": "constricting-hold", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "eidolon", + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 8 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "action" + }, + "actions": { + "value": 1 + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.651-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.si8FGX2ZRxetdVHp", + "duplicateSource": null + }, + "_key": "!items!mz0Y50ZaV7hysmmJ" +} diff --git a/packs/ac-evolution-feats/Defend_Summoner__CC__Ln8r5xj2kAs81uu1.json b/packs/ac-evolution-feats/Defend_Summoner__CC__Ln8r5xj2kAs81uu1.json new file mode 100644 index 0000000..002b089 --- /dev/null +++ b/packs/ac-evolution-feats/Defend_Summoner__CC__Ln8r5xj2kAs81uu1.json @@ -0,0 +1,83 @@ +{ + "_id": "Ln8r5xj2kAs81uu1", + "name": "Defend Summoner (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.xlparPCGhkgjdhx2" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon blocks attacks against you. After your eidolon uses this action, you gain a +2 circumstance bonus to AC until the beginning of your next turn. This bonus applies only while you're within your eidolon's reach (in most cases, this means your eidolon is adjacent to you or in your space).
" + }, + "rules": [], + "slug": "defend-summoner", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "eidolon", + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 4 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "action" + }, + "actions": { + "value": 1 + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.659-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.xlparPCGhkgjdhx2", + "duplicateSource": null + }, + "_key": "!items!Ln8r5xj2kAs81uu1" +} diff --git a/packs/ac-evolution-feats/Dual_Energy_Heart__CC__prfy7faUtWFNeIXH.json b/packs/ac-evolution-feats/Dual_Energy_Heart__CC__prfy7faUtWFNeIXH.json new file mode 100644 index 0000000..67cec29 --- /dev/null +++ b/packs/ac-evolution-feats/Dual_Energy_Heart__CC__prfy7faUtWFNeIXH.json @@ -0,0 +1,134 @@ +{ + "_id": "prfy7faUtWFNeIXH", + "name": "Dual Energy Heart (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.XGZUjc9I3sjfniDg" + } + }, + "system": { + "description": { + "gm": "", + "value": "A second energy dwells in your eidolon. Choose an additional energy damage type. Your unarmed attack that deals energy damage gains the versatile trait for the second energy damage type, and your eidolon gains resistance to the second type of energy damage equal to half your level.
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.TraitAcid", + "value": "acid" + }, + { + "label": "PF2E.TraitCold", + "value": "cold" + }, + { + "label": "PF2E.TraitFire", + "value": "fire" + }, + { + "label": "PF2E.TraitElectricity", + "value": "electricity" + }, + { + "label": "PF2E.TraitPositive", + "value": "positive" + }, + { + "label": "PF2E.TraitNegative", + "value": "negative" + }, + { + "label": "PF2E.TraitSonic", + "value": "sonic" + } + ], + "flag": "damageChoice", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt", + "key": "ChoiceSet" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.custom.evolutionFeats.dualEnergyHeartChoice", + "value": "{item|flags.pf2e.rulesSelections.damageChoice}" + }, + { + "key": "Resistance", + "type": "{actor|system.custom.evolutionFeats.dualEnergyHeartChoice}", + "value": "max(1,floor(@actor.level/2))" + } + ], + "slug": "dual-energy-heart", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 4 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [ + { + "value": "Energy Heart" + } + ] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.650-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.XGZUjc9I3sjfniDg", + "duplicateSource": null + }, + "_key": "!items!prfy7faUtWFNeIXH" +} diff --git a/packs/ac-evolution-feats/Eidolon_s_Opportunity__CC__DzQ1melMWQPbbcyu.json b/packs/ac-evolution-feats/Eidolon_s_Opportunity__CC__DzQ1melMWQPbbcyu.json new file mode 100644 index 0000000..2b4c7fb --- /dev/null +++ b/packs/ac-evolution-feats/Eidolon_s_Opportunity__CC__DzQ1melMWQPbbcyu.json @@ -0,0 +1,83 @@ +{ + "_id": "DzQ1melMWQPbbcyu", + "name": "Eidolon's Opportunity (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.588O3jurogttvqgm" + } + }, + "system": { + "description": { + "gm": "", + "value": "Trigger A creature within your eidolon's reach uses a manipulate action or a move action, makes a ranged attack, or leaves a square during a move action it's using.
\nYour eidolon makes a melee Strike against the triggering creature. If the attack is a critical hit and the trigger was a manipulate action, your eidolon disrupts that action. This Strike doesn't count toward your multiple attack penalty, and your multiple attack penalty doesn't apply to this Strike.
" + }, + "rules": [], + "slug": "eidolons-opportunity", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "eidolon", + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 6 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "reaction" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.659-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.588O3jurogttvqgm", + "duplicateSource": null + }, + "_key": "!items!DzQ1melMWQPbbcyu" +} diff --git a/packs/ac-evolution-feats/Eidolon_s_Wrath__CC__OGTIinVaETSz7kdW.json b/packs/ac-evolution-feats/Eidolon_s_Wrath__CC__OGTIinVaETSz7kdW.json new file mode 100644 index 0000000..016dcc4 --- /dev/null +++ b/packs/ac-evolution-feats/Eidolon_s_Wrath__CC__OGTIinVaETSz7kdW.json @@ -0,0 +1,89 @@ +{ + "_id": "OGTIinVaETSz7kdW", + "name": "Eidolon's Wrath (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.eNeSl5UNaqDwyNkp" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon gains the @Compendium[pf2e.spells-srd.kuZnUNrhXHRYQ2eM]{Eidolon's Wrath} focus spell, which it casts, instead of you. You determine the damage type when you gain the feat: acid, cold, electricity, fire, negative, positive, or sonic. If your eidolon is a celestial, fiend, or monitor with an alignment other than true neutral, you can choose a damage type in its alignment.
\nIncrease the number of Focus Points in your focus pool by 1. As normal, your eidolon shares your Focus Points.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "mode": "add", + "path": "system.resources.focus.max", + "value": 1 + } + ], + "slug": "eidolons-wrath", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 6 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.658-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.eNeSl5UNaqDwyNkp", + "duplicateSource": null + }, + "_key": "!items!OGTIinVaETSz7kdW" +} diff --git a/packs/ac-evolution-feats/Energy_Heart__CC__val0CdVJxuHkpgFG.json b/packs/ac-evolution-feats/Energy_Heart__CC__val0CdVJxuHkpgFG.json new file mode 100644 index 0000000..18b4acf --- /dev/null +++ b/packs/ac-evolution-feats/Energy_Heart__CC__val0CdVJxuHkpgFG.json @@ -0,0 +1,130 @@ +{ + "_id": "val0CdVJxuHkpgFG", + "name": "Energy Heart (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.0PCDkVnRxVqxsp9j" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon's heart beats with energy.
\nChoose an energy damage type other than force. One of its unarmed attacks changes its damage type to the chosen type, and it gains resistance to that type equal to half your level (minimum 1).
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.TraitAcid", + "value": "acid" + }, + { + "label": "PF2E.TraitCold", + "value": "cold" + }, + { + "label": "PF2E.TraitFire", + "value": "fire" + }, + { + "label": "PF2E.TraitElectricity", + "value": "electricity" + }, + { + "label": "PF2E.TraitPositive", + "value": "positive" + }, + { + "label": "PF2E.TraitNegative", + "value": "negative" + }, + { + "label": "PF2E.TraitSonic", + "value": "sonic" + } + ], + "flag": "damageChoice", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt", + "key": "ChoiceSet" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.custom.evolutionFeats.energyHeartChoice", + "value": "{item|flags.pf2e.rulesSelections.damageChoice}" + }, + { + "key": "Resistance", + "type": "{actor|system.custom.evolutionFeats.energyHeartChoice}", + "value": "max(1,floor(@actor.level/2))" + } + ], + "slug": "energy-heart", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.649-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.0PCDkVnRxVqxsp9j", + "duplicateSource": null + }, + "_key": "!items!val0CdVJxuHkpgFG" +} diff --git a/packs/ac-evolution-feats/Energy_Resistance__CC__wOtKDptwbz9hU9ZR.json b/packs/ac-evolution-feats/Energy_Resistance__CC__wOtKDptwbz9hU9ZR.json new file mode 100644 index 0000000..c9ea741 --- /dev/null +++ b/packs/ac-evolution-feats/Energy_Resistance__CC__wOtKDptwbz9hU9ZR.json @@ -0,0 +1,103 @@ +{ + "_id": "wOtKDptwbz9hU9ZR", + "name": "Energy Resistance (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.lVXk0fhZqjqKilhB" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon has stronger resistance. Its resistance from Energy Heart and Dual Energy Heart increase to your level.
" + }, + "rules": [ + { + "key": "Resistance", + "type": "{actor|system.custom.evolutionFeats.dualEnergyHeartChoice}", + "value": "@actor.level", + "predicate": [ + "feat:dual-energy-heart" + ] + }, + { + "key": "Resistance", + "type": "{actor|system.custom.evolutionFeats.energyHeartChoice}", + "value": "@actor.level", + "predicate": [ + "feat:energy-heart" + ] + } + ], + "slug": "energy-resistance", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 8 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [ + { + "value": "Energy Heart" + } + ] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.648-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.lVXk0fhZqjqKilhB", + "duplicateSource": null + }, + "_key": "!items!wOtKDptwbz9hU9ZR" +} diff --git a/packs/ac-evolution-feats/Ever_Vigilant_Senses__CC__eF3CKuQwqXJXIQPL.json b/packs/ac-evolution-feats/Ever_Vigilant_Senses__CC__eF3CKuQwqXJXIQPL.json new file mode 100644 index 0000000..7fdf05b --- /dev/null +++ b/packs/ac-evolution-feats/Ever_Vigilant_Senses__CC__eF3CKuQwqXJXIQPL.json @@ -0,0 +1,89 @@ +{ + "_id": "eF3CKuQwqXJXIQPL", + "name": "Ever-Vigilant Senses (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.a6xUSibsRaclbSz3" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon has enhanced senses. It gains a +2 circumstance bonus to Perception, and can't be flanked except by creatures that are higher level than it.
\nIt can see @Compendium[pf2e.conditionitems.zJxUflt9np0q4yML]{Invisible} creatures and objects; they appear translucent and are @Compendium[pf2e.conditionitems.DmAIPqOBomZ7H95W]{Concealed}.
\nWhen your eidolon moves within 30 feet of an illusion that can be disbelieved, the GM rolls a secret check to disbelieve it, even if your eidolon didn't spend an action to Interact.
" + }, + "rules": [ + { + "key": "FlatModifier", + "selector": "perception", + "type": "circumstance", + "value": 2 + } + ], + "slug": "ever-vigilant-senses", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 16 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.654-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.a6xUSibsRaclbSz3", + "duplicateSource": null + }, + "_key": "!items!eF3CKuQwqXJXIQPL" +} diff --git a/packs/ac-evolution-feats/Expanded_Senses__CC__Rd1ESvt7UHwFUD6r.json b/packs/ac-evolution-feats/Expanded_Senses__CC__Rd1ESvt7UHwFUD6r.json new file mode 100644 index 0000000..18768ea --- /dev/null +++ b/packs/ac-evolution-feats/Expanded_Senses__CC__Rd1ESvt7UHwFUD6r.json @@ -0,0 +1,97 @@ +{ + "_id": "Rd1ESvt7UHwFUD6r", + "name": "Expanded Senses (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.rPzEnABFjkbOARiB" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon evolves more acute senses.
\nYour eidolon gains low-light vision and darkvision, as well as scent as an imprecise sense with a range of 30 feet.
" + }, + "rules": [ + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "scent" + }, + { + "key": "Sense", + "selector": "darkvision" + }, + { + "key": "Sense", + "selector": "lowLightVision" + } + ], + "slug": "expanded-senses", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.656-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.rPzEnABFjkbOARiB", + "duplicateSource": null + }, + "_key": "!items!Rd1ESvt7UHwFUD6r" +} diff --git a/packs/ac-evolution-feats/Glider_Form__CC__ezmJ2kq6N647wd13.json b/packs/ac-evolution-feats/Glider_Form__CC__ezmJ2kq6N647wd13.json new file mode 100644 index 0000000..e43d52a --- /dev/null +++ b/packs/ac-evolution-feats/Glider_Form__CC__ezmJ2kq6N647wd13.json @@ -0,0 +1,84 @@ +{ + "_id": "ezmJ2kq6N647wd13", + "name": "Glider Form (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.Bj0GvPgyPiC2kDH1" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon evolves wings, a buoyant body, or some other means to control descent.
\nIt glides slowly toward the ground, 5 feet down and up to 25 feet forward through the air.
\nAs long as it spends at least 1 action gliding each round and has not yet reached the ground, it remains in the air at the end of your turn.
" + }, + "rules": [], + "slug": "glider-form", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "eidolon", + "evolution", + "move", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "action" + }, + "actions": { + "value": 1 + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.652-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.Bj0GvPgyPiC2kDH1", + "duplicateSource": null + }, + "_key": "!items!ezmJ2kq6N647wd13" +} diff --git a/packs/ac-evolution-feats/Grasping_Limbs__CC__sbzX5d0kDO9IXinm.json b/packs/ac-evolution-feats/Grasping_Limbs__CC__sbzX5d0kDO9IXinm.json new file mode 100644 index 0000000..157db9c --- /dev/null +++ b/packs/ac-evolution-feats/Grasping_Limbs__CC__sbzX5d0kDO9IXinm.json @@ -0,0 +1,87 @@ +{ + "_id": "sbzX5d0kDO9IXinm", + "name": "Grasping Limbs (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.WsEVkMFe8ZEIRKLu" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon grabs enemies. Choose one of the eidolon's unarmed attacks with the grapple trait. It gains the @Compendium[pf2e.bestiary-ability-glossary-srd.Tkd8sH4pwFIPzqTr]{Grab} action on that unarmed attack.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e.bestiary-ability-glossary-srd.Item.Tkd8sH4pwFIPzqTr" + } + ], + "slug": "grasping-limbs", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 12 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.649-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.WsEVkMFe8ZEIRKLu", + "duplicateSource": null + }, + "_key": "!items!sbzX5d0kDO9IXinm" +} diff --git a/packs/ac-evolution-feats/Hulking_Size__CC__Ls6CaGfZZAlmY8F9.json b/packs/ac-evolution-feats/Hulking_Size__CC__Ls6CaGfZZAlmY8F9.json new file mode 100644 index 0000000..757a6d8 --- /dev/null +++ b/packs/ac-evolution-feats/Hulking_Size__CC__Ls6CaGfZZAlmY8F9.json @@ -0,0 +1,90 @@ +{ + "_id": "Ls6CaGfZZAlmY8F9", + "name": "Hulking Size (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.H6qletvAJUCC1aIa" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon grows substantially. Your eidolon becomes Large, instead of its previous size, and its reach increases to 10 feet. This doesn't change any of its other statistics.
" + }, + "rules": [ + { + "key": "CreatureSize", + "value": "large", + "reach": { + "override": 10 + } + } + ], + "slug": "hulking-size", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 8 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.658-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.H6qletvAJUCC1aIa", + "duplicateSource": null + }, + "_key": "!items!Ls6CaGfZZAlmY8F9" +} diff --git a/packs/ac-evolution-feats/LOG b/packs/ac-evolution-feats/LOG deleted file mode 100644 index 687fc27..0000000 --- a/packs/ac-evolution-feats/LOG +++ /dev/null @@ -1,3 +0,0 @@ -2024/05/19-12:56:42.527 1d10 Recovering log #264 -2024/05/19-12:56:42.534 1d10 Delete type=0 #264 -2024/05/19-12:56:42.534 1d10 Delete type=3 #262 diff --git a/packs/ac-evolution-feats/LOG.old b/packs/ac-evolution-feats/LOG.old deleted file mode 100644 index ff38385..0000000 --- a/packs/ac-evolution-feats/LOG.old +++ /dev/null @@ -1,7 +0,0 @@ -2024/05/19-16:38:49.575055 ffff967be100 Recovering log #260 -2024/05/19-16:38:49.581979 ffff967be100 Delete type=3 #258 -2024/05/19-16:38:49.582026 ffff967be100 Delete type=0 #260 -2024/05/19-16:45:29.744873 fffe74bad100 Level-0 table #265: started -2024/05/19-16:45:29.744900 fffe74bad100 Level-0 table #265: 0 bytes OK -2024/05/19-16:45:29.747398 fffe74bad100 Delete type=0 #263 -2024/05/19-16:45:29.750436 fffe74bad100 Manual compaction at level-0 from '!items!00eOhkScQi1K5GZk' @ 72057594037927935 : 1 .. '!items!yCSsQaTFINIbr9Gh' @ 0 : 0; will stop at (end) diff --git a/packs/ac-evolution-feats/MANIFEST-000262 b/packs/ac-evolution-feats/MANIFEST-000262 deleted file mode 100644 index 7f9fdcc..0000000 Binary files a/packs/ac-evolution-feats/MANIFEST-000262 and /dev/null differ diff --git a/packs/ac-evolution-feats/MANIFEST-000266 b/packs/ac-evolution-feats/MANIFEST-000266 deleted file mode 100644 index 3745ba8..0000000 Binary files a/packs/ac-evolution-feats/MANIFEST-000266 and /dev/null differ diff --git a/packs/ac-evolution-feats/Magical_Adept__CC__en0ikSriHVja8kGM.json b/packs/ac-evolution-feats/Magical_Adept__CC__en0ikSriHVja8kGM.json new file mode 100644 index 0000000..fad8f3b --- /dev/null +++ b/packs/ac-evolution-feats/Magical_Adept__CC__en0ikSriHVja8kGM.json @@ -0,0 +1,86 @@ +{ + "_id": "en0ikSriHVja8kGM", + "name": "Magical Adept (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.b1eGMNjBY3iqIt2S" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon gains more magic. Choose one 2nd-level spell and one 1st-level spell of your eidolon's tradition. Your eidolon can cast them each once per day as innate spells. At every even level after you take this feat, your eidolon can swap one of these innate spells for a new innate spell that's 2 or more levels lower than your highest-level spell slot.
" + }, + "rules": [], + "slug": "magical-adept", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 8 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [ + { + "value": "Magical Understudy" + } + ] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.653-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.b1eGMNjBY3iqIt2S", + "duplicateSource": null + }, + "_key": "!items!en0ikSriHVja8kGM" +} diff --git a/packs/ac-evolution-feats/Magical_Master__CC__yCSsQaTFINIbr9Gh.json b/packs/ac-evolution-feats/Magical_Master__CC__yCSsQaTFINIbr9Gh.json new file mode 100644 index 0000000..4f63645 --- /dev/null +++ b/packs/ac-evolution-feats/Magical_Master__CC__yCSsQaTFINIbr9Gh.json @@ -0,0 +1,86 @@ +{ + "_id": "yCSsQaTFINIbr9Gh", + "name": "Magical Master (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.aoIEVpJrQEold2Mi" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon gains a bevy of lower-level spells. Choose an innate spell of your eidolon's tradition of each of the spell levels from 1 to 7 in which your eidolon doesn't currently have an innate spell from Magical Adept. Your eidolon can cast each once per day as innate spells.
\nYou can swap these spells at every even level, but your eidolon can never know more than one spell of each spell level 1 through 7
" + }, + "rules": [], + "slug": "magical-master", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 18 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [ + { + "value": "Magical Adept" + } + ] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.643-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.aoIEVpJrQEold2Mi", + "duplicateSource": null + }, + "_key": "!items!yCSsQaTFINIbr9Gh" +} diff --git a/packs/ac-evolution-feats/Magical_Understudy__CC__V4rqSvDeIlZCdbVQ.json b/packs/ac-evolution-feats/Magical_Understudy__CC__V4rqSvDeIlZCdbVQ.json new file mode 100644 index 0000000..3e2ce9b --- /dev/null +++ b/packs/ac-evolution-feats/Magical_Understudy__CC__V4rqSvDeIlZCdbVQ.json @@ -0,0 +1,82 @@ +{ + "_id": "V4rqSvDeIlZCdbVQ", + "name": "Magical Understudy (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.WfbmFsRxbVyzMmCz" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon evolves to cast spells. It gains the Cast a Spell activity and learns two cantrips of its tradition, which it can cast as innate spells.
" + }, + "rules": [], + "slug": "magical-understudy", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 2 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.655-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.WfbmFsRxbVyzMmCz", + "duplicateSource": null + }, + "_key": "!items!V4rqSvDeIlZCdbVQ" +} diff --git a/packs/ac-evolution-feats/Miniaturize__CC__Zn7DZ9xfADjtOwst.json b/packs/ac-evolution-feats/Miniaturize__CC__Zn7DZ9xfADjtOwst.json new file mode 100644 index 0000000..4390345 --- /dev/null +++ b/packs/ac-evolution-feats/Miniaturize__CC__Zn7DZ9xfADjtOwst.json @@ -0,0 +1,86 @@ +{ + "_id": "Zn7DZ9xfADjtOwst", + "name": "Miniaturize (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.bcExqs4CsG2Kc5Bs" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon can shrink even further. When using Shrink Down, your eidolon can reduce its size to Tiny
" + }, + "rules": [], + "slug": "miniaturize", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 8 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [ + { + "value": "Shrink Down" + } + ] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.654-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.bcExqs4CsG2Kc5Bs", + "duplicateSource": null + }, + "_key": "!items!Zn7DZ9xfADjtOwst" +} diff --git a/packs/ac-evolution-feats/Phase_Out__CC__m50Xh9RRYj2NxnX2.json b/packs/ac-evolution-feats/Phase_Out__CC__m50Xh9RRYj2NxnX2.json new file mode 100644 index 0000000..134d2e8 --- /dev/null +++ b/packs/ac-evolution-feats/Phase_Out__CC__m50Xh9RRYj2NxnX2.json @@ -0,0 +1,88 @@ +{ + "_id": "m50Xh9RRYj2NxnX2", + "name": "Phase Out (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.axGS5bBJ9vl5AePc" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon phases out of reality slightly, gaining resistance to all damage (except force and negative) equal to half your level. It's not incorporeal, but it can't use Strikes or actions that require a fully physical form, such as @Compendium[pf2e.actionspf2e.PMbdMWc2QroouFGD]{Grapple}, @Compendium[pf2e.actionspf2e.7blmbDrQFNfdT731]{Shove}, or @Compendium[pf2e.actionspf2e.ge56Lu1xXVFYUnLP]{Trip}.
\nYour eidolon can return to its normal form with a single action, which has the concentrate trait.
" + }, + "rules": [], + "slug": "phase-out", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "concentrate", + "evolution", + "summoner", + "transmutation" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 6 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "action" + }, + "actions": { + "value": 3 + }, + "prerequisites": { + "value": [ + { + "value": "your eidolon is a phantom" + } + ] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.651-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.axGS5bBJ9vl5AePc", + "duplicateSource": null + }, + "_key": "!items!m50Xh9RRYj2NxnX2" +} diff --git a/packs/ac-evolution-feats/Pushing_Attack__CC__X4XOW6G0Z22QniKa.json b/packs/ac-evolution-feats/Pushing_Attack__CC__X4XOW6G0Z22QniKa.json new file mode 100644 index 0000000..299f39d --- /dev/null +++ b/packs/ac-evolution-feats/Pushing_Attack__CC__X4XOW6G0Z22QniKa.json @@ -0,0 +1,87 @@ +{ + "_id": "X4XOW6G0Z22QniKa", + "name": "Pushing Attack (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.gdGusdEKt5zmh3rR" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon has an attack that pushes away enemies. Choose one of the eidolon's unarmed attacks with the shove trait. It gains the @Compendium[pf2e.bestiary-ability-glossary-srd.t6cx9FOODmeZQNYl]{Push} action for that attack.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e.bestiary-ability-glossary-srd.Item.t6cx9FOODmeZQNYl" + } + ], + "slug": "pushing-attack", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 10 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.654-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.gdGusdEKt5zmh3rR", + "duplicateSource": null + }, + "_key": "!items!X4XOW6G0Z22QniKa" +} diff --git a/packs/ac-evolution-feats/Ranged_Combatant__CC__eh6Kd7ozEyeRgd3l.json b/packs/ac-evolution-feats/Ranged_Combatant__CC__eh6Kd7ozEyeRgd3l.json new file mode 100644 index 0000000..ba32c1c --- /dev/null +++ b/packs/ac-evolution-feats/Ranged_Combatant__CC__eh6Kd7ozEyeRgd3l.json @@ -0,0 +1,161 @@ +{ + "_id": "eh6Kd7ozEyeRgd3l", + "name": "Ranged Combatant (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.oVSlTmdmho8ZQo2k" + } + }, + "system": { + "description": { + "gm": "", + "value": "Spines, flame jets, and holy blasts are just some of the ways your eidolon might strike from a distance. It gains a ranged unarmed attack with a range increment of 30 feet that deals 1d4 damage and has the magical and propulsive traits.
\nWhen you select this feat, choose a damage type: acid, bludgeoning, cold, electricity, fire, negative, piercing, positive, or slashing. If your eidolon is a celestial, fiend, or monitor with an alignment other than true neutral, you can choose a damage type in its alignment.
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.TraitAcid", + "value": "acid" + }, + { + "label": "PF2E.TraitBludgeoning", + "value": "bludgeoning" + }, + { + "label": "PF2E.TraitCold", + "value": "cold" + }, + { + "label": "PF2E.TraitFire", + "value": "fire" + }, + { + "label": "PF2E.TraitElectricity", + "value": "electricity" + }, + { + "label": "PF2E.TraitPositive", + "value": "positive" + }, + { + "label": "PF2E.TraitNegative", + "value": "negative" + }, + { + "label": "PF2E.TraitPiercing", + "value": "piercing" + }, + { + "label": "PF2E.TraitSlashing", + "value": "slashing" + }, + { + "label": "PF2E.TraitLawful", + "value": "lawful" + }, + { + "label": "PF2E.TraitChaotic", + "value": "chaotic" + }, + { + "label": "PF2E.TraitGood", + "value": "good" + }, + { + "label": "PF2E.TraitEvil", + "value": "evil" + } + ], + "flag": "damageChoice", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt", + "key": "ChoiceSet" + }, + { + "key": "Strike", + "category": "unarmed", + "damage": { + "base": { + "damageType": "{item|flags.pf2e.rulesSelections.damageChoice}", + "dice": 1, + "die": "d4" + } + }, + "range": 30, + "img": "systems/pf2e/icons/spells/zenith-star.webp", + "traits": [ + "magical", + "propulsive", + "unarmed" + ] + } + ], + "slug": "ranged-combatant", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 2 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.653-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.oVSlTmdmho8ZQo2k", + "duplicateSource": null + }, + "_key": "!items!eh6Kd7ozEyeRgd3l" +} diff --git a/packs/ac-evolution-feats/Resilient_Shell__CC__00eOhkScQi1K5GZk.json b/packs/ac-evolution-feats/Resilient_Shell__CC__00eOhkScQi1K5GZk.json new file mode 100644 index 0000000..848e490 --- /dev/null +++ b/packs/ac-evolution-feats/Resilient_Shell__CC__00eOhkScQi1K5GZk.json @@ -0,0 +1,88 @@ +{ + "_id": "00eOhkScQi1K5GZk", + "name": "Resilient Shell (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.N02sHmzuF9XQj93m" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon is resilient against attacks. It gains resistance to physical damage equal to its Constitution modifier.
" + }, + "rules": [ + { + "key": "Resistance", + "type": "physical", + "value": "@actor.abilities.con.mod" + } + ], + "slug": "resilient-shell", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 14 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.661-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.N02sHmzuF9XQj93m", + "duplicateSource": null + }, + "_key": "!items!00eOhkScQi1K5GZk" +} diff --git a/packs/ac-evolution-feats/Shrink_Down__CC__rhWFwue5eYVr5Omr.json b/packs/ac-evolution-feats/Shrink_Down__CC__rhWFwue5eYVr5Omr.json new file mode 100644 index 0000000..ff94ea5 --- /dev/null +++ b/packs/ac-evolution-feats/Shrink_Down__CC__rhWFwue5eYVr5Omr.json @@ -0,0 +1,85 @@ +{ + "_id": "rhWFwue5eYVr5Omr", + "name": "Shrink Down (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.RonS3ZJs4poFTckH" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon can shrink to fit into small spaces. Your eidolon reduces in size, to a minimum of size Small. It can use this action again while shrunk to return to its normal size.
" + }, + "rules": [], + "slug": "shrink-down", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "concentrate", + "eidolon", + "evolution", + "summoner", + "transmutation" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 4 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "action" + }, + "actions": { + "value": 1 + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.650-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.RonS3ZJs4poFTckH", + "duplicateSource": null + }, + "_key": "!items!rhWFwue5eYVr5Omr" +} diff --git a/packs/ac-evolution-feats/Spell_Repelling_Form__CC__wifAadJvu5dKvMVm.json b/packs/ac-evolution-feats/Spell_Repelling_Form__CC__wifAadJvu5dKvMVm.json new file mode 100644 index 0000000..6b62457 --- /dev/null +++ b/packs/ac-evolution-feats/Spell_Repelling_Form__CC__wifAadJvu5dKvMVm.json @@ -0,0 +1,100 @@ +{ + "_id": "wifAadJvu5dKvMVm", + "name": "Spell-Repelling Form (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.cgtVYaZRVaTIW4sk" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon evolves to protect itself from the danger posed by spells. It gains a +1 status bonus to all saving throws against magic.
" + }, + "rules": [ + { + "key": "FlatModifier", + "predicate": [ + { + "or": [ + "magical", + "arcane", + "divine", + "primal", + "occult" + ] + } + ], + "selector": "saving-throw", + "type": "status", + "value": 1 + } + ], + "slug": "spell-repelling-form", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 14 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.648-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.cgtVYaZRVaTIW4sk", + "duplicateSource": null + }, + "_key": "!items!wifAadJvu5dKvMVm" +} diff --git a/packs/ac-evolution-feats/Steed_Form__CC__Bf1jBWTdKVppsLBC.json b/packs/ac-evolution-feats/Steed_Form__CC__Bf1jBWTdKVppsLBC.json new file mode 100644 index 0000000..8272484 --- /dev/null +++ b/packs/ac-evolution-feats/Steed_Form__CC__Bf1jBWTdKVppsLBC.json @@ -0,0 +1,82 @@ +{ + "_id": "Bf1jBWTdKVppsLBC", + "name": "Steed Form (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.eCzIiTjI4mQFYe9D" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon changes to make it particularly effective as your mount. While you ride it, you get your full number of actions each round instead of reducing them to 2. This applies only when you ride your eidolon, not when anyone else does. Your eidolon still must be at least one size category larger than you to ride it. Since you work together to move, your eidolon's move actions while you're mounted gain the tandem trait.
" + }, + "rules": [], + "slug": "steed-form", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 2 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.660-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.eCzIiTjI4mQFYe9D", + "duplicateSource": null + }, + "_key": "!items!Bf1jBWTdKVppsLBC" +} diff --git a/packs/ac-evolution-feats/Summoner_Dedication_Adjustment__CC__BRad9X7kjcTcj1mf.json b/packs/ac-evolution-feats/Summoner_Dedication_Adjustment__CC__BRad9X7kjcTcj1mf.json new file mode 100644 index 0000000..fb69f71 --- /dev/null +++ b/packs/ac-evolution-feats/Summoner_Dedication_Adjustment__CC__BRad9X7kjcTcj1mf.json @@ -0,0 +1,170 @@ +{ + "name": "Summoner Dedication Adjustment (CC)", + "type": "feat", + "system": { + "description": { + "gm": "", + "value": "This feature will adjust the eidolon's stats to be correct for players using the summoner dedication It caps all stats at 16 until the eidolon is level 5.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "downgrade", + "path": "system.abilities.str.mod", + "predicate": [ + { + "lt": [ + "self:level", + 4 + ] + } + ], + "priority": 61 + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "downgrade", + "path": "system.abilities.dex.mod", + "predicate": [ + { + "lt": [ + "self:level", + 4 + ] + } + ], + "priority": 61 + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "downgrade", + "path": "system.abilities.con.mod", + "predicate": [ + { + "lt": [ + "self:level", + 4 + ] + } + ], + "priority": 61 + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "downgrade", + "path": "system.abilities.int.mod", + "predicate": [ + { + "lt": [ + "self:level", + 4 + ] + } + ], + "priority": 61 + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "downgrade", + "path": "system.abilities.wis.mod", + "predicate": [ + { + "lt": [ + "self:level", + 4 + ] + } + ], + "priority": 61 + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "downgrade", + "path": "system.abilities.cha.mod", + "predicate": [ + { + "lt": [ + "self:level", + 4 + ] + } + ], + "priority": 61 + } + ], + "slug": "summoner-dedication-adjustment", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.660-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": { + "sourceId": "Item.XmqBgNFwv1mz4BO3" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Item.XmqBgNFwv1mz4BO3", + "duplicateSource": null + }, + "folder": null, + "sort": 0, + "_id": "BRad9X7kjcTcj1mf", + "_key": "!items!BRad9X7kjcTcj1mf" +} diff --git a/packs/ac-evolution-feats/Towering_Size__CC__VUaI1q3MqoJqo5o5.json b/packs/ac-evolution-feats/Towering_Size__CC__VUaI1q3MqoJqo5o5.json new file mode 100644 index 0000000..7b91686 --- /dev/null +++ b/packs/ac-evolution-feats/Towering_Size__CC__VUaI1q3MqoJqo5o5.json @@ -0,0 +1,94 @@ +{ + "name": "Towering Size (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.ixIKF2LMmbFthI8Z" + } + }, + "_id": "VUaI1q3MqoJqo5o5", + "system": { + "description": { + "gm": "", + "value": "Your eidolon becomes even bigger. It becomes Huge, instead of Large, and the reach on all its attacks increases to 15 feet.
" + }, + "rules": [ + { + "key": "CreatureSize", + "value": "huge", + "reach": { + "override": 15 + } + } + ], + "slug": "towering-size", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 12 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [ + { + "value": "Hulking Size" + } + ] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.655-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.ixIKF2LMmbFthI8Z", + "duplicateSource": null + }, + "_key": "!items!VUaI1q3MqoJqo5o5" +} diff --git a/packs/ac-evolution-feats/Trample__CC__VzVKCWACGqnKaVbv.json b/packs/ac-evolution-feats/Trample__CC__VzVKCWACGqnKaVbv.json new file mode 100644 index 0000000..ba286fc --- /dev/null +++ b/packs/ac-evolution-feats/Trample__CC__VzVKCWACGqnKaVbv.json @@ -0,0 +1,83 @@ +{ + "_id": "VzVKCWACGqnKaVbv", + "name": "Trample (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.7GGxxoYNA4YrtML9" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon Strides up to double its Speed and can move through the spaces of creatures at least one size smaller, Trampling each creature whose space it enters. It can attempt to Trample the same creature only once in a single Trample.
\nIt deals bludgeoning damage equal to the damage of its secondary attack against these creatures, which can attempt a basic Reflex save against your spell DC.
" + }, + "rules": [], + "slug": "trample", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "eidolon", + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 16 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "action" + }, + "actions": { + "value": 3 + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.655-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.7GGxxoYNA4YrtML9", + "duplicateSource": null + }, + "_key": "!items!VzVKCWACGqnKaVbv" +} diff --git a/packs/ac-evolution-feats/Vibration_Sense__CC__4iJgmh1XmMGdzSF8.json b/packs/ac-evolution-feats/Vibration_Sense__CC__4iJgmh1XmMGdzSF8.json new file mode 100644 index 0000000..a09e122 --- /dev/null +++ b/packs/ac-evolution-feats/Vibration_Sense__CC__4iJgmh1XmMGdzSF8.json @@ -0,0 +1,115 @@ +{ + "_id": "4iJgmh1XmMGdzSF8", + "name": "Vibration Sense (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.TgYs2m9scSyEJwdr" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon gains @Compendium[pf2e.bestiary-ability-glossary-srd.j2wsK6IsW5yMW1jW]{Tremorsense} as an imprecise sense with a range of 30 feet. If aquatic, it gains @Compendium[pf2e.bestiary-ability-glossary-srd.VdSMQ6yRZ3YXNXHL]{Wavesense} as an imprecise sense with a range of 30 feet instead. If amphibious, it gains both.
" + }, + "rules": [ + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "tremorsense", + "predicate": [ + { + "or": [ + "self:trait:amphibious", + { + "not": "self:trait:aquatic" + } + ] + } + ], + "force": false, + "label": "PF2E.SensesTremorsense" + }, + { + "acuity": "imprecise", + "key": "Sense", + "range": 30, + "selector": "wavesense", + "predicate": [ + { + "or": [ + "self:trait:amphibious", + "self:trait:aquatic" + ] + } + ] + } + ], + "slug": "vibration-sense", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 4 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.661-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.TgYs2m9scSyEJwdr", + "duplicateSource": null + }, + "_key": "!items!4iJgmh1XmMGdzSF8" +} diff --git a/packs/ac-evolution-feats/Weighty_Impact__CC__TtoKz5zWdEtjydlk.json b/packs/ac-evolution-feats/Weighty_Impact__CC__TtoKz5zWdEtjydlk.json new file mode 100644 index 0000000..28d3e9f --- /dev/null +++ b/packs/ac-evolution-feats/Weighty_Impact__CC__TtoKz5zWdEtjydlk.json @@ -0,0 +1,87 @@ +{ + "_id": "TtoKz5zWdEtjydlk", + "name": "Weighty Impact (CC)", + "type": "feat", + "img": "systems/pf2e/icons/features/feats/feats.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e.feats-srd.Item.K0gyvvX0S2FdJZ5T" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon knocks enemies down. Choose one of the eidolon's unarmed attacks with the trip trait. It gains the @Compendium[pf2e.bestiary-ability-glossary-srd.BCLvAx4Pz4MLa2pu]{Knockdown} action for that attack.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e.bestiary-ability-glossary-srd.Item.BCLvAx4Pz4MLa2pu" + } + ], + "slug": "weighty-impact", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "evolution", + "summoner" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 10 + }, + "category": "class", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:58.656-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e.feats-srd.Item.K0gyvvX0S2FdJZ5T", + "duplicateSource": null + }, + "_key": "!items!TtoKz5zWdEtjydlk" +} diff --git a/packs/ac-feats/000185.ldb b/packs/ac-feats/000185.ldb deleted file mode 100644 index 3cf4940..0000000 Binary files a/packs/ac-feats/000185.ldb and /dev/null differ diff --git a/packs/ac-feats/000264.log b/packs/ac-feats/000264.log deleted file mode 100644 index e69de29..0000000 diff --git a/packs/ac-feats/000267.log b/packs/ac-feats/000267.log deleted file mode 100644 index e69de29..0000000 diff --git a/packs/ac-feats/CURRENT b/packs/ac-feats/CURRENT deleted file mode 100644 index c1a1bbb..0000000 --- a/packs/ac-feats/CURRENT +++ /dev/null @@ -1 +0,0 @@ -MANIFEST-000266 diff --git a/packs/ac-feats/Djinni_Touched_Animal_Companion_BMq4ZwfyZ4dbjjRR.json b/packs/ac-feats/Djinni_Touched_Animal_Companion_BMq4ZwfyZ4dbjjRR.json new file mode 100644 index 0000000..87faa14 --- /dev/null +++ b/packs/ac-feats/Djinni_Touched_Animal_Companion_BMq4ZwfyZ4dbjjRR.json @@ -0,0 +1,153 @@ +{ + "_id": "BMq4ZwfyZ4dbjjRR", + "name": "Djinni-Touched Animal Companion", + "type": "feat", + "img": "systems/pf2e/icons/spells/punishing-winds.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.h262IUT47dLqZLFZ" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "If you take a feat that would normally allow you to choose to have a savage or nimble animal companion, you can instead choose to for it to become a genie-touched companion. When you choose the feat, select the type of genie whose power infuses your companion. The genies and their elemental traits are as follows: djinni (air), efreeti (fire), marid (water), or shaitan (earth). A genie-touched companion increases its Wisdom modifier by 2 and its Strength, Dexterity, and Constitution modifiers by 1. It deals 3 additional damage with its unarmed attacks; this damage is fire damage for an efreet-touched companion or of the same type as the unarmed attack for the others. It gains resistance 5 to damage of a type depending on the genie: acid for djinni, fire for efreeti or marid, and electricity for shaitan. If the companion is djinni-touched or efreeti-touched, increase its proficiency rank in Acrobatics to expert; if it is marid-touched or shaitan-touched, increase its proficiency rank in Athletics to expert. It also learns the advanced maneuver for its type. Its attacks count as magical for the purpose of ignoring resistances and gain the genie's elemental trait.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.skills.acr.rank" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:genie-touched", + "priority": 1 + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 49 + }, + { + "key": "FlatModifier", + "selector": "strike-damage", + "value": "@actor.system.custom.modifiers.additionalDamage" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB" + }, + { + "key": "AdjustStrike", + "mode": "add", + "property": "weapon-traits", + "value": "magical" + }, + { + "key": "AdjustStrike", + "mode": "add", + "property": "weapon-traits", + "value": "air" + } + ], + "slug": "djinni-touched-animal-companion", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 8 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.352-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "vD7HMkL8eJh8gXaP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.h262IUT47dLqZLFZ", + "duplicateSource": null + }, + "_key": "!items!BMq4ZwfyZ4dbjjRR" +} diff --git a/packs/ac-feats/Efreeti_Touched_Animal_Companion_GFDog9UQpe5pFolE.json b/packs/ac-feats/Efreeti_Touched_Animal_Companion_GFDog9UQpe5pFolE.json new file mode 100644 index 0000000..cd9c962 --- /dev/null +++ b/packs/ac-feats/Efreeti_Touched_Animal_Companion_GFDog9UQpe5pFolE.json @@ -0,0 +1,154 @@ +{ + "_id": "GFDog9UQpe5pFolE", + "name": "Efreeti-Touched Animal Companion", + "type": "feat", + "img": "systems/pf2e/icons/spells/wildfire.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.h262IUT47dLqZLFZ" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "If you take a feat that would normally allow you to choose to have a savage or nimble animal companion, you can instead choose to for it to become a genie-touched companion. When you choose the feat, select the type of genie whose power infuses your companion. The genies and their elemental traits are as follows: djinni (air), efreeti (fire), marid (water), or shaitan (earth). A genie-touched companion increases its Wisdom modifier by 2 and its Strength, Dexterity, and Constitution modifiers by 1. It deals 3 additional damage with its unarmed attacks; this damage is fire damage for an efreet-touched companion or of the same type as the unarmed attack for the others. It gains resistance 5 to damage of a type depending on the genie: acid for djinni, fire for efreeti or marid, and electricity for shaitan. If the companion is djinni-touched or efreeti-touched, increase its proficiency rank in Acrobatics to expert; if it is marid-touched or shaitan-touched, increase its proficiency rank in Athletics to expert. It also learns the advanced maneuver for its type. Its attacks count as magical for the purpose of ignoring resistances and gain the genie's elemental trait.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.skills.acr.rank" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:genie-touched", + "priority": 1 + }, + { + "key": "FlatModifier", + "selector": "strike-damage", + "damageType": "fire", + "value": "@actor.system.custom.modifiers.additionalDamage" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 49 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB" + }, + { + "key": "AdjustStrike", + "mode": "add", + "property": "weapon-traits", + "value": "magical" + }, + { + "key": "AdjustStrike", + "mode": "add", + "property": "weapon-traits", + "value": "fire" + } + ], + "slug": "efreeti-touched-animal-companion", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 8 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.352-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "vD7HMkL8eJh8gXaP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.h262IUT47dLqZLFZ", + "duplicateSource": null + }, + "_key": "!items!GFDog9UQpe5pFolE" +} diff --git a/packs/ac-feats/Indomitable_Animal_Companion_u9dXZwKANlsC9MDM.json b/packs/ac-feats/Indomitable_Animal_Companion_u9dXZwKANlsC9MDM.json new file mode 100644 index 0000000..5c5d456 --- /dev/null +++ b/packs/ac-feats/Indomitable_Animal_Companion_u9dXZwKANlsC9MDM.json @@ -0,0 +1,153 @@ +{ + "_id": "u9dXZwKANlsC9MDM", + "name": "Indomitable Animal Companion", + "type": "feat", + "img": "systems/pf2e/icons/spells/envenom-companion.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.u9dXZwKANlsC9MDM" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "An indomitable companion increases its Constitution modifier by 2 and its Strength, Dexterity, and Wisdom modifiers by 1. It deals 3 additional damage with its unarmed attacks. Increase its proficiency rank in Athletics to expert and its proficiency rank in barding to expert. It also learns the advanced maneuver for its type. If your companion is Medium or smaller, it grows in size by one category. Its attacks count as magical for the purpose of ignoring resistances.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 49 + }, + { + "key": "CreatureSize", + "value": 1, + "maximumSize": "lg" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:indomitable", + "priority": 1 + }, + { + "key": "FlatModifier", + "selector": "strike-damage", + "value": "@actor.system.custom.modifiers.additionalDamage" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB" + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.martial.light.rank", + "priority": 41, + "value": 2 + }, + { + "key": "AdjustStrike", + "mode": "add", + "property": "weapon-traits", + "value": "magical" + } + ], + "slug": "indomitable-animal-companion", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 8 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.328-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.u9dXZwKANlsC9MDM", + "duplicateSource": null + }, + "_key": "!items!u9dXZwKANlsC9MDM" +} diff --git a/packs/ac-feats/LOG b/packs/ac-feats/LOG deleted file mode 100644 index a5e2632..0000000 --- a/packs/ac-feats/LOG +++ /dev/null @@ -1,3 +0,0 @@ -2024/05/19-12:56:42.417 1d10 Recovering log #264 -2024/05/19-12:56:42.425 1d10 Delete type=0 #264 -2024/05/19-12:56:42.425 1d10 Delete type=3 #262 diff --git a/packs/ac-feats/LOG.old b/packs/ac-feats/LOG.old deleted file mode 100644 index c1b5883..0000000 --- a/packs/ac-feats/LOG.old +++ /dev/null @@ -1,7 +0,0 @@ -2024/05/19-16:38:49.495134 ffff967be100 Recovering log #260 -2024/05/19-16:38:49.501971 ffff967be100 Delete type=3 #258 -2024/05/19-16:38:49.502013 ffff967be100 Delete type=0 #260 -2024/05/19-16:45:29.718546 fffe74bad100 Level-0 table #265: started -2024/05/19-16:45:29.718580 fffe74bad100 Level-0 table #265: 0 bytes OK -2024/05/19-16:45:29.721173 fffe74bad100 Delete type=0 #263 -2024/05/19-16:45:29.729669 fffe74bad100 Manual compaction at level-0 from '!items!4gNZCu2ncgu98A0H' @ 72057594037927935 : 1 .. '!items!wZXL6VgEK88BCF0C' @ 0 : 0; will stop at (end) diff --git a/packs/ac-feats/MANIFEST-000262 b/packs/ac-feats/MANIFEST-000262 deleted file mode 100644 index cdb5c0b..0000000 Binary files a/packs/ac-feats/MANIFEST-000262 and /dev/null differ diff --git a/packs/ac-feats/MANIFEST-000266 b/packs/ac-feats/MANIFEST-000266 deleted file mode 100644 index ef4b2b8..0000000 Binary files a/packs/ac-feats/MANIFEST-000266 and /dev/null differ diff --git a/packs/ac-feats/Marid_Touched_Animal_Companion_IbW5X5iLlPfTPVRU.json b/packs/ac-feats/Marid_Touched_Animal_Companion_IbW5X5iLlPfTPVRU.json new file mode 100644 index 0000000..932177f --- /dev/null +++ b/packs/ac-feats/Marid_Touched_Animal_Companion_IbW5X5iLlPfTPVRU.json @@ -0,0 +1,153 @@ +{ + "_id": "IbW5X5iLlPfTPVRU", + "name": "Marid-Touched Animal Companion", + "type": "feat", + "img": "systems/pf2e/icons/spells/elemental-form-water.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.h262IUT47dLqZLFZ" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "If you take a feat that would normally allow you to choose to have a savage or nimble animal companion, you can instead choose to for it to become a genie-touched companion. When you choose the feat, select the type of genie whose power infuses your companion. The genies and their elemental traits are as follows: djinni (air), efreeti (fire), marid (water), or shaitan (earth). A genie-touched companion increases its Wisdom modifier by 2 and its Strength, Dexterity, and Constitution modifiers by 1. It deals 3 additional damage with its unarmed attacks; this damage is fire damage for an efreet-touched companion or of the same type as the unarmed attack for the others. It gains resistance 5 to damage of a type depending on the genie: acid for djinni, fire for efreeti or marid, and electricity for shaitan. If the companion is djinni-touched or efreeti-touched, increase its proficiency rank in Acrobatics to expert; if it is marid-touched or shaitan-touched, increase its proficiency rank in Athletics to expert. It also learns the advanced maneuver for its type. Its attacks count as magical for the purpose of ignoring resistances and gain the genie's elemental trait.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.skills.ath.rank" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:genie-touched", + "priority": 1 + }, + { + "key": "FlatModifier", + "selector": "strike-damage", + "value": "@actor.system.custom.modifiers.additionalDamage" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 49 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB" + }, + { + "key": "AdjustStrike", + "mode": "add", + "property": "weapon-traits", + "value": "magical" + }, + { + "key": "AdjustStrike", + "mode": "add", + "property": "weapon-traits", + "value": "water" + } + ], + "slug": "marid-touched-animal-companion", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 8 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.351-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "vD7HMkL8eJh8gXaP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.h262IUT47dLqZLFZ", + "duplicateSource": null + }, + "_key": "!items!IbW5X5iLlPfTPVRU" +} diff --git a/packs/ac-feats/Mature_Animal_Companion_K3c8ztEUX27RHeZe.json b/packs/ac-feats/Mature_Animal_Companion_K3c8ztEUX27RHeZe.json new file mode 100644 index 0000000..5a14a6c --- /dev/null +++ b/packs/ac-feats/Mature_Animal_Companion_K3c8ztEUX27RHeZe.json @@ -0,0 +1,174 @@ +{ + "_id": "K3c8ztEUX27RHeZe", + "name": "Mature Animal Companion", + "type": "feat", + "img": "systems/pf2e/icons/spells/animal-form-bear.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.K3c8ztEUX27RHeZe" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "To advance a young animal companion to a mature animal companion (usually a result of one of your class feat choices), increase its Strength, Dexterity, Constitution, and Wisdom modifiers by 1. Increase its unarmed attack damage from one die to two dice (for instance 1d8 to 2d8), and its proficiency rank for Perception and all saving throws to expert. Increase its proficiency ranks in Intimidation, Stealth, and Survival to trained, and if it was already trained in one of those skills from its type, increase its proficiency rank in that skill to expert. If your companion is Medium or smaller, it grows by one size.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.itm.rank" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.attributes.perception.rank" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.saves.fortitude.rank" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.saves.will.rank" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.saves.reflex.rank" + }, + { + "key": "Striking", + "predicate": [ + "unarmed" + ], + "selector": "strike-damage", + "value": 1 + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:mature", + "priority": 1 + }, + { + "key": "CreatureSize", + "value": 1, + "maximumSize": "lg" + } + ], + "slug": "mature-animal-companion", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 4 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.350-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "L46TYcXAUKb2dhwY": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.K3c8ztEUX27RHeZe", + "duplicateSource": null + }, + "_key": "!items!K3c8ztEUX27RHeZe" +} diff --git a/packs/ac-feats/Nimble_Animal_Companion_89eT819I4MYWndcu.json b/packs/ac-feats/Nimble_Animal_Companion_89eT819I4MYWndcu.json new file mode 100644 index 0000000..766d39e --- /dev/null +++ b/packs/ac-feats/Nimble_Animal_Companion_89eT819I4MYWndcu.json @@ -0,0 +1,147 @@ +{ + "_id": "89eT819I4MYWndcu", + "name": "Nimble Animal Companion", + "type": "feat", + "img": "systems/pf2e/icons/spells/commune-with-nature.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.89eT819I4MYWndcu" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "To advance a mature animal companion to a nimble animal companion, increase its Dexterity modifier by 2 and its Strength, Constitution, and Wisdom modifiers by 1. It deals 2 additional damage with its unarmed attacks. Increase its proficiency ranks in Acrobatics to expert. It also learns the advanced maneuver for its type. Its attacks become magical for the purpose of ignoring resistances.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.skills.acr.rank" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 49 + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:nimble", + "priority": 1 + }, + { + "key": "FlatModifier", + "selector": "strike-damage", + "value": "@actor.system.custom.modifiers.additionalDamage" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB" + }, + { + "key": "AdjustStrike", + "mode": "add", + "property": "weapon-traits", + "value": "magical" + } + ], + "slug": "nimble-animal-companion", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 8 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.353-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "L46TYcXAUKb2dhwY": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.89eT819I4MYWndcu", + "duplicateSource": null + }, + "_key": "!items!89eT819I4MYWndcu" +} diff --git a/packs/ac-feats/Savage_Animal_Companion_h262IUT47dLqZLFZ.json b/packs/ac-feats/Savage_Animal_Companion_h262IUT47dLqZLFZ.json new file mode 100644 index 0000000..22077d8 --- /dev/null +++ b/packs/ac-feats/Savage_Animal_Companion_h262IUT47dLqZLFZ.json @@ -0,0 +1,152 @@ +{ + "_id": "h262IUT47dLqZLFZ", + "name": "Savage Animal Companion", + "type": "feat", + "img": "systems/pf2e/icons/spells/apex-companion.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.h262IUT47dLqZLFZ" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "To advance a mature animal companion to a savage animal companion, increase its Strength modifier by 2 and its Dexterity, Constitution, and Wisdom modifiers by 1. It deals 3 additional damage with its unarmed attacks. Increase its proficiency rank in Athletics to expert. It also learns the advanced maneuver for its type. If your companion is Medium or smaller, it grows by one size. Its attacks become magical for the purpose of ignoring resistances.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.skills.ath.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 49 + }, + { + "key": "CreatureSize", + "value": 1, + "maximumSize": "lg" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:savage", + "priority": 1 + }, + { + "key": "FlatModifier", + "selector": "strike-damage", + "value": "@actor.system.custom.modifiers.additionalDamage" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB" + }, + { + "key": "AdjustStrike", + "mode": "add", + "property": "weapon-traits", + "value": "magical" + } + ], + "slug": "savage-animal-companion", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 8 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.345-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "L46TYcXAUKb2dhwY": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.h262IUT47dLqZLFZ", + "duplicateSource": null + }, + "_key": "!items!h262IUT47dLqZLFZ" +} diff --git a/packs/ac-feats/Shaitan_Touched_Animal_Companion_4gNZCu2ncgu98A0H.json b/packs/ac-feats/Shaitan_Touched_Animal_Companion_4gNZCu2ncgu98A0H.json new file mode 100644 index 0000000..1ac94d0 --- /dev/null +++ b/packs/ac-feats/Shaitan_Touched_Animal_Companion_4gNZCu2ncgu98A0H.json @@ -0,0 +1,153 @@ +{ + "_id": "4gNZCu2ncgu98A0H", + "name": "Shaitan-Touched Animal Companion", + "type": "feat", + "img": "systems/pf2e/icons/spells/earthbind.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.h262IUT47dLqZLFZ" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "If you take a feat that would normally allow you to choose to have a savage or nimble animal companion, you can instead choose to for it to become a genie-touched companion. When you choose the feat, select the type of genie whose power infuses your companion. The genies and their elemental traits are as follows: djinni (air), efreeti (fire), marid (water), or shaitan (earth). A genie-touched companion increases its Wisdom modifier by 2 and its Strength, Dexterity, and Constitution modifiers by 1. It deals 3 additional damage with its unarmed attacks; this damage is fire damage for an efreet-touched companion or of the same type as the unarmed attack for the others. It gains resistance 5 to damage of a type depending on the genie: acid for djinni, fire for efreeti or marid, and electricity for shaitan. If the companion is djinni-touched or efreeti-touched, increase its proficiency rank in Acrobatics to expert; if it is marid-touched or shaitan-touched, increase its proficiency rank in Athletics to expert. It also learns the advanced maneuver for its type. Its attacks count as magical for the purpose of ignoring resistances and gain the genie's elemental trait.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.skills.ath.rank" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:genie-touched", + "priority": 1 + }, + { + "key": "FlatModifier", + "selector": "strike-damage", + "value": "@actor.system.custom.modifiers.additionalDamage" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 49 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB" + }, + { + "key": "AdjustStrike", + "mode": "add", + "property": "weapon-traits", + "value": "magical" + }, + { + "key": "AdjustStrike", + "mode": "add", + "property": "weapon-traits", + "value": "earth" + } + ], + "slug": "shaitan-touched-animal-companion", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 8 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.354-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "vD7HMkL8eJh8gXaP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.h262IUT47dLqZLFZ", + "duplicateSource": null + }, + "_key": "!items!4gNZCu2ncgu98A0H" +} diff --git a/packs/ac-feats/Specialized___Ambusher_wRzmLu4JR4A421So.json b/packs/ac-feats/Specialized___Ambusher_wRzmLu4JR4A421So.json new file mode 100644 index 0000000..56a1ab6 --- /dev/null +++ b/packs/ac-feats/Specialized___Ambusher_wRzmLu4JR4A421So.json @@ -0,0 +1,199 @@ +{ + "_id": "wRzmLu4JR4A421So", + "name": "Specialized - Ambusher", + "type": "feat", + "img": "systems/pf2e/icons/spells/beastmaster-trance.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.wRzmLu4JR4A421So" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Specialized animal companions are more intelligent and engage in more complex behaviors. The first time an animal gains a specialization, it gains the following: Its proficiency rank for unarmed attacks increases to expert. Its proficiency ranks for saving throws and Perception increase to master. Increase its Dexterity modifier by 1 and its Intelligence modifier by 2. Its unarmed attack damage increases from two dice to three dice, and it increases its additional damage with unarmed attacks from 2 to 4 or from 3 to 6.
\nIn your companion's natural environment, it can use a Sneak action even if it's currently observed. Its proficiency rank in Stealth increases to expert (or master if it was already an expert from its type), and its Dexterity modifier increases by 1. Its proficiency rank for unarmored defense increases to expert.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.martial.unarmed.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.fortitude.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.reflex.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.will.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.attributes.perception.rank" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.ste.rank" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.skills.ste.rank" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.martial.unarmored.rank" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:specialized", + "priority": 1 + }, + { + "key": "Striking", + "predicate": [ + "unarmed" + ], + "selector": "strike-damage", + "value": 2 + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + "self:nimble" + ] + }, + { + "key": "ActiveEffectLike", + "value": 6, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + { + "or": [ + "self:savage", + "self:genie-touched", + "self:indomitable", + "self:unseen" + ] + } + ] + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB", + "predicate": [ + { + "not": "has-advanced-maneuver" + } + ] + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "downgrade", + "path": "system.skills.ste.rank" + } + ], + "slug": "specialized-ambusher", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 14 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.325-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.wRzmLu4JR4A421So", + "duplicateSource": null + }, + "_key": "!items!wRzmLu4JR4A421So" +} diff --git a/packs/ac-feats/Specialized___Bully_OUoQGBy9Gk3DSWWi.json b/packs/ac-feats/Specialized___Bully_OUoQGBy9Gk3DSWWi.json new file mode 100644 index 0000000..93b9777 --- /dev/null +++ b/packs/ac-feats/Specialized___Bully_OUoQGBy9Gk3DSWWi.json @@ -0,0 +1,199 @@ +{ + "_id": "OUoQGBy9Gk3DSWWi", + "name": "Specialized - Bully", + "type": "feat", + "img": "systems/pf2e/icons/spells/magic-warrior.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.OUoQGBy9Gk3DSWWi" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Specialized animal companions are more intelligent and engage in more complex behaviors. The first time an animal gains a specialization, it gains the following: Its proficiency rank for unarmed attacks increases to expert. Its proficiency ranks for saving throws and Perception increase to master. Increase its Dexterity modifier by 1 and its Intelligence modifier by 2. Its unarmed attack damage increases from two dice to three dice, and it increases its additional damage with unarmed attacks from 2 to 4 or from 3 to 6.
\nYour companion terrorizes foes with dominance displays and pushes them around the battlefield. Its proficiency ranks for Athletics and Intimidation increase to expert (or master if it was already expert from its type), its Strength modifier increases by 1, and its Charisma modifier increases by 3.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.proficiencies.attacks.unarmed.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.fortitude.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.reflex.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.will.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.perception.rank" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.intimidation.rank" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.skills.athletics.rank" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.cha.mod" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:specialized", + "priority": 1 + }, + { + "key": "Striking", + "predicate": [ + "unarmed" + ], + "selector": "strike-damage", + "value": 2 + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "flags.pf2e.additionalDamage", + "priority": 50, + "predicate": [ + "self:nimble" + ] + }, + { + "key": "ActiveEffectLike", + "value": 6, + "mode": "upgrade", + "path": "flags.pf2e.additionalDamage", + "priority": 50, + "predicate": [ + { + "or": [ + "self:savage", + "self:genie-touched", + "self:indomitable", + "self:unseen" + ] + } + ] + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB", + "predicate": [ + { + "not": "has-advanced-maneuver" + } + ] + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "downgrade", + "path": "system.skills.intimidation.rank" + } + ], + "slug": "specialized-bully", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 14 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.349-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "6.7.2", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.OUoQGBy9Gk3DSWWi", + "duplicateSource": null + }, + "_key": "!items!OUoQGBy9Gk3DSWWi" +} diff --git a/packs/ac-feats/Specialized___Daredevil_Pa0h9IoePPvnEvUn.json b/packs/ac-feats/Specialized___Daredevil_Pa0h9IoePPvnEvUn.json new file mode 100644 index 0000000..7931c89 --- /dev/null +++ b/packs/ac-feats/Specialized___Daredevil_Pa0h9IoePPvnEvUn.json @@ -0,0 +1,187 @@ +{ + "_id": "Pa0h9IoePPvnEvUn", + "name": "Specialized - Daredevil", + "type": "feat", + "img": "systems/pf2e/icons/spells/animal-messenger.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.Pa0h9IoePPvnEvUn" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Specialized animal companions are more intelligent and engage in more complex behaviors. The first time an animal gains a specialization, it gains the following: Its proficiency rank for unarmed attacks increases to expert. Its proficiency ranks for saving throws and Perception increase to master. Increase its Dexterity modifier by 1 and its Intelligence modifier by 2. Its unarmed attack damage increases from two dice to three dice, and it increases its additional damage with unarmed attacks from 2 to 4 or from 3 to 6.
\nYour companion joins the fray with graceful leaps and dives. It gains the deny advantage ability, so it isn't off-guard to hidden, undetected, or flanking creatures unless such a creature's level is greater than yours. Its proficiency rank in Acrobatics increases to master, and its Dexterity modifier increases by 1. Its proficiency rank in unarmored defense increases to expert.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.martial.unarmed.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.fortitude.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.reflex.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.will.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.attributes.perception.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.skills.acr.rank" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.martial.unarmored.rank" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:specialized", + "priority": 1 + }, + { + "key": "Striking", + "predicate": [ + "unarmed" + ], + "selector": "strike-damage", + "value": 2 + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + "self:nimble" + ] + }, + { + "key": "ActiveEffectLike", + "value": 6, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + { + "or": [ + "self:savage", + "self:genie-touched", + "self:indomitable", + "self:unseen" + ] + } + ] + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB", + "predicate": [ + { + "not": "has-advanced-maneuver" + } + ] + } + ], + "slug": "specialized-daredevil", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 14 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.348-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.Pa0h9IoePPvnEvUn", + "duplicateSource": null + }, + "_key": "!items!Pa0h9IoePPvnEvUn" +} diff --git a/packs/ac-feats/Specialized___Deep_Diver__Base_Speed__eoQnmkqWXaLwNQhG.json b/packs/ac-feats/Specialized___Deep_Diver__Base_Speed__eoQnmkqWXaLwNQhG.json new file mode 100644 index 0000000..5e08a4a --- /dev/null +++ b/packs/ac-feats/Specialized___Deep_Diver__Base_Speed__eoQnmkqWXaLwNQhG.json @@ -0,0 +1,194 @@ +{ + "_id": "eoQnmkqWXaLwNQhG", + "name": "Specialized - Deep Diver (Base Speed)", + "type": "feat", + "img": "systems/pf2e/icons/spells/feet-to-fins.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.KCbNpQElh8V0QX1Z" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Specialized animal companions are more intelligent and engage in more complex behaviors. The first time an animal gains a specialization, it gains the following: Its proficiency rank for unarmed attacks increases to expert. Its proficiency ranks for saving throws and Perception increase to master. Increase its Dexterity modifier by 1 and its Intelligence modifier by 2. Its unarmed attack damage increases from two dice to three dice, and it increases its additional damage with unarmed attacks from 2 to 4 or from 3 to 6.
\nYour companion gains a swim Speed of 30 feet or a +10-foot status bonus to its existing swim Speed and can breathe underwater if it couldn't already. Its Constitution modifier increases by 1. Its proficiency rank for Athletics increases to master and for barding increases to expert. This specialization can only be selected by marid-touched companions.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.martial.unarmed.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.fortitude.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.reflex.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.will.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.attributes.perception.rank" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.skills.ath.rank" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:specialized", + "priority": 1 + }, + { + "key": "Striking", + "predicate": [ + "unarmed" + ], + "selector": "strike-damage", + "value": 2 + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + "self:nimble" + ] + }, + { + "key": "ActiveEffectLike", + "value": 6, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + { + "or": [ + "self:savage", + "self:genie-touched", + "self:indomitable", + "self:unseen" + ] + } + ] + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB", + "predicate": [ + { + "not": "has-advanced-maneuver" + } + ] + }, + { + "key": "BaseSpeed", + "selector": "swim", + "value": 30 + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.martial.light.rank", + "priority": 41, + "value": 2 + } + ], + "slug": "specialized-deep-diver-base-speed", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 14 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.346-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.KCbNpQElh8V0QX1Z", + "duplicateSource": null + }, + "_key": "!items!eoQnmkqWXaLwNQhG" +} diff --git a/packs/ac-feats/Specialized___Deep_Diver__Speed_Bonus__KCbNpQElh8V0QX1Z.json b/packs/ac-feats/Specialized___Deep_Diver__Speed_Bonus__KCbNpQElh8V0QX1Z.json new file mode 100644 index 0000000..be720d3 --- /dev/null +++ b/packs/ac-feats/Specialized___Deep_Diver__Speed_Bonus__KCbNpQElh8V0QX1Z.json @@ -0,0 +1,194 @@ +{ + "_id": "KCbNpQElh8V0QX1Z", + "name": "Specialized - Deep Diver (Speed Bonus)", + "type": "feat", + "img": "systems/pf2e/icons/spells/feet-to-fins.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.KCbNpQElh8V0QX1Z" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Specialized animal companions are more intelligent and engage in more complex behaviors. The first time an animal gains a specialization, it gains the following: Its proficiency rank for unarmed attacks increases to expert. Its proficiency ranks for saving throws and Perception increase to master. Increase its Dexterity modifier by 1 and its Intelligence modifier by 2. Its unarmed attack damage increases from two dice to three dice, and it increases its additional damage with unarmed attacks from 2 to 4 or from 3 to 6.
\nYour companion gains a swim Speed of 30 feet or a +10-foot status bonus to its existing swim Speed and can breathe underwater if it couldn't already. Its Constitution modifier increases by 1. Its proficiency rank for Athletics increases to master and for barding increases to expert. This specialization can only be selected by marid-touched companions.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.martial.unarmed.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.fortitude.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.reflex.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.will.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.attributes.perception.rank" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.skills.ath.rank" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:specialized", + "priority": 1 + }, + { + "key": "Striking", + "predicate": [ + "unarmed" + ], + "selector": "strike-damage", + "value": 2 + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + "self:nimble" + ] + }, + { + "key": "ActiveEffectLike", + "value": 6, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + { + "or": [ + "self:savage", + "self:genie-touched", + "self:indomitable", + "self:unseen" + ] + } + ] + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB", + "predicate": [ + { + "not": "has-advanced-maneuver" + } + ] + }, + { + "key": "FlatModifier", + "selector": "swim-speed", + "value": 10, + "type": "status" + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.martial.light.rank", + "priority": 41, + "value": 2 + } + ], + "slug": "specialized-deep-diver-speed-bonus", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 14 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.350-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.KCbNpQElh8V0QX1Z", + "duplicateSource": null + }, + "_key": "!items!KCbNpQElh8V0QX1Z" +} diff --git a/packs/ac-feats/Specialized___Racer_wDiFVxRBktQVj7uI.json b/packs/ac-feats/Specialized___Racer_wDiFVxRBktQVj7uI.json new file mode 100644 index 0000000..85b8c5f --- /dev/null +++ b/packs/ac-feats/Specialized___Racer_wDiFVxRBktQVj7uI.json @@ -0,0 +1,208 @@ +{ + "_id": "wDiFVxRBktQVj7uI", + "name": "Specialized - Racer", + "type": "feat", + "img": "systems/pf2e/icons/spells/heal-animal.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.wDiFVxRBktQVj7uI" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Specialized animal companions are more intelligent and engage in more complex behaviors. The first time an animal gains a specialization, it gains the following: Its proficiency rank for unarmed attacks increases to expert. Its proficiency ranks for saving throws and Perception increase to master. Increase its Dexterity modifier by 1 and its Intelligence modifier by 2. Its unarmed attack damage increases from two dice to three dice, and it increases its additional damage with unarmed attacks from 2 to 4 or from 3 to 6.
\nYour companion races. It gains a +10-foot status bonus to its Speed, swim Speed, or fly Speed (your choice). Its proficiency in Fortitude saves increases to legendary, and its Constitution modifier increases by 1.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.martial.unarmed.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.fortitude.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.reflex.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.will.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.attributes.perception.rank" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.saves.fortitude.rank" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:specialized", + "priority": 1 + }, + { + "key": "Striking", + "predicate": [ + "unarmed" + ], + "selector": "strike-damage", + "value": 2 + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + "self:nimble" + ] + }, + { + "key": "ActiveEffectLike", + "value": 6, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + { + "or": [ + "self:savage", + "self:genie-touched", + "self:indomitable", + "self:unseen" + ] + } + ] + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB", + "predicate": [ + { + "not": "has-advanced-maneuver" + } + ], + "allowDuplicate": false + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.SpeedTypesLand", + "value": "land" + }, + { + "label": "PF2E.SpeedTypesSwim", + "value": "swim" + }, + { + "label": "PF2E.SpeedTypesFly", + "value": "fly" + } + ], + "flag": "racerSpeedBonus", + "key": "ChoiceSet", + "prompt": "PF2E.UI.RuleElements.ChoiceSet.Prompt" + }, + { + "key": "FlatModifier", + "selector": "{item|flags.pf2e.rulesSelections.racerSpeedBonus}-speed", + "value": 10, + "type": "status" + } + ], + "slug": "specialized-racer", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 14 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.327-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.wDiFVxRBktQVj7uI", + "duplicateSource": null + }, + "_key": "!items!wDiFVxRBktQVj7uI" +} diff --git a/packs/ac-feats/Specialized___Shade_lm4QlSITABQKhx5K.json b/packs/ac-feats/Specialized___Shade_lm4QlSITABQKhx5K.json new file mode 100644 index 0000000..95b401a --- /dev/null +++ b/packs/ac-feats/Specialized___Shade_lm4QlSITABQKhx5K.json @@ -0,0 +1,179 @@ +{ + "_id": "lm4QlSITABQKhx5K", + "name": "Specialized - Shade", + "type": "feat", + "img": "systems/pf2e/icons/spells/aerial-form.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.lm4QlSITABQKhx5K" + } + }, + "system": { + "description": { + "gm": "", + "value": "Specialized animal companions are more intelligent and engage in more complex behaviors. The first time an animal gains a specialization, it gains the following: Its proficiency rank for unarmed attacks increases to expert. Its proficiency ranks for saving throws and Perception increase to master. Increase its Dexterity modifier by 1 and its Intelligence modifier by 2. Its unarmed attack damage increases from two dice to three dice, and it increases its additional damage with unarmed attacks from 2 to 4 or from 3 to 6.
\nYour companion's physical form is made, in whole or in part, of shadow. It gains darkvision, resistance 5 to all damage except force, and in areas of dim light or darkness, it can Step 10 feet instead of 5 feet. Its proficiency rank in unarmored defense increases to expert.
" + }, + "rules": [ + { + "key": "Sense", + "label": "PF2E.SensesDarkvision", + "selector": "darkvision" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.martial.unarmed.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.fortitude.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.reflex.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.will.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.attributes.perception.rank" + }, + { + "key": "Striking", + "predicate": [ + "unarmed" + ], + "selector": "strike-damage", + "value": 2 + }, + { + "key": "ActiveEffectLike", + "value": 6, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + { + "or": [ + "self:savage", + "self:genie-touched", + "self:indomitable", + "self:unseen" + ] + } + ] + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + "self:nimble" + ] + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:specialized", + "priority": 1 + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.martial.unarmored.rank" + }, + { + "key": "Resistance", + "type": "all-damage", + "value": 5, + "exceptions": [ + "force" + ] + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB", + "predicate": [ + { + "not": "has-advanced-maneuver" + } + ] + } + ], + "slug": "specialized-shade", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 14 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.344-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "vD7HMkL8eJh8gXaP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.lm4QlSITABQKhx5K", + "duplicateSource": null + }, + "_key": "!items!lm4QlSITABQKhx5K" +} diff --git a/packs/ac-feats/Specialized___Steadfast_Strider_SiFB8P1upTvdhLpx.json b/packs/ac-feats/Specialized___Steadfast_Strider_SiFB8P1upTvdhLpx.json new file mode 100644 index 0000000..d804888 --- /dev/null +++ b/packs/ac-feats/Specialized___Steadfast_Strider_SiFB8P1upTvdhLpx.json @@ -0,0 +1,182 @@ +{ + "_id": "SiFB8P1upTvdhLpx", + "name": "Specialized - Steadfast Strider", + "type": "feat", + "img": "systems/pf2e/icons/spells/ant-haul.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.SiFB8P1upTvdhLpx" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Specialized animal companions are more intelligent and engage in more complex behaviors. The first time an animal gains a specialization, it gains the following: Its proficiency rank for unarmed attacks increases to expert. Its proficiency ranks for saving throws and Perception increase to master. Increase its Dexterity modifier by 1 and its Intelligence modifier by 2. Its unarmed attack damage increases from two dice to three dice, and it increases its additional damage with unarmed attacks from 2 to 4 or from 3 to 6.
\nYour companion ignores natural difficult terrain and greater difficult terrain from sediment or stone and can move across quicksand, mud, and similar surfaces as if they were solid. It gains a +2 status bonus to saving throws and DCs to prevent being Shoved or Tripped. Its Strength modifier increases by 1 and its proficiency for barding increases to expert. This specialization can only be selected by shaitan-touched companions.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.martial.unarmed.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.fortitude.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.reflex.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.will.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.attributes.perception.rank" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:specialized", + "priority": 1 + }, + { + "key": "Striking", + "predicate": [ + "unarmed" + ], + "selector": "strike-damage", + "value": 2 + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + "self:nimble" + ] + }, + { + "key": "ActiveEffectLike", + "value": 6, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + { + "or": [ + "self:savage", + "self:genie-touched", + "self:indomitable", + "self:unseen" + ] + } + ] + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB", + "predicate": [ + { + "not": "has-advanced-maneuver" + } + ] + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.martial.light.rank", + "priority": 41, + "value": 2 + } + ], + "slug": "specialized-steadfast-strider", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 14 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.347-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.SiFB8P1upTvdhLpx", + "duplicateSource": null + }, + "_key": "!items!SiFB8P1upTvdhLpx" +} diff --git a/packs/ac-feats/Specialized___Tracker_umbj0foct0eZ7Jcj.json b/packs/ac-feats/Specialized___Tracker_umbj0foct0eZ7Jcj.json new file mode 100644 index 0000000..e6218f9 --- /dev/null +++ b/packs/ac-feats/Specialized___Tracker_umbj0foct0eZ7Jcj.json @@ -0,0 +1,187 @@ +{ + "_id": "umbj0foct0eZ7Jcj", + "name": "Specialized - Tracker", + "type": "feat", + "img": "systems/pf2e/icons/spells/juvenile-companion.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.umbj0foct0eZ7Jcj" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Specialized animal companions are more intelligent and engage in more complex behaviors. The first time an animal gains a specialization, it gains the following: Its proficiency rank for unarmed attacks increases to expert. Its proficiency ranks for saving throws and Perception increase to master. Increase its Dexterity modifier by 1 and its Intelligence modifier by 2. Its unarmed attack damage increases from two dice to three dice, and it increases its additional damage with unarmed attacks from 2 to 4 or from 3 to 6.
\nYour companion is an incredible tracker. It can move at full Speed while following tracks. Its proficiency rank in Survival increases to expert (or master if it was already an expert from its type), and its Wisdom modifier increases by 1.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.martial.unarmed.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.fortitude.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.reflex.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.will.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.attributes.perception.rank" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.skills.sur.rank" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.skills.sur.rank" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:specialized", + "priority": 1 + }, + { + "key": "Striking", + "predicate": [ + "unarmed" + ], + "selector": "strike-damage", + "value": 2 + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + "self:nimble" + ] + }, + { + "key": "ActiveEffectLike", + "value": 6, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + { + "or": [ + "self:savage", + "self:genie-touched", + "self:indomitable", + "self:unseen" + ] + } + ] + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB", + "predicate": [ + { + "not": "has-advanced-maneuver" + } + ] + } + ], + "slug": "specialized-tracker", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 14 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.328-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.umbj0foct0eZ7Jcj", + "duplicateSource": null + }, + "_key": "!items!umbj0foct0eZ7Jcj" +} diff --git a/packs/ac-feats/Specialized___Wildfire_Scorcher_Sb8e7jIDTGghYvEk.json b/packs/ac-feats/Specialized___Wildfire_Scorcher_Sb8e7jIDTGghYvEk.json new file mode 100644 index 0000000..0f1747d --- /dev/null +++ b/packs/ac-feats/Specialized___Wildfire_Scorcher_Sb8e7jIDTGghYvEk.json @@ -0,0 +1,186 @@ +{ + "_id": "Sb8e7jIDTGghYvEk", + "name": "Specialized - Wildfire Scorcher", + "type": "feat", + "img": "systems/pf2e/icons/spells/summon-draconic-legion.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.Sb8e7jIDTGghYvEk" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Specialized animal companions are more intelligent and engage in more complex behaviors. The first time an animal gains a specialization, it gains the following: Its proficiency rank for unarmed attacks increases to expert. Its proficiency ranks for saving throws and Perception increase to master. Increase its Dexterity modifier by 1 and its Intelligence modifier by 2. Its unarmed attack damage increases from two dice to three dice, and it increases its additional damage with unarmed attacks from 2 to 4 or from 3 to 6.
\nYour companion gains resistance to fire equal to your level. Any creature that attempts to Grapple or Grab your companion, hits your companion with a melee unarmed attack, or hits your companion with a melee weapon Strike while adjacent to your companion takes 2d6 fire damage. Its Dexterity modifier increases by 1 and its proficiency rank increases to legendary for Reflex saves and to expert for unarmored defense. This specialization can only be selected by efreeti-touched companions.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.martial.unarmed.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.fortitude.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.reflex.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.will.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.attributes.perception.rank" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.saves.reflex.rank" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.martial.unarmored.rank" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:specialized", + "priority": 1 + }, + { + "key": "Striking", + "predicate": [ + "unarmed" + ], + "selector": "strike-damage", + "value": 2 + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + "self:nimble" + ] + }, + { + "key": "ActiveEffectLike", + "value": 6, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + { + "or": [ + "self:savage", + "self:genie-touched", + "self:indomitable", + "self:unseen" + ] + } + ] + }, + { + "key": "Resistance", + "type": "fire", + "value": "@actor.level" + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB", + "predicate": [ + { + "not": "has-advanced-maneuver" + } + ] + } + ], + "slug": "specialized-wildfire-scorcher", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 14 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.348-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.Sb8e7jIDTGghYvEk", + "duplicateSource": null + }, + "_key": "!items!Sb8e7jIDTGghYvEk" +} diff --git a/packs/ac-feats/Specialized___Wind_Chaser_c04kGEFIMMwsKCEP.json b/packs/ac-feats/Specialized___Wind_Chaser_c04kGEFIMMwsKCEP.json new file mode 100644 index 0000000..8f367b9 --- /dev/null +++ b/packs/ac-feats/Specialized___Wind_Chaser_c04kGEFIMMwsKCEP.json @@ -0,0 +1,193 @@ +{ + "_id": "c04kGEFIMMwsKCEP", + "name": "Specialized - Wind Chaser", + "type": "feat", + "img": "systems/pf2e/icons/spells/familiar-form.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.c04kGEFIMMwsKCEP" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Specialized animal companions are more intelligent and engage in more complex behaviors. The first time an animal gains a specialization, it gains the following: Its proficiency rank for unarmed attacks increases to expert. Its proficiency ranks for saving throws and Perception increase to master. Increase its Dexterity modifier by 1 and its Intelligence modifier by 2. Its unarmed attack damage increases from two dice to three dice, and it increases its additional damage with unarmed attacks from 2 to 4 or from 3 to 6.
\nYour companion gains a +20-foot status bonus to its Speed or fly Speed (your choice if it has both). Its proficiency in Acrobatics increases to master and its Dexterity modifier increases by 1. Its proficiency rank increases to legendary for Reflex saves and to expert for unarmored defense. This specialization can only be selected by djinni-touched companions.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.martial.unarmed.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.fortitude.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.reflex.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.will.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.attributes.perception.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.skills.acr.rank" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.saves.reflex.rank" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.martial.unarmored.rank" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:specialized", + "priority": 1 + }, + { + "key": "Striking", + "predicate": [ + "unarmed" + ], + "selector": "strike-damage", + "value": 2 + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + "self:nimble" + ] + }, + { + "key": "ActiveEffectLike", + "value": 6, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + { + "or": [ + "self:savage", + "self:genie-touched", + "self:indomitable", + "self:unseen" + ] + } + ] + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB", + "predicate": [ + { + "not": "has-advanced-maneuver" + } + ] + } + ], + "slug": "specialized-wind-chaser", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 14 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.346-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.c04kGEFIMMwsKCEP", + "duplicateSource": null + }, + "_key": "!items!c04kGEFIMMwsKCEP" +} diff --git a/packs/ac-feats/Specialized___Wrecker_wZXL6VgEK88BCF0C.json b/packs/ac-feats/Specialized___Wrecker_wZXL6VgEK88BCF0C.json new file mode 100644 index 0000000..d219e3c --- /dev/null +++ b/packs/ac-feats/Specialized___Wrecker_wZXL6VgEK88BCF0C.json @@ -0,0 +1,181 @@ +{ + "_id": "wZXL6VgEK88BCF0C", + "name": "Specialized - Wrecker", + "type": "feat", + "img": "systems/pf2e/icons/spells/shapechange.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Feats.Item.wZXL6VgEK88BCF0C" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "Specialized animal companions are more intelligent and engage in more complex behaviors. The first time an animal gains a specialization, it gains the following: Its proficiency rank for unarmed attacks increases to expert. Its proficiency ranks for saving throws and Perception increase to master. Increase its Dexterity modifier by 1 and its Intelligence modifier by 2. Its unarmed attack damage increases from two dice to three dice, and it increases its additional damage with unarmed attacks from 2 to 4 or from 3 to 6.
\nYour companion smashes things. Its unarmed attacks ignore half an object's Hardness. Its Athletics proficiency increases to master, and its Strength modifier increases by 1.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.martial.unarmed.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.fortitude.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.reflex.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.saves.will.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.attributes.perception.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.skills.ath.rank" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:specialized", + "priority": 1 + }, + { + "key": "Striking", + "predicate": [ + "unarmed" + ], + "selector": "strike-damage", + "value": 2 + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + "self:nimble" + ] + }, + { + "key": "ActiveEffectLike", + "value": 6, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 50, + "predicate": [ + { + "or": [ + "self:savage", + "self:genie-touched", + "self:indomitable", + "self:unseen" + ] + } + ] + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB", + "predicate": [ + { + "not": "has-advanced-maneuver" + } + ] + } + ], + "slug": "specialized-wrecker", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 14 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.324-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "rarity": { + "value": "common" + } + }, + "ownership": { + "default": 0, + "wT1HOeaOBCFxTCiE": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Feats.Item.wZXL6VgEK88BCF0C", + "duplicateSource": null + }, + "_key": "!items!wZXL6VgEK88BCF0C" +} diff --git a/packs/ac-feats/Unseen_Animal_Companion_mJhZ1znkGreEMjTn.json b/packs/ac-feats/Unseen_Animal_Companion_mJhZ1znkGreEMjTn.json new file mode 100644 index 0000000..cf79331 --- /dev/null +++ b/packs/ac-feats/Unseen_Animal_Companion_mJhZ1znkGreEMjTn.json @@ -0,0 +1,143 @@ +{ + "_id": "mJhZ1znkGreEMjTn", + "name": "Unseen Animal Companion", + "type": "feat", + "img": "systems/pf2e/icons/spells/pass-without-trace.webp", + "effects": [], + "folder": null, + "sort": 0, + "flags": { + "core": { + "sourceId": "Item.xsxAPvjWZLCUpyNR" + } + }, + "system": { + "description": { + "gm": "", + "value": "Cryptid animal companions look a touch peculiar, often with uncanny features or ones that seem to come from a different animal. If you take a feat that would normally allow you to choose to have your companion become a savage or nimble animal companion, you can choose to make it an unseen animal companion instead. An unseen companion increases its Wisdom modifier by 2 and its Strength, Dexterity, and Constitution modifiers by 1. It deals 3 additional Damage with its unarmed attacks and deals an extra 1d4 precision damage against @Compendium[pf2e.conditionitems.Off-Guard]{Off-Guard} targets (if the animal companion already deals precision damage, such as a cat, combine the precision damage). Increase its proficiency rank in Stealth to expert. It also learns the advanced maneuver for its type.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.skills.ste.rank" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.custom.modifiers.additionalDamage", + "priority": 49 + }, + { + "key": "FlatModifier", + "selector": "damage", + "value": "@actor.system.custom.modifiers.additionalDamage" + }, + { + "category": "precision", + "dieSize": "d4", + "key": "DamageDice", + "predicate": [ + "target:off-guard" + ], + "selector": "damage", + "diceNumber": 1 + }, + { + "key": "RollOption", + "domain": "all", + "option": "self:unseen", + "priority": 1 + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.KrHyF5BSvYM6tFbB", + "allowDuplicate": false + } + ], + "slug": "unseen-animal-companion", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 8 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Dark Archive" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:17:47.329-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.xsxAPvjWZLCUpyNR", + "duplicateSource": null + }, + "_key": "!items!mJhZ1znkGreEMjTn" +} diff --git a/packs/ac-features/000266.ldb b/packs/ac-features/000266.ldb deleted file mode 100644 index c9526e2..0000000 Binary files a/packs/ac-features/000266.ldb and /dev/null differ diff --git a/packs/ac-features/000273.log b/packs/ac-features/000273.log deleted file mode 100644 index e69de29..0000000 diff --git a/packs/ac-features/000276.log b/packs/ac-features/000276.log deleted file mode 100644 index 86fde7a..0000000 Binary files a/packs/ac-features/000276.log and /dev/null differ diff --git a/packs/ac-features/Adaptable_Elemental_Bct9n12OLVxFtmY1.json b/packs/ac-features/Adaptable_Elemental_Bct9n12OLVxFtmY1.json new file mode 100644 index 0000000..06767eb --- /dev/null +++ b/packs/ac-features/Adaptable_Elemental_Bct9n12OLVxFtmY1.json @@ -0,0 +1,109 @@ +{ + "name": "Adaptable Elemental", + "type": "heritage", + "img": "systems/pf2e/icons/spells/adapt-self.webp", + "effects": [], + "flags": { + "core": {} + }, + "system": { + "description": { + "gm": "", + "value": "Str +1, Dex +4, Con +3, Int +0, Wis +1, Cha +0; +1 AC (+4 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "downgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 1, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 4 + } + ], + "slug": "undead-stalker", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "ancestry": { + "name": "Elemental Eidolon", + "slug": "dragon-eidolon", + "uuid": "Compendium.pf2e-animal-companions.AC-Eidolons.Item.Int1LFtquj8MTIFp" + }, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.325-04:00", + "version": { + "schema": 0.854, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "folder": null, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3, + "qA45GVv5hySaf9b5": 3 + }, + "_id": "Bct9n12OLVxFtmY1", + "sort": 0, + "_key": "!items!Bct9n12OLVxFtmY1" +} diff --git a/packs/ac-features/Advanced_Maneuver_KrHyF5BSvYM6tFbB.json b/packs/ac-features/Advanced_Maneuver_KrHyF5BSvYM6tFbB.json new file mode 100644 index 0000000..ac3ecb1 --- /dev/null +++ b/packs/ac-features/Advanced_Maneuver_KrHyF5BSvYM6tFbB.json @@ -0,0 +1,757 @@ +{ + "_id": "KrHyF5BSvYM6tFbB", + "name": "Advanced Maneuver", + "type": "feat", + "img": "systems/pf2e/icons/default-icons/feats.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.4GUtdDCKZynlVWmC" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.ODGf6brAHHKrSAPo", + "predicate": [ + "self:ancestry:bat", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.WdTzlCO2i4loeYkQ", + "predicate": [ + "self:ancestry:moth", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.q0Vh2V6KlzdMi1Pv", + "predicate": [ + "self:ancestry:cave-gecko", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.FKh7ZMNyKxgnV7kI", + "predicate": [ + "self:ancestry:arboreal-sapling", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.Upr7u0KhPAIMOqXv", + "predicate": [ + "self:ancestry:ulgrem-lurann", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.F98ajoIakyOPEuwj", + "predicate": [ + "self:ancestry:shark", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.PAXJgysWqv3T0tTD", + "predicate": [ + "self:ancestry:camel", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.7C9iFWBpEOJs4Uo2", + "predicate": [ + "self:ancestry:pterosaur", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.uR3j6TAJFeOVUHpY", + "predicate": [ + "self:ancestry:monitor-lizard", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.xssFjTXqGlsaddvl", + "predicate": [ + "self:ancestry:wolf", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.7H8wqKtsAaSgyLyp", + "predicate": [ + "self:ancestry:scorpion", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.oisXYTTYE0TABboA", + "predicate": [ + "self:ancestry:hyena", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.tsOaXTRWQvsKTyaL", + "predicate": [ + { + "or": [ + "self:ancestry:horse", + "self:ancestry:skeletal-mount" + ] + }, + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.0WtqP7Wei3AxHh5M", + "predicate": [ + "self:ancestry:ape", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.X4VjMfVVAjZjwcrT", + "predicate": [ + "self:ancestry:bird", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.g4JEtCnKXyY4LJpm", + "predicate": [ + "self:ancestry:vulture", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.pMPtswKNokDNyYR2", + "predicate": [ + "self:ancestry:pangolin", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.cpMkN79PdNci3nGp", + "predicate": [ + "self:ancestry:capybara", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.ttJ1CanrAuehoSV8", + "predicate": [ + "self:ancestry:crocodile", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.ClUiCoBn3lHBBK5c", + "predicate": [ + "self:ancestry:dromaeosaur", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.kKW68gi1FNJlNSOp", + "predicate": [ + "self:ancestry:snake", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.U0J8J5ukmqnOskE8", + "predicate": [ + "self:ancestry:cat", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.lrchn6ROZcuKCg3C", + "predicate": [ + "self:ancestry:legchair", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.8JdETVTpbZAgtBA3", + "predicate": [ + "self:ancestry:riding-drake", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.EwCqdvU8WOw2SSxm", + "predicate": [ + "self:ancestry:boar", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.oCgdnQP5bMDD02YC", + "predicate": [ + "self:ancestry:bear", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.EvuMVR9ut9wIHOtq", + "predicate": [ + "self:ancestry:shadow-hound", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.HLD4JW6SUn5Oy8C9", + "predicate": [ + "self:ancestry:badger", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.zSlsnbvsGKdCTzL1", + "predicate": [ + "self:ancestry:beetle", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.6LvtdtVVwtbzqUXG", + "predicate": [ + "self:ancestry:skeletal-servant", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.cVrW2GGLVpydj8h5", + "predicate": [ + "self:ancestry:vampiric-animal", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.LaBfTYUsvoI3nscv", + "predicate": [ + "self:ancestry:zombie", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.oYEXImMSzg0eDqzR", + "predicate": [ + "self:ancestry:elephant", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.NMaMTiDB40L5O41S", + "predicate": [ + "self:ancestry:ghost", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.Uv49tQCwUUjaMCj5", + "predicate": [ + "self:ancestry:gibtas", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.JMHoCFb886K6dT1n", + "predicate": [ + "self:ancestry:rhinoceros", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.H1ElYt6KovGYGzLD", + "predicate": [ + "self:ancestry:triceratops", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.yXw82Zd5nkcCUfRQ", + "predicate": [ + "self:ancestry:tyrannosaurus", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.ow3S5zhS51Nj8tsI", + "predicate": [ + "self:ancestry:skeletal-bird-of-prey", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.AH3kNbdGLYaRjVAr", + "predicate": [ + "self:ancestry:skeletal-constrictor", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.MQv67R7KBIrJkshN", + "predicate": [ + "self:ancestry:undead-hand", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.9o7NwxGqohpa9M7r", + "predicate": [ + "self:ancestry:zombie-carrion-bird", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.h1Rldre8WVjUR5XO", + "predicate": [ + "self:ancestry:zombie-mount", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.aDuPDWgutiDIoWjW", + "predicate": [ + "self:ancestry:water-wraith", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.IoWvKP6WDijlkrin", + "predicate": [ + "self:ancestry:goat", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.MNiXOHI1Ezh0D24r", + "predicate": [ + "self:ancestry:draft-lizard", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.IJYikMs3TzYGpdHm", + "predicate": [ + "self:ancestry:augdunar", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.gzefJocgdWbXWWPi", + "predicate": [ + "self:ancestry:oozeform-chair", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.Xd4dnyHWexQRVyXn", + "predicate": [ + "self:ancestry:rootball-chair", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.ePNzRvGvBqzIujJr", + "predicate": [ + "self:ancestry:air-elemental", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.W6zkL0y4MqvlR0yW", + "predicate": [ + "self:ancestry:earth-elemental", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.LCilgiiIZp408R3k", + "predicate": [ + "self:ancestry:fire-elemental", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.oyNZpuQ6EU3prvo2", + "predicate": [ + "self:ancestry:metal-elemental", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.x4clojDNIvYB5V7X", + "predicate": [ + "self:ancestry:water-elemental", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.gvOo0KSSHkqfW3j5", + "predicate": [ + "self:ancestry:wood-elemental", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.AJ7hsZCvwLIzalYA", + "predicate": [ + "self:ancestry:chetamog", + { + "not": "has-advanced-maneuver" + } + ], + "replaceSelf": true, + "allowDuplicate": false + } + ], + "slug": "advanced-maneuver", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 14 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.223-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.4GUtdDCKZynlVWmC", + "duplicateSource": null + }, + "folder": null, + "sort": 3800000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!KrHyF5BSvYM6tFbB" +} diff --git a/packs/ac-features/Anchored_Incorporeality_BjE6osOFlAishRbh.json b/packs/ac-features/Anchored_Incorporeality_BjE6osOFlAishRbh.json new file mode 100644 index 0000000..507a15e --- /dev/null +++ b/packs/ac-features/Anchored_Incorporeality_BjE6osOFlAishRbh.json @@ -0,0 +1,79 @@ +{ + "_id": "BjE6osOFlAishRbh", + "name": "Anchored Incorporeality", + "type": "feat", + "img": "systems/pf2e/icons/spells/adapt-self.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.BjE6osOFlAishRbh" + } + }, + "system": { + "description": { + "gm": "", + "value": "While most ghosts are bound to the site where they died or were buried, some instead find themselves bound to specific items, such as a particular piece of jewelry, article of clothing, pet's collar, or a stone from a building in which it dwelled. These items, known as anchors, were important to the ghost in life, or critical to the events of their death and haunting.
\nA creature with anchored incorporeality has the incorporeal trait, meaning it can move through physical creatures and such creatures can move through it. It can't attempt Strength‑based checks (such as @Compendium[pf2e.actionspf2e.Grapple]{Grapple}) against corporeal creatures and corporeal creatures can't attempt such checks against it. Though incorporeal, a creature with anchored incorporeality can travel no more than 60 feet from its anchor and must maintain line of effect to the anchor. This typically prevents it from moving through walls. Unlike many other incorporeal creatures, a creature with anchored incorporeality doesn't have resistance to all damage or immunity to precision damage.
\nA character with an animal companion or familiar that has anchored incorporeality can transfer the anchor to a new item with a special ritual. This requires spending 1 week in concert with the companion to create a new anchor. A character who knows this technique might be able to adapt it to transfer a ghost's Site Bound ability (or similar restriction) to tie it to an anchor instead of a place.
" + }, + "rules": [], + "slug": "anchored-incorporeality", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.236-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.BjE6osOFlAishRbh", + "duplicateSource": null + }, + "folder": null, + "sort": 1900000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!BjE6osOFlAishRbh" +} diff --git a/packs/ac-features/Angelic_Avenger_oQ4aTLTv0qU7sRGG.json b/packs/ac-features/Angelic_Avenger_oQ4aTLTv0qU7sRGG.json new file mode 100644 index 0000000..357aa38 --- /dev/null +++ b/packs/ac-features/Angelic_Avenger_oQ4aTLTv0qU7sRGG.json @@ -0,0 +1,127 @@ +{ + "_id": "oQ4aTLTv0qU7sRGG", + "name": "Angelic Avenger", + "type": "feat", + "img": "systems/pf2e/icons/spells/angelic-wings.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 18, Dex 14, Con 16, Int 8, Wis 12, Cha 10; +2 AC (+3 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -1, + "mode": "downgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 2, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 3 + } + ], + "slug": "angelic-avenger", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.093-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 9400000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!oQ4aTLTv0qU7sRGG" +} diff --git a/packs/ac-features/Angelic_Emissary_WeZLk8HXhoa20J7t.json b/packs/ac-features/Angelic_Emissary_WeZLk8HXhoa20J7t.json new file mode 100644 index 0000000..4f3bb59 --- /dev/null +++ b/packs/ac-features/Angelic_Emissary_WeZLk8HXhoa20J7t.json @@ -0,0 +1,127 @@ +{ + "_id": "WeZLk8HXhoa20J7t", + "name": "Angelic Emissary", + "type": "feat", + "img": "systems/pf2e/icons/spells/angel-form.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 12, Dex 18, Con 12, Int 10, Wis 12, Cha 14; +1 AC (+4 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 1, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 4 + } + ], + "slug": "angelic-emissary", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.109-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 5800000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!WeZLk8HXhoa20J7t" +} diff --git a/packs/ac-features/Angelic_Mercy_QDtXuIshSTUBcxff.json b/packs/ac-features/Angelic_Mercy_QDtXuIshSTUBcxff.json new file mode 100644 index 0000000..d7493f2 --- /dev/null +++ b/packs/ac-features/Angelic_Mercy_QDtXuIshSTUBcxff.json @@ -0,0 +1,79 @@ +{ + "name": "Angelic Mercy", + "type": "feat", + "img": "systems/pf2e/icons/spells/angelic-halo.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.SAYZgbZuvv3jGxpz" + } + }, + "_id": "QDtXuIshSTUBcxff", + "system": { + "description": { + "gm": "", + "value": "Your eidolon's angelic power allows them to assuage a variety of ailments, just like most other powerful angels. Your eidolon can cast @Compendium[pf2e.spells-srd.OyFCwQuw8XRazsNr]{Remove Curse}, @Compendium[pf2e.spells-srd.RneiyehRO6f7LP44]{Remove Disease}, @Compendium[pf2e.spells-srd.EfFMLVbmkBWmzoLF]{Remove Fear}, and @Compendium[pf2e.spells-srd.BCuHKrDeJ4eq53M6]{Remove Paralysis} once per day each as 9th-level divine innate spells.
" + }, + "rules": [], + "slug": "angelic-mercy", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 17 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.218-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.SAYZgbZuvv3jGxpz", + "duplicateSource": null + }, + "folder": null, + "sort": 4700000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!QDtXuIshSTUBcxff" +} diff --git a/packs/ac-features/Anger_Aura_MET0PzSNfpxi0D3E.json b/packs/ac-features/Anger_Aura_MET0PzSNfpxi0D3E.json new file mode 100644 index 0000000..d0fc8b9 --- /dev/null +++ b/packs/ac-features/Anger_Aura_MET0PzSNfpxi0D3E.json @@ -0,0 +1,85 @@ +{ + "_id": "MET0PzSNfpxi0D3E", + "name": "Anger Aura", + "type": "feat", + "img": "systems/pf2e/icons/spells/abyssal-wrath.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.MET0PzSNfpxi0D3E" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon exudes wrath in an aura around it, rousing the ire of nearby creatures and causing their defenses to crack as they seethe with rage. Your eidolon gains a 20-foot anger aura, which has the aura, emotion, enchantment, mental, and occult traits. The resistances of any creature in the aura, including you, your allies, your enemies, and your eidolon, are reduced by an amount equal to 3 + your eidolon's Constitution modifier. Your eidolon can hold in its rage by spending a single action, which has the concentrate trait. This reduces the aura's effect to affect only your eidolon. It can take this action again to reinstate the full effect of its aura. Creatures in a barbarian Rage, Seething Frenzy, or similar ability that allows them to channel their anger aren't affected by the anger aura.
" + }, + "rules": [], + "slug": "anger-aura", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "aura", + "emotion", + "enchantment", + "mental", + "occult" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 17 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.221-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.MET0PzSNfpxi0D3E", + "duplicateSource": null + }, + "folder": null, + "sort": 4000000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!MET0PzSNfpxi0D3E" +} diff --git a/packs/ac-features/Animal_Companion_KKOgokqHa7RjVDN6.json b/packs/ac-features/Animal_Companion_KKOgokqHa7RjVDN6.json new file mode 100644 index 0000000..19989fd --- /dev/null +++ b/packs/ac-features/Animal_Companion_KKOgokqHa7RjVDN6.json @@ -0,0 +1,189 @@ +{ + "_id": "KKOgokqHa7RjVDN6", + "name": "Animal Companion", + "type": "class", + "img": "systems/pf2e/icons/default-icons/class.svg", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.h6Ybhv5URar01WPk" + }, + "exportSource": { + "world": "ac", + "system": "pf2e", + "coreVersion": "0.8.8", + "systemVersion": "2.6.0.6437" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.attributes.perception.rank" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.martial.unarmed.rank" + }, + { + "key": "ActiveEffectLike", + "value": -4, + "mode": "add", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "flags.pf2e.disableABP", + "value": true, + "priority": 10 + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.int.mod", + "predicate": [ + "self:specialized" + ], + "priority": 51 + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.dex.mod", + "predicate": [ + "self:specialized" + ], + "priority": 51 + }, + { + "key": "ActorTraits", + "add": [ + "minion" + ] + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.martial.light-barding.rank", + "priority": 41, + "value": 1 + }, + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.martial.heavy-barding.rank", + "priority": 41, + "value": 1 + } + ], + "slug": "animal-companion", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "keyAbility": { + "value": [] + }, + "items": {}, + "hp": 6, + "trainedSkills": { + "value": [ + "acr", + "ath" + ], + "additional": 0 + }, + "perception": 1, + "savingThrows": { + "fortitude": 1, + "reflex": 1, + "will": 1 + }, + "attacks": { + "simple": 0, + "martial": 0, + "advanced": 0, + "unarmed": 1, + "other": { + "name": "", + "rank": 0 + } + }, + "defenses": { + "unarmored": 1, + "light": 0, + "medium": 0, + "heavy": 0 + }, + "spellcasting": 0, + "ancestryFeatLevels": { + "value": [] + }, + "classFeatLevels": { + "value": [] + }, + "generalFeatLevels": { + "value": [] + }, + "skillFeatLevels": { + "value": [] + }, + "skillIncreaseLevels": { + "value": [] + }, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.224-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "classDC": 0, + "rarity": { + "value": "common" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.2", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Ancestries-and-Class.Item.h6Ybhv5URar01WPk", + "duplicateSource": null + }, + "folder": null, + "sort": 3600000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!KKOgokqHa7RjVDN6" +} diff --git a/packs/ac-features/Badger_Rage_Kgt1NyBesS3rohzb.json b/packs/ac-features/Badger_Rage_Kgt1NyBesS3rohzb.json new file mode 100644 index 0000000..2da0b48 --- /dev/null +++ b/packs/ac-features/Badger_Rage_Kgt1NyBesS3rohzb.json @@ -0,0 +1,104 @@ +{ + "_id": "Kgt1NyBesS3rohzb", + "name": "Badger Rage", + "type": "effect", + "img": "systems/pf2e/icons/features/classes/rage.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.Kgt1NyBesS3rohzb" + } + }, + "system": { + "description": { + "gm": "", + "value": "While raging, the badger is affected in the following ways.
\nIt deals 4 additional damage with its bite attacks and 2 additional damage with its claw attacks.
\nIt takes a –1 penalty to AC.
\nIt can’t use actions that have the concentrate trait unless they also have the rage trait. The animal companion can Seek even while raging.
" + }, + "rules": [ + { + "key": "FlatModifier", + "selector": "ac", + "value": -1, + "label": "rage-ac" + }, + { + "key": "FlatModifier", + "slug": "rage-bite", + "selector": "jaws-damage", + "value": 4 + }, + { + "key": "FlatModifier", + "slug": "rage-claws", + "selector": "claw-damage", + "value": 2 + } + ], + "slug": "badger-rage", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "duration": { + "value": 1, + "unit": "minutes", + "expiry": "turn-start", + "sustained": false + }, + "start": { + "value": 0, + "initiative": null + }, + "tokenIcon": { + "show": false + }, + "badge": null, + "context": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.224-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "target": null, + "rarity": { + "value": "common" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.Kgt1NyBesS3rohzb", + "duplicateSource": null + }, + "folder": null, + "sort": 3700000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!Kgt1NyBesS3rohzb" +} diff --git a/packs/ac-features/Beast_s_Charge_ITQghUQFhbYpD2QM.json b/packs/ac-features/Beast_s_Charge_ITQghUQFhbYpD2QM.json new file mode 100644 index 0000000..d518867 --- /dev/null +++ b/packs/ac-features/Beast_s_Charge_ITQghUQFhbYpD2QM.json @@ -0,0 +1,84 @@ +{ + "_id": "ITQghUQFhbYpD2QM", + "name": "Beast's Charge", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.ITQghUQFhbYpD2QM" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon rushes forward, using its momentum to increase the power of its attack. Your eidolon Strides twice and then Strikes. If the eidolon moved at least 20 feet away from its starting position and moved entirely in a straight line, it gains a +1 circumstance bonus to this attack roll.
" + }, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "rules": [ + { + "key": "RollOption", + "domain": "attack-roll", + "option": "beastsCharge", + "toggleable": true + }, + { + "key": "FlatModifier", + "selector": "attack", + "value": 1, + "type": "circumstance", + "predicate": [ + "beastsCharge" + ] + } + ], + "slug": "beasts-charge", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.225-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "eidolon" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.ITQghUQFhbYpD2QM", + "duplicateSource": null + }, + "folder": null, + "sort": 3400000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!ITQghUQFhbYpD2QM" +} diff --git a/packs/ac-features/Beast_s_Charge_lonj7zEZdJD2pbai.json b/packs/ac-features/Beast_s_Charge_lonj7zEZdJD2pbai.json new file mode 100644 index 0000000..d642842 --- /dev/null +++ b/packs/ac-features/Beast_s_Charge_lonj7zEZdJD2pbai.json @@ -0,0 +1,84 @@ +{ + "_id": "lonj7zEZdJD2pbai", + "name": "Beast's Charge", + "type": "feat", + "img": "systems/pf2e/icons/spells/shapechange.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.luKWDOY5dfNHl8WK" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon can make a ferocious charge or pounce on foes, allowing it to quickly engage. It gains the @Compendium[pf2e-animal-companions.AC-Features.ITQghUQFhbYpD2QM]{Beast's Charge} activity.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.ITQghUQFhbYpD2QM" + } + ], + "slug": "beasts-charge", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.096-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.luKWDOY5dfNHl8WK", + "duplicateSource": null + }, + "folder": null, + "sort": 8700000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!lonj7zEZdJD2pbai" +} diff --git a/packs/ac-features/Blasphemous_Decree_C0zzz9wVwfmGtfIQ.json b/packs/ac-features/Blasphemous_Decree_C0zzz9wVwfmGtfIQ.json new file mode 100644 index 0000000..870ec7e --- /dev/null +++ b/packs/ac-features/Blasphemous_Decree_C0zzz9wVwfmGtfIQ.json @@ -0,0 +1,79 @@ +{ + "_id": "C0zzz9wVwfmGtfIQ", + "name": "Blasphemous Decree", + "type": "feat", + "img": "systems/pf2e/icons/spells/divine-decree.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.C0zzz9wVwfmGtfIQ" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your demon utters indescribable words writhing with its associated sin. It can cast an evil @Compendium[pf2e.spells-srd.sX2o0HH4RjJDAZ8C]{Divine Decree} once per day as a 9th-level spell. You are unaffected by this decree, even if you aren't evil. At 19th level, this becomes a 10th-level divine decree instead.
" + }, + "rules": [], + "slug": "blasphemous-decree", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 17 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.230-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.C0zzz9wVwfmGtfIQ", + "duplicateSource": null + }, + "folder": null, + "sort": 2000000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!C0zzz9wVwfmGtfIQ" +} diff --git a/packs/ac-features/Breath_Weapon_I8fG26JJS29ZYwfZ.json b/packs/ac-features/Breath_Weapon_I8fG26JJS29ZYwfZ.json new file mode 100644 index 0000000..928b0bb --- /dev/null +++ b/packs/ac-features/Breath_Weapon_I8fG26JJS29ZYwfZ.json @@ -0,0 +1,113 @@ +{ + "_id": "I8fG26JJS29ZYwfZ", + "name": "Breath Weapon", + "type": "feat", + "img": "systems/pf2e/icons/spells/dragon-breath.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.I8fG26JJS29ZYwfZ" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon has a powerful breath weapon, which they are able to use regularly to wreak havoc upon your foes. They gain the Breath Weapon activity. Choose a damage type from among acid, cold, electricity, fire, negative, piercing, or poison, and choose whether the area is a @Template[type:line|distance:60] or a @Template[type:cone|distance:30]. Unless you chose piercing damage, both Breath Weapon and your eidolon gain the trait matching the damage type.
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.mzeQIa11p6ASSxIm" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.LoOw9anYYf7LDNZ7" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.MmMaKe7G1PQULBjL" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.mL6vuNanUJoubOjL" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.ExCuxQ4A31rmtr8Q" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.wHIXVGxc57t8Va4G" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.hzuu7aoFjo0Hwrub" + } + ], + "flag": "breathWeapon", + "key": "ChoiceSet", + "prompt": "PF2E.UI.RuleElemnts.ChoiceSet.Prompt" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.breathWeapon}" + } + ], + "slug": "breath-weapon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.225-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.I8fG26JJS29ZYwfZ", + "duplicateSource": null + }, + "folder": null, + "sort": 3200000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!I8fG26JJS29ZYwfZ" +} diff --git a/packs/ac-features/Breath_Weapon__Acid__mzeQIa11p6ASSxIm.json b/packs/ac-features/Breath_Weapon__Acid__mzeQIa11p6ASSxIm.json new file mode 100644 index 0000000..8252a90 --- /dev/null +++ b/packs/ac-features/Breath_Weapon__Acid__mzeQIa11p6ASSxIm.json @@ -0,0 +1,78 @@ +{ + "_id": "mzeQIa11p6ASSxIm", + "name": "Breath Weapon (Acid)", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.mzeQIa11p6ASSxIm" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon exhales a blast of destructive energy. Your eidolon deals [[/r 1d6[acid]]] damage to all creatures in the area, with a basic Reflex save against your spell DC. The area and damage type of the Breath Weapon are chosen when the eidolon gains this ability. Your eidolon then can't use their Breath Weapon again for the next [[/r 1d4 #Breath Weapon Cooldown]]{1d4 rounds}.
\nAt 3rd level and every 2 levels thereafter, the damage increases by 1d6.
\n@Template[type:cone|distance:30]
\n@Template[type:line|distance:60]
" + }, + "source": { + "value": "" + }, + "rules": [ + { + "key": "ActorTraits", + "add": [ + "acid" + ] + } + ], + "slug": "breath-weapon-acid", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.095-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "acid", + "arcane", + "eidolon", + "evocation" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.mzeQIa11p6ASSxIm", + "duplicateSource": null + }, + "folder": null, + "sort": 8900000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!mzeQIa11p6ASSxIm" +} diff --git a/packs/ac-features/Breath_Weapon__Cold__LoOw9anYYf7LDNZ7.json b/packs/ac-features/Breath_Weapon__Cold__LoOw9anYYf7LDNZ7.json new file mode 100644 index 0000000..5f79b81 --- /dev/null +++ b/packs/ac-features/Breath_Weapon__Cold__LoOw9anYYf7LDNZ7.json @@ -0,0 +1,78 @@ +{ + "_id": "LoOw9anYYf7LDNZ7", + "name": "Breath Weapon (Cold)", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.mzeQIa11p6ASSxIm" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon exhales a blast of destructive energy. Your eidolon deals [[/r 1d6[cold]]] damage to all creatures in the area, with a basic Reflex save against your spell DC. The area and damage type of the Breath Weapon are chosen when the eidolon gains this ability. Your eidolon then can't use their Breath Weapon again for the next [[/r 1d4 #Breath Weapon Cooldown]]{1d4 rounds}.
\nAt 3rd level and every 2 levels thereafter, the damage increases by 1d6.
\n@Template[type:cone|distance:30]
\n@Template[type:line|distance:60]
" + }, + "source": { + "value": "" + }, + "rules": [ + { + "key": "ActorTraits", + "add": [ + "cold" + ] + } + ], + "slug": "breath-weapon-cold", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.222-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "arcane", + "cold", + "eidolon", + "evocation" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.mzeQIa11p6ASSxIm", + "duplicateSource": null + }, + "folder": null, + "sort": 3900000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!LoOw9anYYf7LDNZ7" +} diff --git a/packs/ac-features/Breath_Weapon__Electricity__MmMaKe7G1PQULBjL.json b/packs/ac-features/Breath_Weapon__Electricity__MmMaKe7G1PQULBjL.json new file mode 100644 index 0000000..986abb7 --- /dev/null +++ b/packs/ac-features/Breath_Weapon__Electricity__MmMaKe7G1PQULBjL.json @@ -0,0 +1,78 @@ +{ + "_id": "MmMaKe7G1PQULBjL", + "name": "Breath Weapon (Electricity)", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.mzeQIa11p6ASSxIm" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon exhales a blast of destructive energy. Your eidolon deals [[/r 1d6[electricity]]] damage to all creatures in the area, with a basic Reflex save against your spell DC. The area and damage type of the Breath Weapon are chosen when the eidolon gains this ability. Your eidolon then can't use their Breath Weapon again for the next [[/r 1d4 #Breath Weapon Cooldown]]{1d4 rounds}.
\nAt 3rd level and every 2 levels thereafter, the damage increases by 1d6.
\n@Template[type:cone|distance:30]
\n@Template[type:line|distance:60]
" + }, + "source": { + "value": "" + }, + "rules": [ + { + "key": "ActorTraits", + "add": [ + "electricity" + ] + } + ], + "slug": "breath-weapon-electricity", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.221-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "arcane", + "eidolon", + "electricity", + "evocation" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.mzeQIa11p6ASSxIm", + "duplicateSource": null + }, + "folder": null, + "sort": 4100000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!MmMaKe7G1PQULBjL" +} diff --git a/packs/ac-features/Breath_Weapon__Fire__mL6vuNanUJoubOjL.json b/packs/ac-features/Breath_Weapon__Fire__mL6vuNanUJoubOjL.json new file mode 100644 index 0000000..b8b97c2 --- /dev/null +++ b/packs/ac-features/Breath_Weapon__Fire__mL6vuNanUJoubOjL.json @@ -0,0 +1,78 @@ +{ + "_id": "mL6vuNanUJoubOjL", + "name": "Breath Weapon (Fire)", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.mzeQIa11p6ASSxIm" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon exhales a blast of destructive energy. Your eidolon deals [[/r 1d6[fire]]] damage to all creatures in the area, with a basic Reflex save against your spell DC. The area and damage type of the Breath Weapon are chosen when the eidolon gains this ability. Your eidolon then can't use their Breath Weapon again for the next [[/r 1d4 #Breath Weapon Cooldown]]{1d4 rounds}.
\nAt 3rd level and every 2 levels thereafter, the damage increases by 1d6.
\n@Template[type:cone|distance:30]
\n@Template[type:line|distance:60]
" + }, + "source": { + "value": "" + }, + "rules": [ + { + "key": "ActorTraits", + "add": [ + "fire" + ] + } + ], + "slug": "breath-weapon-fire", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.096-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "arcane", + "eidolon", + "evocation", + "fire" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.mzeQIa11p6ASSxIm", + "duplicateSource": null + }, + "folder": null, + "sort": 8800000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!mL6vuNanUJoubOjL" +} diff --git a/packs/ac-features/Breath_Weapon__Negative__ExCuxQ4A31rmtr8Q.json b/packs/ac-features/Breath_Weapon__Negative__ExCuxQ4A31rmtr8Q.json new file mode 100644 index 0000000..0af5000 --- /dev/null +++ b/packs/ac-features/Breath_Weapon__Negative__ExCuxQ4A31rmtr8Q.json @@ -0,0 +1,77 @@ +{ + "_id": "ExCuxQ4A31rmtr8Q", + "name": "Breath Weapon (Negative)", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.mzeQIa11p6ASSxIm" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon exhales a blast of destructive energy. Your eidolon deals [[/r 1d6[negative]]] damage to all creatures in the area, with a basic Reflex save against your spell DC. The area and damage type of the Breath Weapon are chosen when the eidolon gains this ability. Your eidolon then can't use their Breath Weapon again for the next [[/r 1d4 #Breath Weapon Cooldown]]{1d4 rounds}.
\nAt 3rd level and every 2 levels thereafter, the damage increases by 1d6.
\n@Template[type:cone|distance:30]
\n@Template[type:line|distance:60]
" + }, + "source": { + "value": "" + }, + "rules": [ + { + "key": "ActorTraits", + "add": [ + "negative" + ] + } + ], + "slug": "breath-weapon-negative", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.228-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "arcane", + "eidolon", + "evocation" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.mzeQIa11p6ASSxIm", + "duplicateSource": null + }, + "folder": null, + "sort": 2500000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!ExCuxQ4A31rmtr8Q" +} diff --git a/packs/ac-features/Breath_Weapon__Piercing__wHIXVGxc57t8Va4G.json b/packs/ac-features/Breath_Weapon__Piercing__wHIXVGxc57t8Va4G.json new file mode 100644 index 0000000..1fb6525 --- /dev/null +++ b/packs/ac-features/Breath_Weapon__Piercing__wHIXVGxc57t8Va4G.json @@ -0,0 +1,70 @@ +{ + "_id": "wHIXVGxc57t8Va4G", + "name": "Breath Weapon (Piercing)", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.mzeQIa11p6ASSxIm" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon exhales a blast of destructive energy. Your eidolon deals [[/r 1d6[piercing]]] damage to all creatures in the area, with a basic Reflex save against your spell DC. The area and damage type of the Breath Weapon are chosen when the eidolon gains this ability. Your eidolon then can't use their Breath Weapon again for the next [[/r 1d4 #Breath Weapon Cooldown]]{1d4 rounds}.
\nAt 3rd level and every 2 levels thereafter, the damage increases by 1d6.
\n@Template[type:cone|distance:30]
\n@Template[type:line|distance:60]
" + }, + "source": { + "value": "" + }, + "rules": [], + "slug": "breath-weapon-piercing", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.087-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "arcane", + "eidolon", + "evocation" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.mzeQIa11p6ASSxIm", + "duplicateSource": null + }, + "folder": null, + "sort": 10800000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!wHIXVGxc57t8Va4G" +} diff --git a/packs/ac-features/Breath_Weapon__Poison__hzuu7aoFjo0Hwrub.json b/packs/ac-features/Breath_Weapon__Poison__hzuu7aoFjo0Hwrub.json new file mode 100644 index 0000000..2afd677 --- /dev/null +++ b/packs/ac-features/Breath_Weapon__Poison__hzuu7aoFjo0Hwrub.json @@ -0,0 +1,77 @@ +{ + "_id": "hzuu7aoFjo0Hwrub", + "name": "Breath Weapon (Poison)", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.mzeQIa11p6ASSxIm" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon exhales a blast of destructive energy. Your eidolon deals [[/r 1d6[poison]]] damage to all creatures in the area, with a basic Reflex save against your spell DC. The area and damage type of the Breath Weapon are chosen when the eidolon gains this ability. Your eidolon then can't use their Breath Weapon again for the next [[/r 1d4 #Breath Weapon Cooldown]]{1d4 rounds}.
\nAt 3rd level and every 2 levels thereafter, the damage increases by 1d6.
\n@Template[type:cone|distance:30]
\n@Template[type:line|distance:60]
" + }, + "source": { + "value": "" + }, + "rules": [ + { + "key": "ActorTraits", + "add": [ + "poison" + ] + } + ], + "slug": "breath-weapon-poison", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.099-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "arcane", + "eidolon", + "evocation" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.mzeQIa11p6ASSxIm", + "duplicateSource": null + }, + "folder": null, + "sort": 8100000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!hzuu7aoFjo0Hwrub" +} diff --git a/packs/ac-features/Brutal_Beast_gLvVuJKxvL85qv4n.json b/packs/ac-features/Brutal_Beast_gLvVuJKxvL85qv4n.json new file mode 100644 index 0000000..0c99229 --- /dev/null +++ b/packs/ac-features/Brutal_Beast_gLvVuJKxvL85qv4n.json @@ -0,0 +1,127 @@ +{ + "_id": "gLvVuJKxvL85qv4n", + "name": "Brutal Beast", + "type": "feat", + "img": "systems/pf2e/icons/spells/divine-vessel.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 18, Dex 14, Con 16, Int 8, Wis 12, Cha 10; +2 AC (+3 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -1, + "mode": "downgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 2, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 3 + } + ], + "slug": "brutal-beast", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.325-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 7800000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!gLvVuJKxvL85qv4n" +} diff --git a/packs/ac-features/CURRENT b/packs/ac-features/CURRENT deleted file mode 100644 index 1df8f35..0000000 --- a/packs/ac-features/CURRENT +++ /dev/null @@ -1 +0,0 @@ -MANIFEST-000275 diff --git a/packs/ac-features/Charisma_Boost_qhUxX4BhaZc0griR.json b/packs/ac-features/Charisma_Boost_qhUxX4BhaZc0griR.json new file mode 100644 index 0000000..3323254 --- /dev/null +++ b/packs/ac-features/Charisma_Boost_qhUxX4BhaZc0griR.json @@ -0,0 +1,100 @@ +{ + "_id": "qhUxX4BhaZc0griR", + "name": "Charisma Boost", + "type": "feat", + "img": "systems/pf2e/icons/spells/alter-reality.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.DNpa1GdDXz8L4Fra" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": { + "brackets": [ + { + "end": 3, + "start": -4, + "value": 1 + }, + { + "start": 4, + "value": 0.5 + } + ], + "field": "actor|system.abilities.cha.mod" + }, + "mode": "add", + "path": "system.abilities.cha.mod", + "priority": 50 + } + ], + "slug": "charisma-boost", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 5 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.091-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.DNpa1GdDXz8L4Fra", + "duplicateSource": null + }, + "folder": null, + "sort": 10000000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!qhUxX4BhaZc0griR" +} diff --git a/packs/ac-features/Constitution_Boost_RQd8FPcVP3hrVXCr.json b/packs/ac-features/Constitution_Boost_RQd8FPcVP3hrVXCr.json new file mode 100644 index 0000000..6d58a33 --- /dev/null +++ b/packs/ac-features/Constitution_Boost_RQd8FPcVP3hrVXCr.json @@ -0,0 +1,100 @@ +{ + "_id": "RQd8FPcVP3hrVXCr", + "name": "Constitution Boost", + "type": "feat", + "img": "systems/pf2e/icons/spells/restoration.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.DNpa1GdDXz8L4Fra" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": { + "brackets": [ + { + "end": 3, + "start": -4, + "value": 1 + }, + { + "start": 4, + "value": 0.5 + } + ], + "field": "actor|system.abilities.con.mod" + }, + "mode": "add", + "path": "system.abilities.con.mod", + "priority": 50 + } + ], + "slug": "constitution-boost", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 5 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.218-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.DNpa1GdDXz8L4Fra", + "duplicateSource": null + }, + "folder": null, + "sort": 4800000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!RQd8FPcVP3hrVXCr" +} diff --git a/packs/ac-features/Construct_Companion_OJePkZgnguu5Z8cA.json b/packs/ac-features/Construct_Companion_OJePkZgnguu5Z8cA.json new file mode 100644 index 0000000..75a7e3d --- /dev/null +++ b/packs/ac-features/Construct_Companion_OJePkZgnguu5Z8cA.json @@ -0,0 +1,205 @@ +{ + "_id": "OJePkZgnguu5Z8cA", + "name": "Construct Companion", + "type": "class", + "img": "systems/pf2e/icons/default-icons/class.svg", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.iOVXqZOCqrOskHcd" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "add", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "add", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -4, + "mode": "add", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.wis.mod" + }, + { + "key": "DamageDice", + "selector": "unarmed-attack-damage", + "override": { + "dieSize": "d8" + } + }, + { + "key": "Immunity", + "type": "bleed" + }, + { + "key": "Immunity", + "type": "death-effects" + }, + { + "key": "Immunity", + "type": "disease" + }, + { + "key": "Immunity", + "type": "doomed" + }, + { + "key": "Immunity", + "type": "drained" + }, + { + "key": "Immunity", + "type": "fatigued" + }, + { + "key": "Immunity", + "type": "healing" + }, + { + "key": "Immunity", + "type": "necromancy" + }, + { + "key": "Immunity", + "type": "nonlethal-attacks" + }, + { + "key": "Immunity", + "type": "paralyzed" + }, + { + "key": "Immunity", + "type": "poison" + }, + { + "key": "Immunity", + "type": "sickened" + }, + { + "key": "Immunity", + "type": "unconscious" + } + ], + "slug": "construct-companion", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "keyAbility": { + "value": [] + }, + "items": {}, + "hp": 6, + "trainedSkills": { + "value": [ + "acr", + "ath" + ], + "additional": 0, + "custom": "" + }, + "perception": 1, + "savingThrows": { + "fortitude": 1, + "reflex": 1, + "will": 1 + }, + "attacks": { + "simple": 0, + "martial": 0, + "advanced": 0, + "unarmed": 1, + "other": { + "name": "", + "rank": 0 + } + }, + "defenses": { + "unarmored": 1, + "light": 0, + "medium": 0, + "heavy": 0 + }, + "spellcasting": 0, + "ancestryFeatLevels": { + "value": [] + }, + "classFeatLevels": { + "value": [] + }, + "generalFeatLevels": { + "value": [] + }, + "skillFeatLevels": { + "value": [] + }, + "skillIncreaseLevels": { + "value": [] + }, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.220-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "classDC": 0 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.iOVXqZOCqrOskHcd", + "duplicateSource": null + }, + "folder": null, + "sort": 4400000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!OJePkZgnguu5Z8cA" +} diff --git a/packs/ac-features/Construct_Heart_tBhCZN3SwlxQirL1.json b/packs/ac-features/Construct_Heart_tBhCZN3SwlxQirL1.json new file mode 100644 index 0000000..57c3b49 --- /dev/null +++ b/packs/ac-features/Construct_Heart_tBhCZN3SwlxQirL1.json @@ -0,0 +1,98 @@ +{ + "_id": "tBhCZN3SwlxQirL1", + "name": "Construct Heart", + "type": "feat", + "img": "systems/pf2e/icons/spells/ancestral-memories.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.tBhCZN3SwlxQirL1" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your construct eidolon has a link directly to your life force, which renders it a living creature and therefore susceptible to many ailments that bother only the living, though it does possess some resistances to these effects. It doesn't have a construct's normal immunities, but does gain a +2 circumstance bonus to saving throws against death effects, disease, necromancy, and poison effects, as well as effects causing the @Compendium[pf2e.conditionitems.Fatigued]{Fatigued} or sickened conditions. Additionally, its astral essence bleeds off slowly, and it only needs to succeed at a Flat Check to remove persistent bleed damage (or a Flat Check after receiving particularly effective aid).
" + }, + "rules": [ + { + "key": "FlatModifier", + "selector": "saving-throw", + "value": 2, + "type": "circumstance", + "predicate": [ + { + "or": [ + "death-effects", + "disease", + "necromancy", + "poison", + "fatigued", + "sickened" + ] + } + ] + } + ], + "slug": "construct-heart", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.090-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.tBhCZN3SwlxQirL1", + "duplicateSource": null + }, + "folder": null, + "sort": 10500000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!tBhCZN3SwlxQirL1" +} diff --git a/packs/ac-features/Creeping_Plant_1maDsT21my4REUEX.json b/packs/ac-features/Creeping_Plant_1maDsT21my4REUEX.json new file mode 100644 index 0000000..18231c4 --- /dev/null +++ b/packs/ac-features/Creeping_Plant_1maDsT21my4REUEX.json @@ -0,0 +1,127 @@ +{ + "_id": "1maDsT21my4REUEX", + "name": "Creeping Plant", + "type": "feat", + "img": "systems/pf2e/icons/spells/plant-form-flytrap.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 12, Dex 18, Con 16, Int 8, Wis 14, Cha 10; +1 AC (+4 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -1, + "mode": "downgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 1, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 4 + } + ], + "slug": "creeping-plant", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.324-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 200000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!1maDsT21my4REUEX" +} diff --git a/packs/ac-features/Cunning_Dragon_FM1HQ1kqC3N9nWr0.json b/packs/ac-features/Cunning_Dragon_FM1HQ1kqC3N9nWr0.json new file mode 100644 index 0000000..c3d7c81 --- /dev/null +++ b/packs/ac-features/Cunning_Dragon_FM1HQ1kqC3N9nWr0.json @@ -0,0 +1,127 @@ +{ + "_id": "FM1HQ1kqC3N9nWr0", + "name": "Cunning Dragon", + "type": "feat", + "img": "systems/pf2e/icons/spells/summon-dragon.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 12, Dex 18, Con 12, Int 14, Wis 10, Cha 12; +1 AC (+4 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 1, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 4 + } + ], + "slug": "cunning-dragon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.227-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 2700000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!FM1HQ1kqC3N9nWr0" +} diff --git a/packs/ac-features/Demonic_Strikes_o3P8heIfNr1z53Ay.json b/packs/ac-features/Demonic_Strikes_o3P8heIfNr1z53Ay.json new file mode 100644 index 0000000..1ca10f9 --- /dev/null +++ b/packs/ac-features/Demonic_Strikes_o3P8heIfNr1z53Ay.json @@ -0,0 +1,95 @@ +{ + "_id": "o3P8heIfNr1z53Ay", + "name": "Demonic Strikes", + "type": "feat", + "img": "systems/pf2e/icons/spells/all-is-one-one-is-all.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.jSDsKX3BOHhvtgsD" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon's attacks are corrupted by the Abyss and imbued with pure evil and shifting chaos. Your eidolon's unarmed Strikes gain the unholy trait and deal 1 extra spirit damage to holy creatures and creatures with weakness to unholy. Additionally, choose one of your eidolon's unarmed attacks that deals physical damage; it gains the versatile trait for a different type of physical damage you choose.
" + }, + "rules": [ + { + "key": "FlatModifier", + "selector": "strike-damage", + "value": 1, + "damageType": "spirit", + "predicate": [ + "target:trait:holy" + ] + }, + { + "key": "AdjustStrike", + "mode": "add", + "property": "traits", + "value": "unholy" + } + ], + "slug": "demonic-strikes", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.095-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Item.jSDsKX3BOHhvtgsD", + "duplicateSource": null + }, + "folder": null, + "sort": 9100000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!o3P8heIfNr1z53Ay" +} diff --git a/packs/ac-features/Devotion_Aura_oOBWRXPtYIXWp5Sm.json b/packs/ac-features/Devotion_Aura_oOBWRXPtYIXWp5Sm.json new file mode 100644 index 0000000..46bf175 --- /dev/null +++ b/packs/ac-features/Devotion_Aura_oOBWRXPtYIXWp5Sm.json @@ -0,0 +1,79 @@ +{ + "_id": "oOBWRXPtYIXWp5Sm", + "name": "Devotion Aura", + "type": "feat", + "img": "systems/pf2e/icons/spells/battlefield-persistence.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.oOBWRXPtYIXWp5Sm" + } + }, + "system": { + "description": { + "gm": "", + "value": "After fighting at your side for so long, your eidolon has become as devoted to protecting you and your allies as it is to its original cause. It gains a 20-foot devotion aura, which has the abjuration, aura, and occult traits. Whenever one of your eidolon's allies within the aura takes damage, you can reduce the damage by your eidolon's Constitution modifier. You lose a number of Hit Points equal to half the amount by which the eidolon reduced the damage, rounded down. If the damage was lower than the Constitution modifier, base the damage you take on the actual amount of damage prevented.
" + }, + "rules": [], + "slug": "devotion-aura", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 17 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.094-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.oOBWRXPtYIXWp5Sm", + "duplicateSource": null + }, + "folder": null, + "sort": 9200000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!oOBWRXPtYIXWp5Sm" +} diff --git a/packs/ac-features/Dexterity_Boost_nhFkOYRdlT5iLzdQ.json b/packs/ac-features/Dexterity_Boost_nhFkOYRdlT5iLzdQ.json new file mode 100644 index 0000000..fc8b35e --- /dev/null +++ b/packs/ac-features/Dexterity_Boost_nhFkOYRdlT5iLzdQ.json @@ -0,0 +1,100 @@ +{ + "_id": "nhFkOYRdlT5iLzdQ", + "name": "Dexterity Boost", + "type": "feat", + "img": "systems/pf2e/icons/spells/agile-feet.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.DNpa1GdDXz8L4Fra" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": { + "brackets": [ + { + "end": 3, + "start": -4, + "value": 1 + }, + { + "start": 4, + "value": 0.5 + } + ], + "field": "actor|system.abilities.dex.mod" + }, + "mode": "add", + "path": "system.abilities.dex.mod", + "priority": 50 + } + ], + "slug": "dexterity-boost", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 5 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.095-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.DNpa1GdDXz8L4Fra", + "duplicateSource": null + }, + "folder": null, + "sort": 9000000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!nhFkOYRdlT5iLzdQ" +} diff --git a/packs/ac-features/Draconic_Frenzy_HiVt4B5bE2hi0FWc.json b/packs/ac-features/Draconic_Frenzy_HiVt4B5bE2hi0FWc.json new file mode 100644 index 0000000..0c8ff45 --- /dev/null +++ b/packs/ac-features/Draconic_Frenzy_HiVt4B5bE2hi0FWc.json @@ -0,0 +1,68 @@ +{ + "_id": "HiVt4B5bE2hi0FWc", + "name": "Draconic Frenzy", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.HiVt4B5bE2hi0FWc" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon makes one Strike with their primary unarmed attack and two Strikes with their secondary unarmed attack (in any order). If any of these attacks critically hits an enemy, your eidolon instantly recovers the use of their Breath Weapon.
" + }, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "rules": [], + "slug": "draconic-frenzy", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.226-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "eidolon" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.HiVt4B5bE2hi0FWc", + "duplicateSource": null + }, + "folder": null, + "sort": 3100000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!HiVt4B5bE2hi0FWc" +} diff --git a/packs/ac-features/Draconic_Frenzy_oSjJ726kv8wvk1Rb.json b/packs/ac-features/Draconic_Frenzy_oSjJ726kv8wvk1Rb.json new file mode 100644 index 0000000..e2a6615 --- /dev/null +++ b/packs/ac-features/Draconic_Frenzy_oSjJ726kv8wvk1Rb.json @@ -0,0 +1,84 @@ +{ + "name": "Draconic Frenzy", + "type": "feat", + "img": "systems/pf2e/icons/spells/summon-draconic-legion.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.cgEzBx3hVSOw6Xpk" + } + }, + "_id": "oSjJ726kv8wvk1Rb", + "system": { + "description": { + "gm": "", + "value": "Your eidolon can make a furious assault, potentially recovering the use of their Breath Weapon. They gain the @Compendium[pf2e-animal-companions.AC-Features.HiVt4B5bE2hi0FWc]{Draconic Frenzy} activity.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.HiVt4B5bE2hi0FWc" + } + ], + "slug": "draconic-frenzy", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.093-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.cgEzBx3hVSOw6Xpk", + "duplicateSource": null + }, + "folder": null, + "sort": 9500000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!oSjJ726kv8wvk1Rb" +} diff --git a/packs/ac-features/Drain_Life_3Ns5BmFpAcoGQIY5.json b/packs/ac-features/Drain_Life_3Ns5BmFpAcoGQIY5.json new file mode 100644 index 0000000..52bdf5b --- /dev/null +++ b/packs/ac-features/Drain_Life_3Ns5BmFpAcoGQIY5.json @@ -0,0 +1,71 @@ +{ + "_id": "3Ns5BmFpAcoGQIY5", + "name": "Drain Life", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.3Ns5BmFpAcoGQIY5" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon attacks a living creature and drains some of the creature's life force to feed your shared link. Your eidolon Strikes a living enemy. If the Strike hits and deals damage, the target must attempt a Fortitude save, with the following effects. On a critical hit, the enemy uses the result one degree worse than it rolled.
\nCritical Success No effect.
\nSuccess Your eidolon drains a small amount of life force. The enemy takes additional negative damage equal to half your level.
\nFailure Your eidolon drains enough life force to satisfy itself. The enemy takes additional negative damage equal to half your level and is @Compendium[pf2e.conditionitems.Drained]{Drained 1}. Your eidolon gains temporary Hit Points equal to the enemy's level, which last for 1 minute.
\nCritical Failure Your eidolon drains an incredible amount of life force and is thoroughly glutted with energy. As failure, but the enemy is @Compendium[pf2e.conditionitems.Drained]{Drained 2} and the temporary Hit Points are equal to double the enemy's level.
" + }, + "source": { + "value": "Pathfinder Book of the Dead" + }, + "rules": [], + "slug": "drain-life", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.323-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "divine", + "eidolon", + "necromancy", + "negative" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.3Ns5BmFpAcoGQIY5", + "duplicateSource": null + }, + "folder": null, + "sort": 300000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!3Ns5BmFpAcoGQIY5" +} diff --git a/packs/ac-features/Drain_Life_oxpHUtYre2CTaE4t.json b/packs/ac-features/Drain_Life_oxpHUtYre2CTaE4t.json new file mode 100644 index 0000000..0cdb77e --- /dev/null +++ b/packs/ac-features/Drain_Life_oxpHUtYre2CTaE4t.json @@ -0,0 +1,85 @@ +{ + "_id": "oxpHUtYre2CTaE4t", + "name": "Drain Life", + "type": "feat", + "img": "systems/pf2e/icons/spells/vampiric-touch.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.oxpHUtYre2CTaE4t" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon's link with you sustains it, but it still craves the life essence of the living, whether through blood or pure essence. It gains the @Compendium[pf2e-animal-companions.AC-Features.3Ns5BmFpAcoGQIY5]{Drain Life} activity.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.3Ns5BmFpAcoGQIY5", + "allowDuplicate": false + } + ], + "slug": "drain-life", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.092-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.oxpHUtYre2CTaE4t", + "duplicateSource": null + }, + "folder": null, + "sort": 9700000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!oxpHUtYre2CTaE4t" +} diff --git a/packs/ac-features/Dutiful_Retaliation_4NuAF8jxWDWzia9Z.json b/packs/ac-features/Dutiful_Retaliation_4NuAF8jxWDWzia9Z.json new file mode 100644 index 0000000..33e5946 --- /dev/null +++ b/packs/ac-features/Dutiful_Retaliation_4NuAF8jxWDWzia9Z.json @@ -0,0 +1,70 @@ +{ + "_id": "4NuAF8jxWDWzia9Z", + "name": "Dutiful Retaliation", + "type": "action", + "img": "systems/pf2e/icons/actions/Reaction.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.4NuAF8jxWDWzia9Z" + } + }, + "system": { + "description": { + "gm": "", + "value": "Trigger An enemy within 15 feet of you hits you with a Strike and deals damage to you.
\nRequirements Your eidolon is within 15 feet of you.
\nYour eidolon instinctively flashes with ectoplasmic energy, allowing them to strike back against an enemy who dares to harm you. Your eidolon makes a melee unarmed Strike against the triggering enemy, even if that enemy isn't within your eidolon's reach.
" + }, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "rules": [], + "slug": "dutiful-retaliation", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.323-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "eidolon", + "occult", + "transmutation" + ], + "rarity": "common" + }, + "actionType": { + "value": "reaction" + }, + "category": "defensive", + "actions": { + "value": null + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.4NuAF8jxWDWzia9Z", + "duplicateSource": null + }, + "folder": null, + "sort": 500000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!4NuAF8jxWDWzia9Z" +} diff --git a/packs/ac-features/Dutiful_Retaliation_V5bcYgKbJTHdOBHI.json b/packs/ac-features/Dutiful_Retaliation_V5bcYgKbJTHdOBHI.json new file mode 100644 index 0000000..636b38d --- /dev/null +++ b/packs/ac-features/Dutiful_Retaliation_V5bcYgKbJTHdOBHI.json @@ -0,0 +1,84 @@ +{ + "name": "Dutiful Retaliation", + "type": "feat", + "img": "systems/pf2e/icons/spells/delay-consequence.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.dVjtZNZSiRLnRs1Y" + } + }, + "_id": "V5bcYgKbJTHdOBHI", + "system": { + "description": { + "gm": "", + "value": "Your eidolon deeply respects your assistance, and it extends its loyalty to you, attacking those who dare harm you. It gains the @Compendium[pf2e-animal-companions.AC-Features.4NuAF8jxWDWzia9Z]{Dutiful Retaliation} reaction.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.4NuAF8jxWDWzia9Z" + } + ], + "slug": "dutiful-retaliation", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.215-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.dVjtZNZSiRLnRs1Y", + "duplicateSource": null + }, + "folder": null, + "sort": 5200000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!V5bcYgKbJTHdOBHI" +} diff --git a/packs/ac-features/Effect__Seething_Frenzy_yE9n6h53psgbYThV.json b/packs/ac-features/Effect__Seething_Frenzy_yE9n6h53psgbYThV.json new file mode 100644 index 0000000..31f5558 --- /dev/null +++ b/packs/ac-features/Effect__Seething_Frenzy_yE9n6h53psgbYThV.json @@ -0,0 +1,88 @@ +{ + "_id": "yE9n6h53psgbYThV", + "name": "Effect: Seething Frenzy", + "type": "effect", + "img": "systems/pf2e/icons/features/classes/rage.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.yE9n6h53psgbYThV" + } + }, + "system": { + "description": { + "gm": "", + "value": "The creature takes a -2 penalty to AC.
" + }, + "rules": [ + { + "key": "FlatModifier", + "selector": "ac", + "value": -2 + } + ], + "slug": "effect-seething-frenzy", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "duration": { + "value": 1, + "unit": "minutes", + "expiry": "turn-start", + "sustained": false + }, + "start": { + "value": 0, + "initiative": null + }, + "tokenIcon": { + "show": true + }, + "badge": null, + "context": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.086-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "target": null + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.yE9n6h53psgbYThV", + "duplicateSource": null + }, + "folder": null, + "sort": 11100000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!yE9n6h53psgbYThV" +} diff --git a/packs/ac-features/Eidolon_Ability_5E71mdImeRE9Fh1D.json b/packs/ac-features/Eidolon_Ability_5E71mdImeRE9Fh1D.json new file mode 100644 index 0000000..fc64fef --- /dev/null +++ b/packs/ac-features/Eidolon_Ability_5E71mdImeRE9Fh1D.json @@ -0,0 +1,84 @@ +{ + "_id": "5E71mdImeRE9Fh1D", + "name": "Eidolon Ability", + "type": "feat", + "img": "systems/pf2e/icons/features/classes/eidolon.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.5E71mdImeRE9Fh1D" + } + }, + "system": { + "description": { + "gm": "", + "value": "The eidolon starts with an initial ability determined by the eidolon type.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "{actor|flags.pf2e.eidolon-features.initial}" + } + ], + "slug": "eidolon-ability", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.241-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.5E71mdImeRE9Fh1D", + "duplicateSource": null + }, + "folder": null, + "sort": 700000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!5E71mdImeRE9Fh1D" +} diff --git a/packs/ac-features/Eidolon_Ability_Boosts__10th__iRlcl9MOhoEL943l.json b/packs/ac-features/Eidolon_Ability_Boosts__10th__iRlcl9MOhoEL943l.json new file mode 100644 index 0000000..f9339b5 --- /dev/null +++ b/packs/ac-features/Eidolon_Ability_Boosts__10th__iRlcl9MOhoEL943l.json @@ -0,0 +1,224 @@ +{ + "_id": "iRlcl9MOhoEL943l", + "name": "Eidolon Ability Boosts (10th)", + "type": "feat", + "img": "systems/pf2e/icons/spells/devour-life.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.YJMXRVKBk4uEOFeV" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5gnUVvjqXD99OpUX" + }, + { + "label": "PF2E.AbilityDex", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.nhFkOYRdlT5iLzdQ" + }, + { + "label": "PF2E.AbilityCon", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RQd8FPcVP3hrVXCr" + }, + { + "label": "PF2E.AbilityInt", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RvCQCutoKANEqw5C" + }, + { + "label": "PF2E.AbilityWis", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.At61D9oWr39Ss6Ea" + }, + { + "label": "PF2E.AbilityCha", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.qhUxX4BhaZc0griR" + } + ], + "flag": "abilityBoostOne", + "key": "ChoiceSet", + "prompt": "PF2E.AbilityBoost" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.abilityBoostOne}" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5gnUVvjqXD99OpUX" + }, + { + "label": "PF2E.AbilityDex", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.nhFkOYRdlT5iLzdQ" + }, + { + "label": "PF2E.AbilityCon", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RQd8FPcVP3hrVXCr" + }, + { + "label": "PF2E.AbilityInt", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RvCQCutoKANEqw5C" + }, + { + "label": "PF2E.AbilityWis", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.At61D9oWr39Ss6Ea" + }, + { + "label": "PF2E.AbilityCha", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.qhUxX4BhaZc0griR" + } + ], + "flag": "abilityBoostTwo", + "key": "ChoiceSet", + "prompt": "PF2E.AbilityBoost" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.abilityBoostTwo}" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5gnUVvjqXD99OpUX" + }, + { + "label": "PF2E.AbilityDex", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.nhFkOYRdlT5iLzdQ" + }, + { + "label": "PF2E.AbilityCon", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RQd8FPcVP3hrVXCr" + }, + { + "label": "PF2E.AbilityInt", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RvCQCutoKANEqw5C" + }, + { + "label": "PF2E.AbilityWis", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.At61D9oWr39Ss6Ea" + }, + { + "label": "PF2E.AbilityCha", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.qhUxX4BhaZc0griR" + } + ], + "flag": "abilityBoostThree", + "key": "ChoiceSet", + "prompt": "PF2E.AbilityBoost" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.abilityBoostThree}" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5gnUVvjqXD99OpUX" + }, + { + "label": "PF2E.AbilityDex", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.nhFkOYRdlT5iLzdQ" + }, + { + "label": "PF2E.AbilityCon", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RQd8FPcVP3hrVXCr" + }, + { + "label": "PF2E.AbilityInt", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RvCQCutoKANEqw5C" + }, + { + "label": "PF2E.AbilityWis", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.At61D9oWr39Ss6Ea" + }, + { + "label": "PF2E.AbilityCha", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.qhUxX4BhaZc0griR" + } + ], + "flag": "abilityBoostFour", + "key": "ChoiceSet", + "prompt": "PF2E.AbilityBoost" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.abilityBoostFour}" + } + ], + "slug": "eidolon-ability-boosts-10th", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 10 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.098-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.YJMXRVKBk4uEOFeV", + "duplicateSource": null + }, + "folder": null, + "sort": 8200000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!iRlcl9MOhoEL943l" +} diff --git a/packs/ac-features/Eidolon_Ability_Boosts__15th__GpeinpTPNrfAijp2.json b/packs/ac-features/Eidolon_Ability_Boosts__15th__GpeinpTPNrfAijp2.json new file mode 100644 index 0000000..ab47e89 --- /dev/null +++ b/packs/ac-features/Eidolon_Ability_Boosts__15th__GpeinpTPNrfAijp2.json @@ -0,0 +1,224 @@ +{ + "name": "Eidolon Ability Boosts (15th)", + "type": "feat", + "img": "systems/pf2e/icons/spells/devour-life.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.eaC33no5RBRsBC0R" + } + }, + "_id": "GpeinpTPNrfAijp2", + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5gnUVvjqXD99OpUX" + }, + { + "label": "PF2E.AbilityDex", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.nhFkOYRdlT5iLzdQ" + }, + { + "label": "PF2E.AbilityCon", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RQd8FPcVP3hrVXCr" + }, + { + "label": "PF2E.AbilityInt", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RvCQCutoKANEqw5C" + }, + { + "label": "PF2E.AbilityWis", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.At61D9oWr39Ss6Ea" + }, + { + "label": "PF2E.AbilityCha", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.qhUxX4BhaZc0griR" + } + ], + "flag": "abilityBoostOne", + "key": "ChoiceSet", + "prompt": "PF2E.AbilityBoost" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.abilityBoostOne}" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5gnUVvjqXD99OpUX" + }, + { + "label": "PF2E.AbilityDex", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.nhFkOYRdlT5iLzdQ" + }, + { + "label": "PF2E.AbilityCon", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RQd8FPcVP3hrVXCr" + }, + { + "label": "PF2E.AbilityInt", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RvCQCutoKANEqw5C" + }, + { + "label": "PF2E.AbilityWis", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.At61D9oWr39Ss6Ea" + }, + { + "label": "PF2E.AbilityCha", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.qhUxX4BhaZc0griR" + } + ], + "flag": "abilityBoostTwo", + "key": "ChoiceSet", + "prompt": "PF2E.AbilityBoost" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.abilityBoostTwo}" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5gnUVvjqXD99OpUX" + }, + { + "label": "PF2E.AbilityDex", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.nhFkOYRdlT5iLzdQ" + }, + { + "label": "PF2E.AbilityCon", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RQd8FPcVP3hrVXCr" + }, + { + "label": "PF2E.AbilityInt", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RvCQCutoKANEqw5C" + }, + { + "label": "PF2E.AbilityWis", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.At61D9oWr39Ss6Ea" + }, + { + "label": "PF2E.AbilityCha", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.qhUxX4BhaZc0griR" + } + ], + "flag": "abilityBoostThree", + "key": "ChoiceSet", + "prompt": "PF2E.AbilityBoost" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.abilityBoostThree}" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5gnUVvjqXD99OpUX" + }, + { + "label": "PF2E.AbilityDex", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.nhFkOYRdlT5iLzdQ" + }, + { + "label": "PF2E.AbilityCon", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RQd8FPcVP3hrVXCr" + }, + { + "label": "PF2E.AbilityInt", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RvCQCutoKANEqw5C" + }, + { + "label": "PF2E.AbilityWis", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.At61D9oWr39Ss6Ea" + }, + { + "label": "PF2E.AbilityCha", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.qhUxX4BhaZc0griR" + } + ], + "flag": "abilityBoostFour", + "key": "ChoiceSet", + "prompt": "PF2E.AbilityBoost" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.abilityBoostFour}" + } + ], + "slug": "eidolon-ability-boosts-15th", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 15 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.226-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.eaC33no5RBRsBC0R", + "duplicateSource": null + }, + "folder": null, + "sort": 3000000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!GpeinpTPNrfAijp2" +} diff --git a/packs/ac-features/Eidolon_Ability_Boosts__20th__0i2ZSrRpjKG0KV4U.json b/packs/ac-features/Eidolon_Ability_Boosts__20th__0i2ZSrRpjKG0KV4U.json new file mode 100644 index 0000000..f09acf5 --- /dev/null +++ b/packs/ac-features/Eidolon_Ability_Boosts__20th__0i2ZSrRpjKG0KV4U.json @@ -0,0 +1,224 @@ +{ + "name": "Eidolon Ability Boosts (20th)", + "type": "feat", + "img": "systems/pf2e/icons/spells/devour-life.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.zMIyUqzAexK5VJiy" + } + }, + "_id": "0i2ZSrRpjKG0KV4U", + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5gnUVvjqXD99OpUX" + }, + { + "label": "PF2E.AbilityDex", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.nhFkOYRdlT5iLzdQ" + }, + { + "label": "PF2E.AbilityCon", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RQd8FPcVP3hrVXCr" + }, + { + "label": "PF2E.AbilityInt", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RvCQCutoKANEqw5C" + }, + { + "label": "PF2E.AbilityWis", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.At61D9oWr39Ss6Ea" + }, + { + "label": "PF2E.AbilityCha", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.qhUxX4BhaZc0griR" + } + ], + "flag": "abilityBoostOne", + "key": "ChoiceSet", + "prompt": "PF2E.AbilityBoost" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.abilityBoostOne}" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5gnUVvjqXD99OpUX" + }, + { + "label": "PF2E.AbilityDex", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.nhFkOYRdlT5iLzdQ" + }, + { + "label": "PF2E.AbilityCon", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RQd8FPcVP3hrVXCr" + }, + { + "label": "PF2E.AbilityInt", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RvCQCutoKANEqw5C" + }, + { + "label": "PF2E.AbilityWis", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.At61D9oWr39Ss6Ea" + }, + { + "label": "PF2E.AbilityCha", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.qhUxX4BhaZc0griR" + } + ], + "flag": "abilityBoostTwo", + "key": "ChoiceSet", + "prompt": "PF2E.AbilityBoost" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.abilityBoostTwo}" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5gnUVvjqXD99OpUX" + }, + { + "label": "PF2E.AbilityDex", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.nhFkOYRdlT5iLzdQ" + }, + { + "label": "PF2E.AbilityCon", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RQd8FPcVP3hrVXCr" + }, + { + "label": "PF2E.AbilityInt", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RvCQCutoKANEqw5C" + }, + { + "label": "PF2E.AbilityWis", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.At61D9oWr39Ss6Ea" + }, + { + "label": "PF2E.AbilityCha", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.qhUxX4BhaZc0griR" + } + ], + "flag": "abilityBoostThree", + "key": "ChoiceSet", + "prompt": "PF2E.AbilityBoost" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.abilityBoostThree}" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5gnUVvjqXD99OpUX" + }, + { + "label": "PF2E.AbilityDex", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.nhFkOYRdlT5iLzdQ" + }, + { + "label": "PF2E.AbilityCon", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RQd8FPcVP3hrVXCr" + }, + { + "label": "PF2E.AbilityInt", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RvCQCutoKANEqw5C" + }, + { + "label": "PF2E.AbilityWis", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.At61D9oWr39Ss6Ea" + }, + { + "label": "PF2E.AbilityCha", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.qhUxX4BhaZc0griR" + } + ], + "flag": "abilityBoostFour", + "key": "ChoiceSet", + "prompt": "PF2E.AbilityBoost" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.abilityBoostFour}" + } + ], + "slug": "eidolon-ability-boosts-20th", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 20 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.324-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.zMIyUqzAexK5VJiy", + "duplicateSource": null + }, + "folder": null, + "sort": 100000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!0i2ZSrRpjKG0KV4U" +} diff --git a/packs/ac-features/Eidolon_Ability_Boosts__5th__jQBe4yXTAcMt2kKQ.json b/packs/ac-features/Eidolon_Ability_Boosts__5th__jQBe4yXTAcMt2kKQ.json new file mode 100644 index 0000000..7b0c9b3 --- /dev/null +++ b/packs/ac-features/Eidolon_Ability_Boosts__5th__jQBe4yXTAcMt2kKQ.json @@ -0,0 +1,224 @@ +{ + "_id": "jQBe4yXTAcMt2kKQ", + "name": "Eidolon Ability Boosts (5th)", + "type": "feat", + "img": "systems/pf2e/icons/spells/devour-life.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.cejYxzaW2SQwWMjC" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5gnUVvjqXD99OpUX" + }, + { + "label": "PF2E.AbilityDex", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.nhFkOYRdlT5iLzdQ" + }, + { + "label": "PF2E.AbilityCon", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RQd8FPcVP3hrVXCr" + }, + { + "label": "PF2E.AbilityInt", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RvCQCutoKANEqw5C" + }, + { + "label": "PF2E.AbilityWis", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.At61D9oWr39Ss6Ea" + }, + { + "label": "PF2E.AbilityCha", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.qhUxX4BhaZc0griR" + } + ], + "flag": "abilityBoostOne", + "key": "ChoiceSet", + "prompt": "PF2E.AbilityBoost" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.abilityBoostOne}" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5gnUVvjqXD99OpUX" + }, + { + "label": "PF2E.AbilityDex", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.nhFkOYRdlT5iLzdQ" + }, + { + "label": "PF2E.AbilityCon", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RQd8FPcVP3hrVXCr" + }, + { + "label": "PF2E.AbilityInt", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RvCQCutoKANEqw5C" + }, + { + "label": "PF2E.AbilityWis", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.At61D9oWr39Ss6Ea" + }, + { + "label": "PF2E.AbilityCha", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.qhUxX4BhaZc0griR" + } + ], + "flag": "abilityBoostTwo", + "key": "ChoiceSet", + "prompt": "PF2E.AbilityBoost" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.abilityBoostTwo}" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5gnUVvjqXD99OpUX" + }, + { + "label": "PF2E.AbilityDex", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.nhFkOYRdlT5iLzdQ" + }, + { + "label": "PF2E.AbilityCon", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RQd8FPcVP3hrVXCr" + }, + { + "label": "PF2E.AbilityInt", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RvCQCutoKANEqw5C" + }, + { + "label": "PF2E.AbilityWis", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.At61D9oWr39Ss6Ea" + }, + { + "label": "PF2E.AbilityCha", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.qhUxX4BhaZc0griR" + } + ], + "flag": "abilityBoostThree", + "key": "ChoiceSet", + "prompt": "PF2E.AbilityBoost" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.abilityBoostThree}" + }, + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.5gnUVvjqXD99OpUX" + }, + { + "label": "PF2E.AbilityDex", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.nhFkOYRdlT5iLzdQ" + }, + { + "label": "PF2E.AbilityCon", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RQd8FPcVP3hrVXCr" + }, + { + "label": "PF2E.AbilityInt", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.RvCQCutoKANEqw5C" + }, + { + "label": "PF2E.AbilityWis", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.At61D9oWr39Ss6Ea" + }, + { + "label": "PF2E.AbilityCha", + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.qhUxX4BhaZc0griR" + } + ], + "flag": "abilityBoostFour", + "key": "ChoiceSet", + "prompt": "PF2E.AbilityBoost" + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.abilityBoostFour}" + } + ], + "slug": "eidolon-ability-boosts-5th", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 5 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.097-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.cejYxzaW2SQwWMjC", + "duplicateSource": null + }, + "folder": null, + "sort": 8400000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!jQBe4yXTAcMt2kKQ" +} diff --git a/packs/ac-features/Eidolon_Defensive_Expertise_8PDmjqUZ1qfVhnFx.json b/packs/ac-features/Eidolon_Defensive_Expertise_8PDmjqUZ1qfVhnFx.json new file mode 100644 index 0000000..74b445b --- /dev/null +++ b/packs/ac-features/Eidolon_Defensive_Expertise_8PDmjqUZ1qfVhnFx.json @@ -0,0 +1,86 @@ +{ + "_id": "8PDmjqUZ1qfVhnFx", + "name": "Eidolon Defensive Expertise", + "type": "feat", + "img": "systems/pf2e/icons/features/classes/eidolon-defensive-expertise.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.8PDmjqUZ1qfVhnFx" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon increases its ability to avoid attacks. Its proficiency rank for unarmored defense increases to expert.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.martial.unarmored.rank", + "value": 2 + } + ], + "slug": "eidolon-defensive-expertise", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 11 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.238-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.8PDmjqUZ1qfVhnFx", + "duplicateSource": null + }, + "folder": null, + "sort": 1400000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!8PDmjqUZ1qfVhnFx" +} diff --git a/packs/ac-features/Eidolon_Defensive_Mastery_bFHz5ZHKMGTDkggN.json b/packs/ac-features/Eidolon_Defensive_Mastery_bFHz5ZHKMGTDkggN.json new file mode 100644 index 0000000..92e3958 --- /dev/null +++ b/packs/ac-features/Eidolon_Defensive_Mastery_bFHz5ZHKMGTDkggN.json @@ -0,0 +1,86 @@ +{ + "_id": "bFHz5ZHKMGTDkggN", + "name": "Eidolon Defensive Mastery", + "type": "feat", + "img": "systems/pf2e/icons/features/classes/eidolon-defensive-mastery.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.bFHz5ZHKMGTDkggN" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon's form becomes particularly difficult to assail. Its proficiency rank for unarmored defense increases to master.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.martial.unarmored.rank", + "value": 3 + } + ], + "slug": "eidolon-defensive-mastery", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 19 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.106-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.bFHz5ZHKMGTDkggN", + "duplicateSource": null + }, + "folder": null, + "sort": 6600000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!bFHz5ZHKMGTDkggN" +} diff --git a/packs/ac-features/Eidolon_Symbiosis_RsDBv9TwwNMnofud.json b/packs/ac-features/Eidolon_Symbiosis_RsDBv9TwwNMnofud.json new file mode 100644 index 0000000..6569f8c --- /dev/null +++ b/packs/ac-features/Eidolon_Symbiosis_RsDBv9TwwNMnofud.json @@ -0,0 +1,84 @@ +{ + "_id": "RsDBv9TwwNMnofud", + "name": "Eidolon Symbiosis", + "type": "feat", + "img": "systems/pf2e/icons/features/classes/eidolon-symbiosis.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.RsDBv9TwwNMnofud" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your connection with your eidolon strengthens, granting your eidolon access to a new ability depending on its type, as described in Eidolon Abilities in each eidolon's entry.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "{actor|flags.pf2e.eidolon-features.symbiosis}" + } + ], + "slug": "eidolon-symbiosis", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.217-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.RsDBv9TwwNMnofud", + "duplicateSource": null + }, + "folder": null, + "sort": 4900000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!RsDBv9TwwNMnofud" +} diff --git a/packs/ac-features/Eidolon_Transcendence_E7DFHsVNS1xph8DT.json b/packs/ac-features/Eidolon_Transcendence_E7DFHsVNS1xph8DT.json new file mode 100644 index 0000000..283069e --- /dev/null +++ b/packs/ac-features/Eidolon_Transcendence_E7DFHsVNS1xph8DT.json @@ -0,0 +1,123 @@ +{ + "_id": "E7DFHsVNS1xph8DT", + "name": "Eidolon Transcendence", + "type": "feat", + "img": "systems/pf2e/icons/features/classes/eidolon-transcendence.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.E7DFHsVNS1xph8DT" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your connection with your eidolon approaches its peak, granting your eidolon access to a powerful new ability depending on its type, as described in Eidolon Abilities in each eidolon's entry. This ability also increases one of the eidolon's ability scores by 2.
" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "label": "PF2E.AbilityStr", + "value": "str" + }, + { + "label": "PF2E.AbilityDex", + "value": "dex" + }, + { + "label": "PF2E.AbilityCon", + "value": "con" + }, + { + "label": "PF2E.AbilityInt", + "value": "int" + }, + { + "label": "PF2E.AbilityWis", + "value": "wis" + }, + { + "label": "PF2E.AbilityCha", + "value": "cha" + } + ], + "flag": "abilityIncrease", + "key": "ChoiceSet", + "prompt": "Choose an Ability Score to Increase" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "add", + "path": "system.abilities.{item|flags.pf2e.rulesSelections.abilityIncrease}.mod", + "priority": 50 + }, + { + "key": "GrantItem", + "uuid": "{actor|flags.pf2e.eidolon-features.transcendence}" + } + ], + "slug": "eidolon-transcendence", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 17 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.229-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.E7DFHsVNS1xph8DT", + "duplicateSource": null + }, + "folder": null, + "sort": 2400000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!E7DFHsVNS1xph8DT" +} diff --git a/packs/ac-features/Eidolon_Unarmed_Expertise_zF6bLjVwj7Njkqan.json b/packs/ac-features/Eidolon_Unarmed_Expertise_zF6bLjVwj7Njkqan.json new file mode 100644 index 0000000..ef35fd5 --- /dev/null +++ b/packs/ac-features/Eidolon_Unarmed_Expertise_zF6bLjVwj7Njkqan.json @@ -0,0 +1,86 @@ +{ + "_id": "zF6bLjVwj7Njkqan", + "name": "Eidolon Unarmed Expertise", + "type": "feat", + "img": "systems/pf2e/icons/features/classes/eidolon-unarmed-expertise.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.zF6bLjVwj7Njkqan" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon becomes more capable of using its unarmed attacks. Its proficiency rank for unarmed attacks increases to expert.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.martial.unarmed.rank", + "value": 2 + } + ], + "slug": "eidolon-unarmed-expertise", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 5 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.086-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.zF6bLjVwj7Njkqan", + "duplicateSource": null + }, + "folder": null, + "sort": 11200000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!zF6bLjVwj7Njkqan" +} diff --git a/packs/ac-features/Eidolon_Unarmed_Mastery_rbOOv8FqBFQlTDeu.json b/packs/ac-features/Eidolon_Unarmed_Mastery_rbOOv8FqBFQlTDeu.json new file mode 100644 index 0000000..c5cf1cf --- /dev/null +++ b/packs/ac-features/Eidolon_Unarmed_Mastery_rbOOv8FqBFQlTDeu.json @@ -0,0 +1,86 @@ +{ + "_id": "rbOOv8FqBFQlTDeu", + "name": "Eidolon Unarmed Mastery", + "type": "feat", + "img": "systems/pf2e/icons/features/classes/eidolon-unarmed-mastery.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.rbOOv8FqBFQlTDeu" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon truly masters its unarmed attacks, reaching greater heights. Its proficiency rank for unarmed attacks increases to master.
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "mode": "upgrade", + "path": "system.martial.unarmed.rank", + "value": 3 + } + ], + "slug": "eidolon-unarmed-mastery", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 13 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.091-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.rbOOv8FqBFQlTDeu", + "duplicateSource": null + }, + "folder": null, + "sort": 10200000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!rbOOv8FqBFQlTDeu" +} diff --git a/packs/ac-features/Eidolon_Weapon_Specialization_a6supDv34hhqsktB.json b/packs/ac-features/Eidolon_Weapon_Specialization_a6supDv34hhqsktB.json new file mode 100644 index 0000000..42d4a30 --- /dev/null +++ b/packs/ac-features/Eidolon_Weapon_Specialization_a6supDv34hhqsktB.json @@ -0,0 +1,121 @@ +{ + "_id": "a6supDv34hhqsktB", + "name": "Eidolon Weapon Specialization", + "type": "feat", + "img": "systems/pf2e/icons/features/classes/eidolon-weapon-specialization.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.a6supDv34hhqsktB" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon has learned how to inflict greater injuries with its unarmed attacks. It deals 2 additional Damage with unarmed attacks in which it's an expert. This damage increases to 3 if it's a master, and 4 if it's legendary.
" + }, + "rules": [ + { + "key": "FlatModifier", + "selector": "strike-damage", + "value": 2, + "predicate": [ + "proficiency:rank:2", + "unarmed", + { + "not": "feature:greater-eidolon-specialization" + } + ], + "slug": "weapon-specialization" + }, + { + "key": "AdjustModifier", + "selector": "strike-damage", + "value": 3, + "predicate": [ + "proficiency:rank:3", + "unarmed", + { + "not": "feature:greater-eidolon-specialization" + } + ], + "slug": "weapon-specialization", + "mode": "upgrade" + }, + { + "key": "AdjustModifier", + "selector": "strike-damage", + "value": 4, + "predicate": [ + "proficiency:rank:4", + "unarmed", + { + "not": "feature:greater-eidolon-specialization" + } + ], + "slug": "weapon-specialization", + "mode": "upgrade" + } + ], + "slug": "eidolon-weapon-specialization", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.107-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.a6supDv34hhqsktB", + "duplicateSource": null + }, + "folder": null, + "sort": 6400000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!a6supDv34hhqsktB" +} diff --git a/packs/ac-features/Eidolon_xPn27nNxcLOByTXJ.json b/packs/ac-features/Eidolon_xPn27nNxcLOByTXJ.json new file mode 100644 index 0000000..57f8fe6 --- /dev/null +++ b/packs/ac-features/Eidolon_xPn27nNxcLOByTXJ.json @@ -0,0 +1,255 @@ +{ + "_id": "xPn27nNxcLOByTXJ", + "name": "Eidolon", + "type": "class", + "img": "systems/pf2e/icons/default-icons/class.svg", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.4yrittMrVNhR2woZ" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [ + { + "adjustName": false, + "choices": [ + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.8dyatrsCMoIPuOlE" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.8IodRUpyU4nXGyAv" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.cIAB28BfwNA2uTQv" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.GEVoWzCBjidkO6DG" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.8EJNylotPDelRtZK" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.XNgPUKsnRQO2OS2O" + }, + { + "value": "Compendium.pf2e-animal-companions.AC-Features.Item.ZXrAWVLwKxz5kovL" + } + ], + "flag": "primaryStrike", + "key": "ChoiceSet", + "prompt": "Select the Details of the Primary Strike. These can be edited on the inventory tab later." + }, + { + "key": "GrantItem", + "uuid": "{item|flags.pf2e.rulesSelections.primaryStrike}", + "allowDuplicate": false + }, + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.v5dfcKYsaD0EvvtH", + "allowDuplicate": false + }, + { + "key": "FlatModifier", + "selector": "hp-per-level", + "type": "item", + "value": "-@actor.system.abilities.con.mod" + } + ], + "slug": "eidolon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "keyAbility": { + "value": [] + }, + "items": { + "il5oe": { + "img": "systems/pf2e/icons/spells/devour-life.webp", + "name": "Eidolon Ability Boosts (5th)", + "level": 5, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.jQBe4yXTAcMt2kKQ" + }, + "qnt39": { + "img": "systems/pf2e/icons/spells/devour-life.webp", + "name": "Eidolon Ability Boosts (20th)", + "level": 20, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.0i2ZSrRpjKG0KV4U" + }, + "k0uzu": { + "img": "systems/pf2e/icons/spells/devour-life.webp", + "name": "Eidolon Ability Boosts (15th)", + "level": 15, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.GpeinpTPNrfAijp2" + }, + "m99vd": { + "img": "systems/pf2e/icons/spells/devour-life.webp", + "name": "Eidolon Ability Boosts (10th)", + "level": 10, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.iRlcl9MOhoEL943l" + }, + "46m9q": { + "img": "systems/pf2e/icons/features/classes/shared-vigilance.webp", + "name": "Shared Vigilance", + "level": 3, + "uuid": "Compendium.pf2e.classfeatures.Item.QiMlJ33kNEoyh1M0" + }, + "qs3dj": { + "img": "systems/pf2e/icons/features/classes/resolve.webp", + "name": "Shared Resolve", + "level": 15, + "uuid": "Compendium.pf2e.classfeatures.Item.eZPfHVz14j42jCnS" + }, + "v3p8l": { + "img": "systems/pf2e/icons/features/classes/lightning-reflexes.webp", + "name": "Shared Reflexes", + "level": 9, + "uuid": "Compendium.pf2e.classfeatures.Item.dZNAXTQovlWVvAyX" + }, + "acx0x": { + "img": "systems/pf2e/icons/features/classes/juggerenaut.webp", + "name": "Twin Juggernauts", + "level": 11, + "uuid": "Compendium.pf2e.classfeatures.Item.q1Y12Pg2gQg2FJPR" + }, + "o16um": { + "img": "systems/pf2e/icons/features/classes/eidolon-symbiosis.webp", + "name": "Eidolon Symbiosis", + "level": 7, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.RsDBv9TwwNMnofud" + }, + "znxxl": { + "img": "systems/pf2e/icons/features/classes/eidolon-transcendence.webp", + "name": "Eidolon Transcendence", + "level": 17, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.E7DFHsVNS1xph8DT" + }, + "sl284": { + "img": "systems/pf2e/icons/features/classes/eidolon-weapon-specialization.webp", + "name": "Eidolon Weapon Specialization", + "level": 7, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.a6supDv34hhqsktB" + }, + "7hpon": { + "img": "systems/pf2e/icons/features/classes/weapon-specialization.webp", + "name": "Greater Eidolon Specialization", + "level": 15, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.VzJuYopRKC81GteD" + }, + "njojj": { + "img": "systems/pf2e/icons/features/classes/eidolon-defensive-expertise.webp", + "name": "Eidolon Defensive Expertise", + "level": 11, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.8PDmjqUZ1qfVhnFx" + }, + "0pcmz": { + "img": "systems/pf2e/icons/features/classes/eidolon-defensive-mastery.webp", + "name": "Eidolon Defensive Mastery", + "level": 19, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.bFHz5ZHKMGTDkggN" + }, + "dw7ap": { + "img": "systems/pf2e/icons/features/classes/eidolon-unarmed-mastery.webp", + "name": "Eidolon Unarmed Mastery", + "level": 13, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.rbOOv8FqBFQlTDeu" + }, + "86i1y": { + "img": "systems/pf2e/icons/features/classes/eidolon-unarmed-expertise.webp", + "name": "Eidolon Unarmed Expertise", + "level": 5, + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.zF6bLjVwj7Njkqan" + } + }, + "hp": 0, + "trainedSkills": { + "value": [], + "additional": 0, + "custom": "" + }, + "perception": 1, + "savingThrows": { + "fortitude": 2, + "reflex": 1, + "will": 2 + }, + "attacks": { + "simple": 0, + "martial": 0, + "advanced": 0, + "unarmed": 1, + "other": { + "name": "", + "rank": 0 + } + }, + "defenses": { + "unarmored": 1, + "light": 0, + "medium": 0, + "heavy": 0 + }, + "spellcasting": 0, + "ancestryFeatLevels": { + "value": [] + }, + "classFeatLevels": { + "value": [] + }, + "generalFeatLevels": { + "value": [] + }, + "skillFeatLevels": { + "value": [] + }, + "skillIncreaseLevels": { + "value": [] + }, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.326-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "classDC": 0 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.4yrittMrVNhR2woZ", + "duplicateSource": null + }, + "folder": null, + "sort": 11000000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!xPn27nNxcLOByTXJ" +} diff --git a/packs/ac-features/Elemental_Burst_9P5AFhhbU1I2sOEN.json b/packs/ac-features/Elemental_Burst_9P5AFhhbU1I2sOEN.json new file mode 100644 index 0000000..c5d1af1 --- /dev/null +++ b/packs/ac-features/Elemental_Burst_9P5AFhhbU1I2sOEN.json @@ -0,0 +1,80 @@ +{ + "name": "Elemental Burst", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Frequency once per 10 minutes
\nYour eidolon rips off a chunk of elemental matter from their own form and hurls it into a group of foes. Your eidolon loses a number of Hit Points equal to your level. All creatures in a @Template[type:burst|distance:20] within 60 feet take @Damage[(@actor.level - 1)d6] damage with a basic Reflex save against your spell DC. The damage increases by 1d6 for each level you have beyond 7th. The damage's type is either fire damage if your eidolon is a fire elemental, or the same physical damage type as your eidolon's primary unarmed attack if your eidolon isn't a fire elemental. Elemental Burst gains any traits that your eidolon's unarmed attacks gain from elemental core.
" + }, + "rules": [], + "slug": null, + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "concentrate", + "eidolon" + ] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "version": { + "schema": 0.854, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "frequency": { + "max": 1, + "per": "PT10M" + } + }, + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "folder": null, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "9P5AFhhbU1I2sOEN", + "sort": 0, + "_key": "!items!9P5AFhhbU1I2sOEN" +} diff --git a/packs/ac-features/Elemental_Core_I8ZJ99qzuGDEDbII.json b/packs/ac-features/Elemental_Core_I8ZJ99qzuGDEDbII.json new file mode 100644 index 0000000..4247a40 --- /dev/null +++ b/packs/ac-features/Elemental_Core_I8ZJ99qzuGDEDbII.json @@ -0,0 +1,284 @@ +{ + "name": "Elemental Core", + "type": "feat", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your elemental eidolon is an amalgam of elemental matter and mortal life force, which helps protect them from certain effects that are more harmful to mortals than elementals. They gain a +2 circumstance bonus to saving throws against poison and sleep effects, as well as effects causing the @UUID[Compendium.pf2e.conditionitems.Item.6uEgoh53GbXuHpTF]{Paralyzed} condition. Additionally, their elemental essence bleeds less easily than flesh, so the DC of any flat check they make to remove persistent bleed damage is 10 (or 5 after receiving particularly effective aid). Choose for your eidolon to be an air, earth, fire, metal, wood, or water elemental. Your eidolon and all their unarmed attacks gain the trait of the chosen element, and the eidolon gains additional effects based on your choice.
\nAir: Your eidolon is formed from elemental air and is light as a breeze. Your eidolon can @UUID[Compendium.pf2e.actionspf2e.Item.d5I6018Mci2SWokk]{Leap}, @UUID[Compendium.pf2e.actionspf2e.Item.2HJ4yuEFY1Cast4h]{High Jump}, and @UUID[Compendium.pf2e.actionspf2e.Item.JUvAvruz7yRQXfz2]{Long Jump} twice as far, and doesn't take falling damage.
\nEarth: Your eidolon is formed from elemental earth, and is incredibly hard to move by force. Your eidolon gains a +2 circumstance bonus to their Fortitude or Reflex DCs against attempts to @UUID[Compendium.pf2e.actionspf2e.Item.7blmbDrQFNfdT731]{Shove} or @UUID[Compendium.pf2e.actionspf2e.Item.ge56Lu1xXVFYUnLP]{Trip} them. This bonus also applies to saving throws against spells or effects that attempt to knock them @UUID[Compendium.pf2e.conditionitems.Item.j91X7x0XSomq8d60]{Prone}. In addition, if any effect would force them to move 10 feet or more, they're moved only half the distance.
\nFire: Your eidolon is formed from elemental fire and burns with embers of flame. Your eidolon gains resistance equal to half your level (minimum 1) to fire and an equal amount of weakness to cold and water. Their unarmed attacks deal 1 additional fire damage.
\nMetal: Your eidolon is formed from elemental metal and can adapt their metallic form to battle. One of your eidolon's starting melee unarmed attacks gains the versatile bludgeoning, piercing, or slashing trait, as your eidolon learns how to shift the metal into various weaponlike forms.
\nWater: Your eidolon is formed from elemental water and swims with ease. Your eidolon gains the amphibious trait, allowing them to breathe in water and air and to avoid the normal –2 penalty for making bludgeoning and slashing unarmed Strikes underwater. Your eidolon's land Speed is reduced to 15 feet, and they gain a swim Speed of 25 feet. You can take the Amphibious Form feat to increase their land Speed back up to 25 feet, as described in the feat.
\nWood: Your eidolon is formed from elemental wood, and its living wooden form twists and regrows as you focus your elemental energies. You can choose to have your eidolon gain the plant trait. Whenever you Refocus, your eidolon regains a number of Hit Points equal to double your level.
" + }, + "rules": [ + { + "key": "FlatModifier", + "selector": "saving-throw", + "value": 2, + "type": "circumstance", + "predicate": [ + { + "or": [ + "poison", + "sleep", + "inflicts:paralyzed" + ] + } + ], + "slug": "elemental-core-base" + }, + { + "choices": [ + { + "label": "PF2E.TraitAir", + "value": "air" + }, + { + "label": "PF2E.TraitEarth", + "value": "earth" + }, + { + "label": "PF2E.TraitFire", + "value": "fire" + }, + { + "label": "PF2E.TraitMetal", + "value": "metal" + }, + { + "label": "PF2E.TraitWater", + "value": "water" + }, + { + "label": "PF2E.TraitWood", + "value": "wood" + } + ], + "flag": "element", + "key": "ChoiceSet", + "prompt": "PF2E.SpecificRule.Prompt.Element", + "rollOption": "elemental-core" + }, + { + "key": "ActorTraits", + "add": [ + "{item|flags.pf2e.rulesSelections.element}" + ] + }, + { + "key": "AdjustStrike", + "mode": "add", + "property": "weapon-traits", + "value": "{item|flags.pf2e.rulesSelections.element}" + }, + { + "key": "FlatModifier", + "selector": "saving-throw", + "value": 2, + "predicate": [ + "elemental-core:earth", + { + "or": [ + "action:shove", + "action:trip", + "inflicts:prone" + ] + } + ] + }, + { + "key": "Resistance", + "type": "fire", + "value": "max(1,floor(@actor.level/2))", + "predicate": [ + "elemental-core:fire" + ] + }, + { + "key": "ActorTraits", + "add": [ + "amphibious" + ], + "predicate": [ + "elemental-core:water" + ] + }, + { + "key": "FlatModifier", + "selector": "land-speed", + "value": -10, + "predicate": [ + "elemental-core:water" + ] + }, + { + "key": "BaseSpeed", + "selector": "swim", + "value": 25, + "predicate": [ + "elemental-core:water" + ] + }, + { + "choices": [ + { + "label": "Gain the plant trait", + "value": "plant" + }, + { + "label": "Don't gain the plant trait", + "value": "eidolon" + } + ], + "flag": "newTrait", + "key": "ChoiceSet", + "prompt": "Gain the plant trait?", + "predicate": [ + "elemental-core:wood" + ] + }, + { + "key": "ActorTraits", + "add": [ + "{item|flags.pf2e.rulesSelections.newTrait}" + ], + "predicate": [ + "elemental-core:wood" + ] + }, + { + "key": "ActiveEffectLike", + "mode": "add", + "path": "system.build.languages.granted", + "predicate": [ + "elemental-core:air" + ], + "value": { + "slug": "sussuran", + "source": "Elemental Eidolon" + } + }, + { + "key": "ActiveEffectLike", + "mode": "add", + "path": "system.build.languages.granted", + "predicate": [ + "elemental-core:earth" + ], + "value": { + "slug": "petran", + "source": "Elemental Eidolon" + } + }, + { + "key": "ActiveEffectLike", + "mode": "add", + "path": "system.build.languages.granted", + "predicate": [ + "elemental-core:fire" + ], + "value": { + "slug": "pyric", + "source": "Elemental Eidolon" + } + }, + { + "key": "ActiveEffectLike", + "mode": "add", + "path": "system.build.languages.granted", + "predicate": [ + "elemental-core:metal" + ], + "value": { + "slug": "talican", + "source": "Elemental Eidolon" + } + }, + { + "key": "ActiveEffectLike", + "mode": "add", + "path": "system.build.languages.granted", + "predicate": [ + "elemental-core:water" + ], + "value": { + "slug": "thalassic", + "source": "Elemental Eidolon" + } + }, + { + "key": "ActiveEffectLike", + "mode": "add", + "path": "system.build.languages.granted", + "predicate": [ + "elemental-core:wood" + ], + "value": { + "slug": "muran", + "source": "Elemental Eidolon" + } + } + ], + "slug": null, + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "version": { + "schema": 0.854, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "img": "systems/pf2e/icons/spells/eclipse-burst.webp", + "folder": null, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "I8ZJ99qzuGDEDbII", + "sort": 9300000, + "_key": "!items!I8ZJ99qzuGDEDbII" +} diff --git a/packs/ac-features/Elemental_Maelstrom_rF67DRcO2oJKJt5t.json b/packs/ac-features/Elemental_Maelstrom_rF67DRcO2oJKJt5t.json new file mode 100644 index 0000000..a5d6185 --- /dev/null +++ b/packs/ac-features/Elemental_Maelstrom_rF67DRcO2oJKJt5t.json @@ -0,0 +1,64 @@ +{ + "name": "Elemental Maelstrom", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your eidolon temporarily shifts its form into a swirling vortex of elemental matter and rampages through their foes. Your eidolon Strides. During their movement, they can attempt a Strike against each enemy that is within their reach. If an enemy comes within your eidolon's reach more than once, your eidolon makes only a single Strike against a given enemy. These attacks all count towards your eidolon's multiple attack penalty, but the penalty doesn't increase until after all the attacks. If your eidolon has the appropriate Speed, they can Climb, Fly, or Swim instead of Stride.
" + }, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "rules": [], + "slug": null, + "schema": { + "version": 0.854, + "lastMigration": { + "version": { + "schema": 0.854, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "eidolon" + ] + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 3 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "img": "systems/pf2e/icons/actions/ThreeActions.webp", + "folder": null, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "rF67DRcO2oJKJt5t", + "sort": 0, + "_key": "!items!rF67DRcO2oJKJt5t" +} diff --git a/packs/ac-features/Enraged_Assassin_le0f9D0ZOnkdGaQO.json b/packs/ac-features/Enraged_Assassin_le0f9D0ZOnkdGaQO.json new file mode 100644 index 0000000..b834f30 --- /dev/null +++ b/packs/ac-features/Enraged_Assassin_le0f9D0ZOnkdGaQO.json @@ -0,0 +1,127 @@ +{ + "_id": "le0f9D0ZOnkdGaQO", + "name": "Enraged Assassin", + "type": "feat", + "img": "systems/pf2e/icons/spells/adapt-self.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 14, Dex 18, Con 16, Int 10, Wis 8, Cha 12; +1 AC (+4 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": -1, + "mode": "downgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 1, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 4 + } + ], + "slug": "enraged-assassin", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.096-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 8600000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!le0f9D0ZOnkdGaQO" +} diff --git a/packs/ac-features/Fey_Chicanery_VZQ3CcjOZFG57R0O.json b/packs/ac-features/Fey_Chicanery_VZQ3CcjOZFG57R0O.json new file mode 100644 index 0000000..5214193 --- /dev/null +++ b/packs/ac-features/Fey_Chicanery_VZQ3CcjOZFG57R0O.json @@ -0,0 +1,79 @@ +{ + "_id": "VZQ3CcjOZFG57R0O", + "name": "Fey Chicanery", + "type": "feat", + "img": "systems/pf2e/icons/spells/fey-disapperance.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.VZQ3CcjOZFG57R0O" + } + }, + "system": { + "description": { + "gm": "", + "value": "Ever full of tricks, your fey eidolon twists magical protections into your shared life force, granting it a contingency in its back pocket for desperate situations. During your daily preparations, your eidolon can cast a @Compendium[pf2e.spells-srd.WG91Z5TiR6oO5FOw]{Contingency} spell. The 4th-level spell it chooses must come from the primal or fey gift list, and must either be common or be another spell you have access to.
" + }, + "rules": [], + "slug": "fey-chicanery", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 17 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.214-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.VZQ3CcjOZFG57R0O", + "duplicateSource": null + }, + "folder": null, + "sort": 5400000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!VZQ3CcjOZFG57R0O" +} diff --git a/packs/ac-features/Fey_Gift_Spells_uqwHH20BKk3WcjbW.json b/packs/ac-features/Fey_Gift_Spells_uqwHH20BKk3WcjbW.json new file mode 100644 index 0000000..90d1428 --- /dev/null +++ b/packs/ac-features/Fey_Gift_Spells_uqwHH20BKk3WcjbW.json @@ -0,0 +1,84 @@ +{ + "_id": "uqwHH20BKk3WcjbW", + "name": "Fey Gift Spells", + "type": "feat", + "img": "systems/pf2e/icons/spells/fey-glamour.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.uqwHH20BKk3WcjbW" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon expands your primal magic with enchantment and illusion magic, allowing both of you to wield the power of fey charm and glamour. When you add spells to your repertoire, you can choose from the primal list as well as from enchantment and illusion spells that appear on the arcane spell list. As usual for when you add spells of a different tradition to your spell list, you're still a primal spellcaster, so all of your spells are primal spells.
\nYour eidolon gains the @Compendium[pf2e.feats-srd.WfbmFsRxbVyzMmCz]{Magical Understudy} summoner feat, despite not meeting the prerequisite level, and it can choose fey gift cantrips in addition to primal cantrips. As usual for a feat you are granted by name, you can't retrain Magical Understudy into another feat.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e.feats-srd.Item.WfbmFsRxbVyzMmCz" + } + ], + "slug": "fey-gift-spells", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.088-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.uqwHH20BKk3WcjbW", + "duplicateSource": null + }, + "folder": null, + "sort": 10600000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!uqwHH20BKk3WcjbW" +} diff --git a/packs/ac-features/Fey_Mischief_pn0rELSmLV6G5FUu.json b/packs/ac-features/Fey_Mischief_pn0rELSmLV6G5FUu.json new file mode 100644 index 0000000..3eb524b --- /dev/null +++ b/packs/ac-features/Fey_Mischief_pn0rELSmLV6G5FUu.json @@ -0,0 +1,84 @@ +{ + "_id": "pn0rELSmLV6G5FUu", + "name": "Fey Mischief", + "type": "feat", + "img": "systems/pf2e/icons/spells/mislead.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.pn0rELSmLV6G5FUu" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon's fey magic becomes more powerful and mischievous. Your eidolon gains the @Compendium[pf2e.feats-srd.b1eGMNjBY3iqIt2S]{Magical Adept} feat, despite not meeting the prerequisite level, and can choose from fey gift spells in addition to primal spells.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e.feats-srd.Item.b1eGMNjBY3iqIt2S" + } + ], + "slug": "fey-mischief", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.092-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.pn0rELSmLV6G5FUu", + "duplicateSource": null + }, + "folder": null, + "sort": 9800000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!pn0rELSmLV6G5FUu" +} diff --git a/packs/ac-features/Field_of_Roots_4ZCaD8Y817JjbrX2.json b/packs/ac-features/Field_of_Roots_4ZCaD8Y817JjbrX2.json new file mode 100644 index 0000000..ae646e5 --- /dev/null +++ b/packs/ac-features/Field_of_Roots_4ZCaD8Y817JjbrX2.json @@ -0,0 +1,68 @@ +{ + "_id": "4ZCaD8Y817JjbrX2", + "name": "Field of Roots", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.4ZCaD8Y817JjbrX2" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon extends its roots underground to entangle and possibly damage all foes nearby. All enemies within your eidolon's reach take damage of the same type and amount as your eidolon's most damaging Strike, depending on their Reflex saves. Any ongoing effects of the save last until the enemy either Escapes or leaves your eidolon's reach. After using Field of Roots, your eidolon is @Compendium[pf2e.conditionitems.Immobilized]{Immobilized} until it takes a single action, which has the manipulate trait, to detach from the ground; this also ends any remaining effects on enemies from Field of Roots.
\nCritical Success The enemy is unaffected.
\nSuccess The enemy takes no damage, but takes a -10 foot circumstance penalty to its Speeds.
\nFailure The enemy takes half damage, takes a -10-foot circumstance penalty to its Speeds, and, at the end of each of its turns, takes half damage again.
\nCritical Failure The enemy is immobilized, takes full damage, and, at the end of each of its turns, takes full damage again.
" + }, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "rules": [], + "slug": "field-of-roots", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.322-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "eidolon" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.4ZCaD8Y817JjbrX2", + "duplicateSource": null + }, + "folder": null, + "sort": 600000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!4ZCaD8Y817JjbrX2" +} diff --git a/packs/ac-features/Field_of_Roots_kpcL3Iz1KJnmEKwC.json b/packs/ac-features/Field_of_Roots_kpcL3Iz1KJnmEKwC.json new file mode 100644 index 0000000..df75f3c --- /dev/null +++ b/packs/ac-features/Field_of_Roots_kpcL3Iz1KJnmEKwC.json @@ -0,0 +1,84 @@ +{ + "name": "Field of Roots", + "type": "feat", + "img": "systems/pf2e/icons/spells/plant-form-shambler.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.dJqf5ZccUpz5vGSD" + } + }, + "_id": "kpcL3Iz1KJnmEKwC", + "system": { + "description": { + "gm": "", + "value": "Your eidolon learns how to send its roots underground to hinder foes. It gains the @Compendium[pf2e-animal-companions.AC-Features.4ZCaD8Y817JjbrX2]{Field of Roots} activity.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.4ZCaD8Y817JjbrX2" + } + ], + "slug": "field-of-roots", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 17 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.097-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.dJqf5ZccUpz5vGSD", + "duplicateSource": null + }, + "folder": null, + "sort": 8500000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!kpcL3Iz1KJnmEKwC" +} diff --git a/packs/ac-features/Fleet_Beast_doQ6pf2mVdysqgfB.json b/packs/ac-features/Fleet_Beast_doQ6pf2mVdysqgfB.json new file mode 100644 index 0000000..2e15878 --- /dev/null +++ b/packs/ac-features/Fleet_Beast_doQ6pf2mVdysqgfB.json @@ -0,0 +1,127 @@ +{ + "_id": "doQ6pf2mVdysqgfB", + "name": "Fleet Beast", + "type": "feat", + "img": "systems/pf2e/icons/spells/glimpse-the-truth.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 14, Dex 18, Con 16, Int 8, Wis 12, Cha 10; +1 AC (+4 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -1, + "mode": "downgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 1, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 4 + } + ], + "slug": "fleet-beast", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.325-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 7300000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!doQ6pf2mVdysqgfB" +} diff --git a/packs/ac-features/Furious_Strike_CBJrHjIETQsh3OG6.json b/packs/ac-features/Furious_Strike_CBJrHjIETQsh3OG6.json new file mode 100644 index 0000000..2d27b2b --- /dev/null +++ b/packs/ac-features/Furious_Strike_CBJrHjIETQsh3OG6.json @@ -0,0 +1,84 @@ +{ + "name": "Furious Strike", + "type": "feat", + "img": "systems/pf2e/icons/spells/blade-barrier.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.JzpBHDMryMKDHWCK" + } + }, + "_id": "CBJrHjIETQsh3OG6", + "system": { + "description": { + "gm": "", + "value": "Your eidolon can infuse an attack with unmitigated rage. It gains the @Compendium[pf2e-animal-companions.AC-Features.Q8yXShOx8PGjL0LV]{Furious Strike} activity.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.Q8yXShOx8PGjL0LV" + } + ], + "slug": "furious-strike", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.230-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.JzpBHDMryMKDHWCK", + "duplicateSource": null + }, + "folder": null, + "sort": 2100000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!CBJrHjIETQsh3OG6" +} diff --git a/packs/ac-features/Furious_Strike_Q8yXShOx8PGjL0LV.json b/packs/ac-features/Furious_Strike_Q8yXShOx8PGjL0LV.json new file mode 100644 index 0000000..382aa81 --- /dev/null +++ b/packs/ac-features/Furious_Strike_Q8yXShOx8PGjL0LV.json @@ -0,0 +1,132 @@ +{ + "_id": "Q8yXShOx8PGjL0LV", + "name": "Furious Strike", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.Q8yXShOx8PGjL0LV" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon channels its anger into a furious attack. It makes a melee Strike. This counts as two attacks when calculating your multiple attack penalty. If this Strike hits, your eidolon deals an extra die of weapon damage and gains a +1 circumstance bonus to the damage roll.
\nIf you're at least 10th level, increase this to two extra dice with a +2 circumstance bonus, and if you're at least 18th level, increase it to three extra dice with a +3 circumstance bonus.
" + }, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "rules": [ + { + "key": "RollOption", + "domain": "damage-roll", + "option": "furious-strike", + "toggleable": true + }, + { + "key": "DamageDice", + "predicate": [ + "melee", + "furious-strike" + ], + "selector": "strike-damage", + "value": { + "brackets": [ + { + "end": 9, + "value": { + "diceNumber": 1 + } + }, + { + "end": 17, + "start": 10, + "value": { + "diceNumber": 2 + } + }, + { + "start": 18, + "value": { + "diceNumber": 3 + } + } + ] + } + }, + { + "key": "FlatModifier", + "predicate": [ + "melee", + "furious-strike" + ], + "selector": "strike-damage", + "value": { + "brackets": [ + { + "end": 9, + "value": 1 + }, + { + "end": 17, + "start": 10, + "value": 2 + }, + { + "start": 18, + "value": 3 + } + ] + }, + "type": "circumstance" + } + ], + "slug": "furious-strike", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.219-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "eidolon" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.Q8yXShOx8PGjL0LV", + "duplicateSource": null + }, + "folder": null, + "sort": 4600000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!Q8yXShOx8PGjL0LV" +} diff --git a/packs/ac-features/Greater_Eidolon_Specialization_VzJuYopRKC81GteD.json b/packs/ac-features/Greater_Eidolon_Specialization_VzJuYopRKC81GteD.json new file mode 100644 index 0000000..a1b7a40 --- /dev/null +++ b/packs/ac-features/Greater_Eidolon_Specialization_VzJuYopRKC81GteD.json @@ -0,0 +1,88 @@ +{ + "_id": "VzJuYopRKC81GteD", + "name": "Greater Eidolon Specialization", + "type": "feat", + "img": "systems/pf2e/icons/features/classes/weapon-specialization.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.VzJuYopRKC81GteD" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon's damage from weapon specialization increases to 4 with unarmed attacks in which it's an expert, 6 if it's a master, and 8 if it's legendary.
" + }, + "rules": [ + { + "key": "AdjustModifier", + "selector": "strike-damage", + "value": 2, + "slug": "weapon-specialization", + "mode": "multiply", + "priority": 90 + } + ], + "slug": "greater-eidolon-specialization", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 15 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.214-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.VzJuYopRKC81GteD", + "duplicateSource": null + }, + "folder": null, + "sort": 5500000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!VzJuYopRKC81GteD" +} diff --git a/packs/ac-features/Growing_Vines_sSfOct37bkinwW5E.json b/packs/ac-features/Growing_Vines_sSfOct37bkinwW5E.json new file mode 100644 index 0000000..96195d4 --- /dev/null +++ b/packs/ac-features/Growing_Vines_sSfOct37bkinwW5E.json @@ -0,0 +1,79 @@ +{ + "_id": "sSfOct37bkinwW5E", + "name": "Growing Vines", + "type": "feat", + "img": "systems/pf2e/icons/spells/murderous-vine.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.sSfOct37bkinwW5E" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon's vines and branches lengthen even more. All your eidolon's melee unarmed attacks gain the reach trait.
" + }, + "rules": [], + "slug": "growing-vines", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.090-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.sSfOct37bkinwW5E", + "duplicateSource": null + }, + "folder": null, + "sort": 10300000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!sSfOct37bkinwW5E" +} diff --git a/packs/ac-features/Guardian_Plant_5I9rbPGBER1gzqXT.json b/packs/ac-features/Guardian_Plant_5I9rbPGBER1gzqXT.json new file mode 100644 index 0000000..9371036 --- /dev/null +++ b/packs/ac-features/Guardian_Plant_5I9rbPGBER1gzqXT.json @@ -0,0 +1,127 @@ +{ + "_id": "5I9rbPGBER1gzqXT", + "name": "Guardian Plant", + "type": "feat", + "img": "systems/pf2e/icons/spells/protector-tree.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 18, Dex 14, Con 16, Int 8, Wis 12, Cha 10; +2 AC (+3 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -1, + "mode": "downgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 2, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 3 + } + ], + "slug": "guardian-plant", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.240-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 800000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!5I9rbPGBER1gzqXT" +} diff --git a/packs/ac-features/Gulp_Blood_fdrq5fvlMiYoNKvx.json b/packs/ac-features/Gulp_Blood_fdrq5fvlMiYoNKvx.json new file mode 100644 index 0000000..5276df4 --- /dev/null +++ b/packs/ac-features/Gulp_Blood_fdrq5fvlMiYoNKvx.json @@ -0,0 +1,66 @@ +{ + "name": "Gulp Blood", + "type": "action", + "system": { + "description": { + "gm": "", + "value": "Requirements The water wraith's last action was a successful jaws attack against a foe.
\nThe water wraith gains [[/r 2d8 #Temporary Hit Points]]{2d8} temporary Hit Points that last for 1 round, and the foe takes [[/r 2d6[persistent,bleed]]] damage. If the water wraith has a specialization, the water wraith instead gains [[/r 3d8 #Temporary Hit Points]]{3d8} temporary Hit Points, and the target takes [[/r 3d6[persistent,bleed]]] damage. If the targeted creature has absolutely no vital fluids, this ability might not function, at the GM's discretion.
" + }, + "source": { + "value": "Pathfinder Lost Omens: Impossible Lands" + }, + "rules": [], + "slug": "gulp-blood", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.100-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": { + "sourceId": "Item.g1QzcWAHw8EjBxNs" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.g1QzcWAHw8EjBxNs", + "duplicateSource": null + }, + "folder": null, + "sort": 7700000, + "_id": "fdrq5fvlMiYoNKvx", + "_key": "!items!fdrq5fvlMiYoNKvx" +} diff --git a/packs/ac-features/Hallowed_Strikes_WyN2qQ2AP4cOMNxF.json b/packs/ac-features/Hallowed_Strikes_WyN2qQ2AP4cOMNxF.json new file mode 100644 index 0000000..8c034d7 --- /dev/null +++ b/packs/ac-features/Hallowed_Strikes_WyN2qQ2AP4cOMNxF.json @@ -0,0 +1,95 @@ +{ + "_id": "WyN2qQ2AP4cOMNxF", + "name": "Hallowed Strikes", + "type": "feat", + "img": "systems/pf2e/icons/spells/moonlight-ray.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.jSDsKX3BOHhvtgsD" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon's attacks are hallowed by the celestial realms. Your eidolon's unarmed Strikes gain the holy trait and deal 1 extra spirit damage to unholy creatures and creatures with weakness to holy. Additionally, your eidolon can make nonlethal attacks with its unarmed attacks without taking the usual -2 circumstance penalty.
" + }, + "rules": [ + { + "key": "FlatModifier", + "selector": "strike-damage", + "value": 1, + "damageType": "spirit", + "predicate": [ + "target:trait:unholy" + ] + }, + { + "key": "AdjustStrike", + "mode": "add", + "property": "traits", + "value": "holy" + } + ], + "slug": "hallowed-strikes", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.109-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.13.6", + "coreVersion": "12.331", + "compendiumSource": "Item.jSDsKX3BOHhvtgsD", + "duplicateSource": null + }, + "folder": null, + "sort": 6000000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!WyN2qQ2AP4cOMNxF" +} diff --git a/packs/ac-features/Hidden_Watcher_qFYR3I9XcjBZckUf.json b/packs/ac-features/Hidden_Watcher_qFYR3I9XcjBZckUf.json new file mode 100644 index 0000000..c4c9c02 --- /dev/null +++ b/packs/ac-features/Hidden_Watcher_qFYR3I9XcjBZckUf.json @@ -0,0 +1,79 @@ +{ + "_id": "qFYR3I9XcjBZckUf", + "name": "Hidden Watcher", + "type": "feat", + "img": "systems/pf2e/icons/spells/disapperance.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.qFYR3I9XcjBZckUf" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon can render both of you unseen. Once per hour, it can cast @Compendium[pf2e.spells-srd.XXqE1eY3w3z6xJCB]{Invisibility} targeting you, them, or both of you at once. If the spell targeted both of you, the spell ends for both of you if either of you uses a hostile action.
" + }, + "rules": [], + "slug": "hidden-watcher", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.092-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.qFYR3I9XcjBZckUf", + "duplicateSource": null + }, + "folder": null, + "sort": 9900000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!qFYR3I9XcjBZckUf" +} diff --git a/packs/ac-features/Intelligence_Boost_RvCQCutoKANEqw5C.json b/packs/ac-features/Intelligence_Boost_RvCQCutoKANEqw5C.json new file mode 100644 index 0000000..01c58c1 --- /dev/null +++ b/packs/ac-features/Intelligence_Boost_RvCQCutoKANEqw5C.json @@ -0,0 +1,100 @@ +{ + "_id": "RvCQCutoKANEqw5C", + "name": "Intelligence Boost", + "type": "feat", + "img": "systems/pf2e/icons/spells/daydreamers-curse.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.DNpa1GdDXz8L4Fra" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": { + "brackets": [ + { + "end": 3, + "start": -4, + "value": 1 + }, + { + "start": 4, + "value": 0.5 + } + ], + "field": "actor|system.abilities.int.mod" + }, + "mode": "add", + "path": "system.abilities.int.mod", + "priority": 50 + } + ], + "slug": "intelligence-boost", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 5 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.217-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.DNpa1GdDXz8L4Fra", + "duplicateSource": null + }, + "folder": null, + "sort": 5000000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!RvCQCutoKANEqw5C" +} diff --git a/packs/ac-features/LOG b/packs/ac-features/LOG deleted file mode 100644 index f2bef5c..0000000 --- a/packs/ac-features/LOG +++ /dev/null @@ -1,3 +0,0 @@ -2024/05/19-12:56:42.460 4158 Recovering log #273 -2024/05/19-12:56:42.466 4158 Delete type=0 #273 -2024/05/19-12:56:42.467 4158 Delete type=3 #271 diff --git a/packs/ac-features/LOG.old b/packs/ac-features/LOG.old deleted file mode 100644 index 2a0c851..0000000 --- a/packs/ac-features/LOG.old +++ /dev/null @@ -1,7 +0,0 @@ -2024/05/19-16:38:49.523830 ffff95fbd100 Recovering log #269 -2024/05/19-16:38:49.530916 ffff95fbd100 Delete type=0 #269 -2024/05/19-16:38:49.530953 ffff95fbd100 Delete type=3 #267 -2024/05/19-16:45:29.729867 fffe74bad100 Level-0 table #274: started -2024/05/19-16:45:29.729885 fffe74bad100 Level-0 table #274: 0 bytes OK -2024/05/19-16:45:29.732542 fffe74bad100 Delete type=0 #272 -2024/05/19-16:45:29.738088 fffe74bad100 Manual compaction at level-0 from '!items!0i2ZSrRpjKG0KV4U' @ 72057594037927935 : 1 .. '!items!zF6bLjVwj7Njkqan' @ 0 : 0; will stop at (end) diff --git a/packs/ac-features/MANIFEST-000271 b/packs/ac-features/MANIFEST-000271 deleted file mode 100644 index fd7efe2..0000000 Binary files a/packs/ac-features/MANIFEST-000271 and /dev/null differ diff --git a/packs/ac-features/MANIFEST-000275 b/packs/ac-features/MANIFEST-000275 deleted file mode 100644 index 6d101a0..0000000 Binary files a/packs/ac-features/MANIFEST-000275 and /dev/null differ diff --git a/packs/ac-features/Marauding_Dragon_JcYmSwl3FCjqFEMm.json b/packs/ac-features/Marauding_Dragon_JcYmSwl3FCjqFEMm.json new file mode 100644 index 0000000..219585a --- /dev/null +++ b/packs/ac-features/Marauding_Dragon_JcYmSwl3FCjqFEMm.json @@ -0,0 +1,127 @@ +{ + "_id": "JcYmSwl3FCjqFEMm", + "name": "Marauding Dragon", + "type": "feat", + "img": "systems/pf2e/icons/spells/dragon-breath.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 18, Dex 14, Con 16, Int 10, Wis 10, Cha 10; +2 AC (+3 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 2, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 3 + } + ], + "slug": "marauding-dragon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.224-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 3500000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!JcYmSwl3FCjqFEMm" +} diff --git a/packs/ac-features/Mindless_Companion_CSBy1IgHTSkVAFMM.json b/packs/ac-features/Mindless_Companion_CSBy1IgHTSkVAFMM.json new file mode 100644 index 0000000..0a937af --- /dev/null +++ b/packs/ac-features/Mindless_Companion_CSBy1IgHTSkVAFMM.json @@ -0,0 +1,86 @@ +{ + "_id": "CSBy1IgHTSkVAFMM", + "name": "Mindless Companion", + "type": "feat", + "img": "systems/pf2e/icons/spells/mind-of-menace.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.CSBy1IgHTSkVAFMM" + } + }, + "system": { + "description": { + "gm": "", + "value": "Some undead companions are mindless. The mindless trait makes them immune to all mental effects, as normal. The only skills in which a mindless companion is trained are Acrobatics and Athletics, and it can't become trained in other skills. Even if a mindless companion gains a limited ability to act in combat without being commanded, such as from the Mature Animal Companion feat, it can repeat only the last command; it can't take a new action on its own. A mindless companion can't take specializations that would raise its Intelligence or grant it benefits to skills other than Acrobatics or Athletics, and it can't use or benefit from feats or other options for animal companions that normally require a creature to have a mind, think, or make a decision. When in doubt, the GM determines what abilities a mindless companion can use.
" + }, + "rules": [ + { + "key": "ActorTraits", + "add": [ + "mindless" + ] + } + ], + "slug": "mindless-companion", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.230-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.CSBy1IgHTSkVAFMM", + "duplicateSource": null + }, + "folder": null, + "sort": 2200000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!CSBy1IgHTSkVAFMM" +} diff --git a/packs/ac-features/Negative_Essence_CdQUkt9tPINNqSok.json b/packs/ac-features/Negative_Essence_CdQUkt9tPINNqSok.json new file mode 100644 index 0000000..38ad872 --- /dev/null +++ b/packs/ac-features/Negative_Essence_CdQUkt9tPINNqSok.json @@ -0,0 +1,95 @@ +{ + "_id": "CdQUkt9tPINNqSok", + "name": "Negative Essence", + "type": "feat", + "img": "systems/pf2e/icons/spells/bestial-curse.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.CdQUkt9tPINNqSok" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your undead eidolon has a link directly to your life force, which grants it a twilight state between living and undead. This renders it a living creature and therefore susceptible to many ailments that bother only the living, though it does possess some resistances to these effects. The eidolon has negative healing, meaning it heals from negative energy effects that heal undead and is damaged by positive energy effects that damage undead. It doesn't have an undead's normal immunities, but it does gain a +2 circumstance bonus to saving throws against death effects, disease, and poison effects, and non-damaging effects that target only undead. Additionally, its necrotic essence stanches its wounds easily. The flat check to remove persistent bleed damage from the eidolon is DC 10 (or DC 5 after receiving particularly effective aid).
" + }, + "rules": [ + { + "key": "FlatModifier", + "selector": "saving-throw", + "type": "circumstance", + "value": 2, + "predicate": [ + { + "or": [ + "disease", + "death-effect", + "poison" + ] + } + ] + } + ], + "slug": "negative-essence", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.229-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.CdQUkt9tPINNqSok", + "duplicateSource": null + }, + "folder": null, + "sort": 2300000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!CdQUkt9tPINNqSok" +} diff --git a/packs/ac-features/Negative_Healing_3mUx8vXEQkiIuBcR.json b/packs/ac-features/Negative_Healing_3mUx8vXEQkiIuBcR.json new file mode 100644 index 0000000..82f56a8 --- /dev/null +++ b/packs/ac-features/Negative_Healing_3mUx8vXEQkiIuBcR.json @@ -0,0 +1,86 @@ +{ + "_id": "3mUx8vXEQkiIuBcR", + "name": "Negative Healing", + "type": "feat", + "img": "systems/pf2e/icons/spells/agonizing-despair.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.3mUx8vXEQkiIuBcR" + } + }, + "system": { + "description": { + "gm": "", + "value": "@Localize[PF2E.NPC.Abilities.Glossary.NegativeHealing]
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "mode": "override", + "path": "system.attributes.hp.negativeHealing", + "value": true + } + ], + "slug": "negative-healing", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "uncommon" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Bestiary" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.323-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.3mUx8vXEQkiIuBcR", + "duplicateSource": null + }, + "folder": null, + "sort": 400000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!3mUx8vXEQkiIuBcR" +} diff --git a/packs/ac-features/Primal_Roar_Gn750G9nNM3GiI5k.json b/packs/ac-features/Primal_Roar_Gn750G9nNM3GiI5k.json new file mode 100644 index 0000000..9088929 --- /dev/null +++ b/packs/ac-features/Primal_Roar_Gn750G9nNM3GiI5k.json @@ -0,0 +1,84 @@ +{ + "name": "Primal Roar", + "type": "feat", + "img": "systems/pf2e/icons/spells/magic-hide.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.EcSOhff7Lzt7p1ZK" + } + }, + "_id": "Gn750G9nNM3GiI5k", + "system": { + "description": { + "gm": "", + "value": "Your eidolon can bellow a terrifying roar, screech, croak, or other overpowering sound to frighten foes. It gains the @Compendium[pf2e-animal-companions.AC-Features.hcQsGAZQgqdCckCm]{Primal Roar} activity.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.hcQsGAZQgqdCckCm" + } + ], + "slug": "primal-roar", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.227-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.EcSOhff7Lzt7p1ZK", + "duplicateSource": null + }, + "folder": null, + "sort": 2900000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!Gn750G9nNM3GiI5k" +} diff --git a/packs/ac-features/Primal_Roar_hcQsGAZQgqdCckCm.json b/packs/ac-features/Primal_Roar_hcQsGAZQgqdCckCm.json new file mode 100644 index 0000000..839b023 --- /dev/null +++ b/packs/ac-features/Primal_Roar_hcQsGAZQgqdCckCm.json @@ -0,0 +1,69 @@ +{ + "_id": "hcQsGAZQgqdCckCm", + "name": "Primal Roar", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.hcQsGAZQgqdCckCm" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon unleashes a primal roar or other such terrifying noise that fits your eidolon's form. Your eidolon attempts Intimidation checks to @Compendium[pf2e.actionspf2e.Demoralize]{Demoralize} each enemy that can hear the roar; these Demoralize attempts don't take any penalty for not sharing a language.
" + }, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "rules": [], + "slug": "primal-roar", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.099-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "auditory", + "eidolon" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.hcQsGAZQgqdCckCm", + "duplicateSource": null + }, + "folder": null, + "sort": 8000000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!hcQsGAZQgqdCckCm" +} diff --git a/packs/ac-features/Primary__1d6__deadly_d8__finesse__8dyatrsCMoIPuOlE.json b/packs/ac-features/Primary__1d6__deadly_d8__finesse__8dyatrsCMoIPuOlE.json new file mode 100644 index 0000000..1002843 --- /dev/null +++ b/packs/ac-features/Primary__1d6__deadly_d8__finesse__8dyatrsCMoIPuOlE.json @@ -0,0 +1,192 @@ +{ + "_id": "8dyatrsCMoIPuOlE", + "name": "Primary (1d6, deadly d8, finesse)", + "type": "weapon", + "img": "systems/pf2e/icons/default-icons/weapon.svg", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.FVryv4SwEW6RtoIa" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [], + "slug": "primary-1d6-deadly-d8-finesse", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "deadly-d8", + "finesse", + "unarmed" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "quantity": 1, + "baseItem": null, + "bulk": { + "value": 0.1 + }, + "hp": { + "value": 0, + "max": 0 + }, + "hardness": 0, + "price": { + "value": {} + }, + "equipped": { + "carryType": "worn", + "invested": null, + "handsHeld": 0 + }, + "containerId": "null", + "size": "med", + "material": { + "type": null, + "grade": null + }, + "identification": { + "status": "identified", + "unidentified": { + "name": "Unusual Weapon", + "img": "systems/pf2e/icons/unidentified_item_icons/weapon.webp", + "data": { + "description": { + "value": "" + } + } + }, + "misidentified": {} + }, + "usage": { + "value": "held-in-one-hand" + }, + "category": "unarmed", + "group": null, + "bonus": { + "value": 0 + }, + "damage": { + "dice": 1, + "die": "d6", + "damageType": "slashing", + "persistent": null, + "value": "" + }, + "bonusDamage": { + "value": 0 + }, + "splashDamage": { + "value": 0 + }, + "range": null, + "reload": { + "value": "" + }, + "runes": { + "potency": 0, + "striking": 0, + "property": [] + }, + "specific": { + "value": false + }, + "subitems": [], + "property1": { + "value": "", + "dice": 0, + "die": "", + "damageType": "", + "critDice": 0, + "critDie": "", + "critDamage": "", + "critDamageType": "", + "strikeConditionType": "", + "strikeConditionValue": null, + "criticalConditionType": "", + "criticalConditionValue": null + }, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.238-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "weight": { + "value": "-" + }, + "equippedBulk": { + "value": "" + }, + "stackGroup": null, + "negateBulk": { + "value": "0" + }, + "preciousMaterial": { + "value": null + }, + "preciousMaterialGrade": { + "value": null + }, + "MAP": { + "value": "" + }, + "potencyRune": { + "value": 0 + }, + "strikingRune": { + "value": "" + }, + "propertyRune1": { + "value": null + }, + "propertyRune2": { + "value": null + }, + "propertyRune3": { + "value": null + }, + "propertyRune4": { + "value": null + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.FVryv4SwEW6RtoIa", + "duplicateSource": null + }, + "folder": null, + "sort": 1500000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!8dyatrsCMoIPuOlE" +} diff --git a/packs/ac-features/Primary__1d6__fatal_d10__8IodRUpyU4nXGyAv.json b/packs/ac-features/Primary__1d6__fatal_d10__8IodRUpyU4nXGyAv.json new file mode 100644 index 0000000..0a47bb2 --- /dev/null +++ b/packs/ac-features/Primary__1d6__fatal_d10__8IodRUpyU4nXGyAv.json @@ -0,0 +1,191 @@ +{ + "_id": "8IodRUpyU4nXGyAv", + "name": "Primary (1d6, fatal d10)", + "type": "weapon", + "img": "systems/pf2e/icons/default-icons/weapon.svg", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.3m686gPSGpf4NwV0" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [], + "slug": "primary-1d6-fatal-d10", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "fatal-d10", + "unarmed" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "quantity": 1, + "baseItem": null, + "bulk": { + "value": 0.1 + }, + "hp": { + "value": 0, + "max": 0 + }, + "hardness": 0, + "price": { + "value": {} + }, + "equipped": { + "carryType": "worn", + "invested": null, + "handsHeld": 0 + }, + "containerId": "null", + "size": "med", + "material": { + "type": null, + "grade": null + }, + "identification": { + "status": "identified", + "unidentified": { + "name": "Unusual Weapon", + "img": "systems/pf2e/icons/unidentified_item_icons/weapon.webp", + "data": { + "description": { + "value": "" + } + } + }, + "misidentified": {} + }, + "usage": { + "value": "held-in-one-hand" + }, + "category": "unarmed", + "group": null, + "bonus": { + "value": 0 + }, + "damage": { + "dice": 1, + "die": "d6", + "damageType": "slashing", + "persistent": null, + "value": "" + }, + "bonusDamage": { + "value": 0 + }, + "splashDamage": { + "value": 0 + }, + "range": null, + "reload": { + "value": "" + }, + "runes": { + "potency": 0, + "striking": 0, + "property": [] + }, + "specific": { + "value": false + }, + "subitems": [], + "property1": { + "value": "", + "dice": 0, + "die": "", + "damageType": "", + "critDice": 0, + "critDie": "", + "critDamage": "", + "critDamageType": "", + "strikeConditionType": "", + "strikeConditionValue": null, + "criticalConditionType": "", + "criticalConditionValue": null + }, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.239-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "weight": { + "value": "-" + }, + "equippedBulk": { + "value": "" + }, + "stackGroup": null, + "negateBulk": { + "value": "0" + }, + "preciousMaterial": { + "value": null + }, + "preciousMaterialGrade": { + "value": null + }, + "MAP": { + "value": "" + }, + "potencyRune": { + "value": 0 + }, + "strikingRune": { + "value": "" + }, + "propertyRune1": { + "value": null + }, + "propertyRune2": { + "value": null + }, + "propertyRune3": { + "value": null + }, + "propertyRune4": { + "value": null + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.3m686gPSGpf4NwV0", + "duplicateSource": null + }, + "folder": null, + "sort": 1300000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!8IodRUpyU4nXGyAv" +} diff --git a/packs/ac-features/Primary__1d6__forceful__sweep__cIAB28BfwNA2uTQv.json b/packs/ac-features/Primary__1d6__forceful__sweep__cIAB28BfwNA2uTQv.json new file mode 100644 index 0000000..8b6fefa --- /dev/null +++ b/packs/ac-features/Primary__1d6__forceful__sweep__cIAB28BfwNA2uTQv.json @@ -0,0 +1,192 @@ +{ + "_id": "cIAB28BfwNA2uTQv", + "name": "Primary (1d6, forceful, sweep)", + "type": "weapon", + "img": "systems/pf2e/icons/default-icons/weapon.svg", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.Nk3mUb0BjISP518D" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [], + "slug": "primary-1d6-forceful-sweep", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "forceful", + "sweep", + "unarmed" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "quantity": 1, + "baseItem": null, + "bulk": { + "value": 0.1 + }, + "hp": { + "value": 0, + "max": 0 + }, + "hardness": 0, + "price": { + "value": {} + }, + "equipped": { + "carryType": "worn", + "invested": null, + "handsHeld": 0 + }, + "containerId": "null", + "size": "med", + "material": { + "type": null, + "grade": null + }, + "identification": { + "status": "identified", + "unidentified": { + "name": "Unusual Weapon", + "img": "systems/pf2e/icons/unidentified_item_icons/weapon.webp", + "data": { + "description": { + "value": "" + } + } + }, + "misidentified": {} + }, + "usage": { + "value": "held-in-one-hand" + }, + "category": "unarmed", + "group": null, + "bonus": { + "value": 0 + }, + "damage": { + "dice": 1, + "die": "d6", + "damageType": "slashing", + "persistent": null, + "value": "" + }, + "bonusDamage": { + "value": 0 + }, + "splashDamage": { + "value": 0 + }, + "range": null, + "reload": { + "value": "" + }, + "runes": { + "potency": 0, + "striking": 0, + "property": [] + }, + "specific": { + "value": false + }, + "subitems": [], + "property1": { + "value": "", + "dice": 0, + "die": "", + "damageType": "", + "critDice": 0, + "critDie": "", + "critDamage": "", + "critDamageType": "", + "strikeConditionType": "", + "strikeConditionValue": null, + "criticalConditionType": "", + "criticalConditionValue": null + }, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.105-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "weight": { + "value": "-" + }, + "equippedBulk": { + "value": "" + }, + "stackGroup": null, + "negateBulk": { + "value": "0" + }, + "preciousMaterial": { + "value": null + }, + "preciousMaterialGrade": { + "value": null + }, + "MAP": { + "value": "" + }, + "potencyRune": { + "value": 0 + }, + "strikingRune": { + "value": "" + }, + "propertyRune1": { + "value": null + }, + "propertyRune2": { + "value": null + }, + "propertyRune3": { + "value": null + }, + "propertyRune4": { + "value": null + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.Nk3mUb0BjISP518D", + "duplicateSource": null + }, + "folder": null, + "sort": 6900000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!cIAB28BfwNA2uTQv" +} diff --git a/packs/ac-features/Primary__1d8__disarm__GEVoWzCBjidkO6DG.json b/packs/ac-features/Primary__1d8__disarm__GEVoWzCBjidkO6DG.json new file mode 100644 index 0000000..cac7727 --- /dev/null +++ b/packs/ac-features/Primary__1d8__disarm__GEVoWzCBjidkO6DG.json @@ -0,0 +1,191 @@ +{ + "_id": "GEVoWzCBjidkO6DG", + "name": "Primary (1d8, disarm)", + "type": "weapon", + "img": "systems/pf2e/icons/default-icons/weapon.svg", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.QuSOa39bspWwCSg1" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [], + "slug": "primary-1d8-disarm", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "disarm", + "unarmed" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "quantity": 1, + "baseItem": null, + "bulk": { + "value": 0.1 + }, + "hp": { + "value": 0, + "max": 0 + }, + "hardness": 0, + "price": { + "value": {} + }, + "equipped": { + "carryType": "worn", + "invested": null, + "handsHeld": 0 + }, + "containerId": "null", + "size": "med", + "material": { + "type": null, + "grade": null + }, + "identification": { + "status": "identified", + "unidentified": { + "name": "Unusual Weapon", + "img": "systems/pf2e/icons/unidentified_item_icons/weapon.webp", + "data": { + "description": { + "value": "" + } + } + }, + "misidentified": {} + }, + "usage": { + "value": "held-in-one-hand" + }, + "category": "unarmed", + "group": null, + "bonus": { + "value": 0 + }, + "damage": { + "dice": 1, + "die": "d8", + "damageType": "slashing", + "persistent": null, + "value": "" + }, + "bonusDamage": { + "value": 0 + }, + "splashDamage": { + "value": 0 + }, + "range": null, + "reload": { + "value": "" + }, + "runes": { + "potency": 0, + "striking": 0, + "property": [] + }, + "specific": { + "value": false + }, + "subitems": [], + "property1": { + "value": "", + "dice": 0, + "die": "", + "damageType": "", + "critDice": 0, + "critDie": "", + "critDamage": "", + "critDamageType": "", + "strikeConditionType": "", + "strikeConditionValue": null, + "criticalConditionType": "", + "criticalConditionValue": null + }, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.227-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "weight": { + "value": "-" + }, + "equippedBulk": { + "value": "" + }, + "stackGroup": null, + "negateBulk": { + "value": "0" + }, + "preciousMaterial": { + "value": null + }, + "preciousMaterialGrade": { + "value": null + }, + "MAP": { + "value": "" + }, + "potencyRune": { + "value": 0 + }, + "strikingRune": { + "value": "" + }, + "propertyRune1": { + "value": null + }, + "propertyRune2": { + "value": null + }, + "propertyRune3": { + "value": null + }, + "propertyRune4": { + "value": null + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.QuSOa39bspWwCSg1", + "duplicateSource": null + }, + "folder": null, + "sort": 2800000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!GEVoWzCBjidkO6DG" +} diff --git a/packs/ac-features/Primary__1d8__nonlethal__8EJNylotPDelRtZK.json b/packs/ac-features/Primary__1d8__nonlethal__8EJNylotPDelRtZK.json new file mode 100644 index 0000000..1627ade --- /dev/null +++ b/packs/ac-features/Primary__1d8__nonlethal__8EJNylotPDelRtZK.json @@ -0,0 +1,191 @@ +{ + "_id": "8EJNylotPDelRtZK", + "name": "Primary (1d8, nonlethal)", + "type": "weapon", + "img": "systems/pf2e/icons/default-icons/weapon.svg", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.di4O3LtcQg9phZz3" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [], + "slug": "primary-1d8-nonlethal", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "nonlethal", + "unarmed" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "quantity": 1, + "baseItem": null, + "bulk": { + "value": 0.1 + }, + "hp": { + "value": 0, + "max": 0 + }, + "hardness": 0, + "price": { + "value": {} + }, + "equipped": { + "carryType": "worn", + "invested": null, + "handsHeld": 0 + }, + "containerId": "null", + "size": "med", + "material": { + "type": null, + "grade": null + }, + "identification": { + "status": "identified", + "unidentified": { + "name": "Unusual Weapon", + "img": "systems/pf2e/icons/unidentified_item_icons/weapon.webp", + "data": { + "description": { + "value": "" + } + } + }, + "misidentified": {} + }, + "usage": { + "value": "held-in-one-hand" + }, + "category": "unarmed", + "group": null, + "bonus": { + "value": 0 + }, + "damage": { + "dice": 1, + "die": "d8", + "damageType": "slashing", + "persistent": null, + "value": "" + }, + "bonusDamage": { + "value": 0 + }, + "splashDamage": { + "value": 0 + }, + "range": null, + "reload": { + "value": "" + }, + "runes": { + "potency": 0, + "striking": 0, + "property": [] + }, + "specific": { + "value": false + }, + "subitems": [], + "property1": { + "value": "", + "dice": 0, + "die": "", + "damageType": "", + "critDice": 0, + "critDie": "", + "critDamage": "", + "critDamageType": "", + "strikeConditionType": "", + "strikeConditionValue": null, + "criticalConditionType": "", + "criticalConditionValue": null + }, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.239-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "weight": { + "value": "-" + }, + "equippedBulk": { + "value": "" + }, + "stackGroup": null, + "negateBulk": { + "value": "0" + }, + "preciousMaterial": { + "value": null + }, + "preciousMaterialGrade": { + "value": null + }, + "MAP": { + "value": "" + }, + "potencyRune": { + "value": 0 + }, + "strikingRune": { + "value": "" + }, + "propertyRune1": { + "value": null + }, + "propertyRune2": { + "value": null + }, + "propertyRune3": { + "value": null + }, + "propertyRune4": { + "value": null + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.di4O3LtcQg9phZz3", + "duplicateSource": null + }, + "folder": null, + "sort": 1200000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!8EJNylotPDelRtZK" +} diff --git a/packs/ac-features/Primary__1d8__shove__XNgPUKsnRQO2OS2O.json b/packs/ac-features/Primary__1d8__shove__XNgPUKsnRQO2OS2O.json new file mode 100644 index 0000000..9035648 --- /dev/null +++ b/packs/ac-features/Primary__1d8__shove__XNgPUKsnRQO2OS2O.json @@ -0,0 +1,191 @@ +{ + "_id": "XNgPUKsnRQO2OS2O", + "name": "Primary (1d8, shove)", + "type": "weapon", + "img": "systems/pf2e/icons/default-icons/weapon.svg", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.QuSOa39bspWwCSg1" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [], + "slug": "primary-1d8-shove", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "shove", + "unarmed" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "quantity": 1, + "baseItem": null, + "bulk": { + "value": 0.1 + }, + "hp": { + "value": 0, + "max": 0 + }, + "hardness": 0, + "price": { + "value": {} + }, + "equipped": { + "carryType": "worn", + "invested": null, + "handsHeld": 0 + }, + "containerId": "null", + "size": "med", + "material": { + "type": null, + "grade": null + }, + "identification": { + "status": "identified", + "unidentified": { + "name": "Unusual Weapon", + "img": "systems/pf2e/icons/unidentified_item_icons/weapon.webp", + "data": { + "description": { + "value": "" + } + } + }, + "misidentified": {} + }, + "usage": { + "value": "held-in-one-hand" + }, + "category": "unarmed", + "group": null, + "bonus": { + "value": 0 + }, + "damage": { + "dice": 1, + "die": "d8", + "damageType": "slashing", + "persistent": null, + "value": "" + }, + "bonusDamage": { + "value": 0 + }, + "splashDamage": { + "value": 0 + }, + "range": null, + "reload": { + "value": "" + }, + "runes": { + "potency": 0, + "striking": 0, + "property": [] + }, + "specific": { + "value": false + }, + "subitems": [], + "property1": { + "value": "", + "dice": 0, + "die": "", + "damageType": "", + "critDice": 0, + "critDie": "", + "critDamage": "", + "critDamageType": "", + "strikeConditionType": "", + "strikeConditionValue": null, + "criticalConditionType": "", + "criticalConditionValue": null + }, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.108-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "weight": { + "value": "-" + }, + "equippedBulk": { + "value": "" + }, + "stackGroup": null, + "negateBulk": { + "value": "0" + }, + "preciousMaterial": { + "value": null + }, + "preciousMaterialGrade": { + "value": null + }, + "MAP": { + "value": "" + }, + "potencyRune": { + "value": 0 + }, + "strikingRune": { + "value": "" + }, + "propertyRune1": { + "value": null + }, + "propertyRune2": { + "value": null + }, + "propertyRune3": { + "value": null + }, + "propertyRune4": { + "value": null + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.QuSOa39bspWwCSg1", + "duplicateSource": null + }, + "folder": null, + "sort": 6100000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!XNgPUKsnRQO2OS2O" +} diff --git a/packs/ac-features/Primary__1d8__trip__ZXrAWVLwKxz5kovL.json b/packs/ac-features/Primary__1d8__trip__ZXrAWVLwKxz5kovL.json new file mode 100644 index 0000000..55f3647 --- /dev/null +++ b/packs/ac-features/Primary__1d8__trip__ZXrAWVLwKxz5kovL.json @@ -0,0 +1,191 @@ +{ + "_id": "ZXrAWVLwKxz5kovL", + "name": "Primary (1d8, trip)", + "type": "weapon", + "img": "systems/pf2e/icons/default-icons/weapon.svg", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.QuSOa39bspWwCSg1" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [], + "slug": "primary-1d8-trip", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "trip", + "unarmed" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "quantity": 1, + "baseItem": null, + "bulk": { + "value": 0.1 + }, + "hp": { + "value": 0, + "max": 0 + }, + "hardness": 0, + "price": { + "value": {} + }, + "equipped": { + "carryType": "worn", + "invested": null, + "handsHeld": 0 + }, + "containerId": "null", + "size": "med", + "material": { + "type": null, + "grade": null + }, + "identification": { + "status": "identified", + "unidentified": { + "name": "Unusual Weapon", + "img": "systems/pf2e/icons/unidentified_item_icons/weapon.webp", + "data": { + "description": { + "value": "" + } + } + }, + "misidentified": {} + }, + "usage": { + "value": "held-in-one-hand" + }, + "category": "unarmed", + "group": null, + "bonus": { + "value": 0 + }, + "damage": { + "dice": 1, + "die": "d8", + "damageType": "slashing", + "persistent": null, + "value": "" + }, + "bonusDamage": { + "value": 0 + }, + "splashDamage": { + "value": 0 + }, + "range": null, + "reload": { + "value": "" + }, + "runes": { + "potency": 0, + "striking": 0, + "property": [] + }, + "specific": { + "value": false + }, + "subitems": [], + "property1": { + "value": "", + "dice": 0, + "die": "", + "damageType": "", + "critDice": 0, + "critDie": "", + "critDamage": "", + "critDamageType": "", + "strikeConditionType": "", + "strikeConditionValue": null, + "criticalConditionType": "", + "criticalConditionValue": null + }, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.107-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "weight": { + "value": "-" + }, + "equippedBulk": { + "value": "" + }, + "stackGroup": null, + "negateBulk": { + "value": "0" + }, + "preciousMaterial": { + "value": null + }, + "preciousMaterialGrade": { + "value": null + }, + "MAP": { + "value": "" + }, + "potencyRune": { + "value": 0 + }, + "strikingRune": { + "value": "" + }, + "propertyRune1": { + "value": null + }, + "propertyRune2": { + "value": null + }, + "propertyRune3": { + "value": null + }, + "propertyRune4": { + "value": null + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.QuSOa39bspWwCSg1", + "duplicateSource": null + }, + "folder": null, + "sort": 6300000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!ZXrAWVLwKxz5kovL" +} diff --git a/packs/ac-features/Primordial_Elemental_uC70GaoV83y2RPPG.json b/packs/ac-features/Primordial_Elemental_uC70GaoV83y2RPPG.json new file mode 100644 index 0000000..4781db1 --- /dev/null +++ b/packs/ac-features/Primordial_Elemental_uC70GaoV83y2RPPG.json @@ -0,0 +1,109 @@ +{ + "name": "Primordial Elemental", + "type": "heritage", + "img": "systems/pf2e/icons/spells/element-embodied.webp", + "effects": [], + "flags": { + "core": {} + }, + "system": { + "description": { + "gm": "", + "value": "Str +4, Dex +2, Con +3, Int –1, Wis +1, Cha +0; +2 AC (+3 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -1, + "mode": "downgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 2, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 3 + } + ], + "slug": "undead-brute", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "ancestry": { + "name": "Elemental Eidolon", + "slug": "dragon-eidolon", + "uuid": "Compendium.pf2e-animal-companions.AC-Eidolons.Item.Int1LFtquj8MTIFp" + }, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.326-04:00", + "version": { + "schema": 0.854, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "folder": null, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3, + "qA45GVv5hySaf9b5": 3 + }, + "_id": "uC70GaoV83y2RPPG", + "sort": 0, + "_key": "!items!uC70GaoV83y2RPPG" +} diff --git a/packs/ac-features/Reconfigured_Evolution_AaVyAec0r17ocz42.json b/packs/ac-features/Reconfigured_Evolution_AaVyAec0r17ocz42.json new file mode 100644 index 0000000..8b02b1c --- /dev/null +++ b/packs/ac-features/Reconfigured_Evolution_AaVyAec0r17ocz42.json @@ -0,0 +1,79 @@ +{ + "_id": "AaVyAec0r17ocz42", + "name": "Reconfigured Evolution", + "type": "feat", + "img": "systems/pf2e/icons/spells/dimensional-anchor.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.AaVyAec0r17ocz42" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your construct eidolon is particularly easy to reconfigure, gaining an additional evolution that suits both of your whims. Choose one additional evolution feat of 6th level or lower. Your eidolon gains that feat. You can Retrain this feat for any other evolution feat of 6th level or lower with only a single day of downtime if you succeed at a Crafting check, with a standard DC of your eidolon's level. If you fail, you can try again on a later day. Many summoners choose Eidolon's Wrath for this ability.
" + }, + "rules": [], + "slug": "reconfigured-evolution", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.237-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.AaVyAec0r17ocz42", + "duplicateSource": null + }, + "folder": null, + "sort": 1700000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!AaVyAec0r17ocz42" +} diff --git a/packs/ac-features/Rejuvenation_ISKjzLSNysEr7Kit.json b/packs/ac-features/Rejuvenation_ISKjzLSNysEr7Kit.json new file mode 100644 index 0000000..adb4537 --- /dev/null +++ b/packs/ac-features/Rejuvenation_ISKjzLSNysEr7Kit.json @@ -0,0 +1,79 @@ +{ + "name": "Rejuvenation", + "type": "feat", + "img": "systems/pf2e/icons/spells/false-life.webp", + "system": { + "description": { + "gm": "", + "value": "Your eidolon's unusual connection with you allows you both to rejuvenate when defeated. The first time each day your turn begins while you're dying, you instantly regain a number of Hit Points equal to three times your level and wake up. (Increase your wounded condition as normal.) You can immediately Manifest Your Eidolon as a free action. You can then take your turn as normal.
" + }, + "rules": [], + "slug": "rejuvenation", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 17 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.225-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "effects": [], + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "flags": { + "core": { + "sourceId": "Item.1KoqDkZR0xt9nEBI" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.1KoqDkZR0xt9nEBI", + "duplicateSource": null + }, + "folder": null, + "sort": 3300000, + "_id": "ISKjzLSNysEr7Kit", + "_key": "!items!ISKjzLSNysEr7Kit" +} diff --git a/packs/ac-features/Scout_Construct_bjSHfY92UwLjdWZC.json b/packs/ac-features/Scout_Construct_bjSHfY92UwLjdWZC.json new file mode 100644 index 0000000..cfcc219 --- /dev/null +++ b/packs/ac-features/Scout_Construct_bjSHfY92UwLjdWZC.json @@ -0,0 +1,127 @@ +{ + "_id": "bjSHfY92UwLjdWZC", + "name": "Scout Construct", + "type": "feat", + "img": "systems/pf2e/icons/spells/zealous-conviction.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 14, Dex 18, Con 16, Int 12, Wis 10, Cha 8; +1 AC (+4 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": -1, + "mode": "downgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 1, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 4 + } + ], + "slug": "scout-construct", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.106-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 6700000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!bjSHfY92UwLjdWZC" +} diff --git a/packs/ac-features/Scribe_of_the_Dead_VXlVUNQjQls2ubwX.json b/packs/ac-features/Scribe_of_the_Dead_VXlVUNQjQls2ubwX.json new file mode 100644 index 0000000..b3a8492 --- /dev/null +++ b/packs/ac-features/Scribe_of_the_Dead_VXlVUNQjQls2ubwX.json @@ -0,0 +1,127 @@ +{ + "_id": "VXlVUNQjQls2ubwX", + "name": "Scribe of the Dead", + "type": "feat", + "img": "systems/pf2e/icons/spells/atone.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.VXlVUNQjQls2ubwX" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 12, Dex 18, Con 12, Int 14, Wis 12, Cha 10; +1 AC (+4 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 1, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 4 + } + ], + "slug": "scribe-of-the-dead", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.215-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.VXlVUNQjQls2ubwX", + "duplicateSource": null + }, + "folder": null, + "sort": 5300000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!VXlVUNQjQls2ubwX" +} diff --git a/packs/ac-features/Secondary_Attack_v5dfcKYsaD0EvvtH.json b/packs/ac-features/Secondary_Attack_v5dfcKYsaD0EvvtH.json new file mode 100644 index 0000000..2001380 --- /dev/null +++ b/packs/ac-features/Secondary_Attack_v5dfcKYsaD0EvvtH.json @@ -0,0 +1,192 @@ +{ + "_id": "v5dfcKYsaD0EvvtH", + "name": "Secondary Attack", + "type": "weapon", + "img": "systems/pf2e/icons/default-icons/weapon.svg", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.plHqkYSxSSPZ4mHQ" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [], + "slug": "secondary-attack", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "agile", + "finesse", + "unarmed" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "quantity": 1, + "baseItem": null, + "bulk": { + "value": 0.1 + }, + "hp": { + "value": 0, + "max": 0 + }, + "hardness": 0, + "price": { + "value": {} + }, + "equipped": { + "carryType": "worn", + "invested": null, + "handsHeld": 0 + }, + "containerId": "null", + "size": "med", + "material": { + "type": null, + "grade": null + }, + "identification": { + "status": "identified", + "unidentified": { + "name": "Unusual Weapon", + "img": "systems/pf2e/icons/unidentified_item_icons/weapon.webp", + "data": { + "description": { + "value": "" + } + } + }, + "misidentified": {} + }, + "usage": { + "value": "held-in-one-hand" + }, + "category": "unarmed", + "group": null, + "bonus": { + "value": 0 + }, + "damage": { + "dice": 1, + "die": "d6", + "damageType": "slashing", + "persistent": null, + "value": "" + }, + "bonusDamage": { + "value": 0 + }, + "splashDamage": { + "value": 0 + }, + "range": null, + "reload": { + "value": "" + }, + "runes": { + "potency": 0, + "striking": 0, + "property": [] + }, + "specific": { + "value": false + }, + "subitems": [], + "property1": { + "value": "", + "dice": 0, + "die": "", + "damageType": "", + "critDice": 0, + "critDie": "", + "critDamage": "", + "critDamageType": "", + "strikeConditionType": "", + "strikeConditionValue": null, + "criticalConditionType": "", + "criticalConditionValue": null + }, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.088-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "weight": { + "value": "-" + }, + "equippedBulk": { + "value": "" + }, + "stackGroup": null, + "negateBulk": { + "value": "0" + }, + "preciousMaterial": { + "value": null + }, + "preciousMaterialGrade": { + "value": null + }, + "MAP": { + "value": "" + }, + "potencyRune": { + "value": 0 + }, + "strikingRune": { + "value": "" + }, + "propertyRune1": { + "value": null + }, + "propertyRune2": { + "value": null + }, + "propertyRune3": { + "value": null + }, + "propertyRune4": { + "value": null + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.plHqkYSxSSPZ4mHQ", + "duplicateSource": null + }, + "folder": null, + "sort": 10700000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!v5dfcKYsaD0EvvtH" +} diff --git a/packs/ac-features/Seething_Frenzy_7K6UJ3D3owmOQS03.json b/packs/ac-features/Seething_Frenzy_7K6UJ3D3owmOQS03.json new file mode 100644 index 0000000..bbb9c3f --- /dev/null +++ b/packs/ac-features/Seething_Frenzy_7K6UJ3D3owmOQS03.json @@ -0,0 +1,71 @@ +{ + "_id": "7K6UJ3D3owmOQS03", + "name": "Seething Frenzy", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.7K6UJ3D3owmOQS03" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon's fury boils over into a reckless, out- of-control frenzy. While frenzied, your eidolon is affected by @Compendium[pf2e.spells-srd.HStu2Yhw3iQER9tY]{Boost Eidolon} and gains temporary Hit Points equal to your level, but it takes a -2 penalty to AC. Your eidolon can't voluntarily end the frenzy or start another frenzy while in the frenzy. The frenzy lasts for 1 minute, after which it's @Compendium[pf2e.conditionitems.Fatigued]{Fatigued} for 1 minute and can't start another frenzy for 1 minute.
\n@Compendium[pf2e-animal-companions.AC-Features.yE9n6h53psgbYThV]{Effect: Seething Frenzy}
" + }, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "rules": [], + "slug": "seething-frenzy", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.240-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "concentrate", + "eidolon", + "emotion", + "mental" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.7K6UJ3D3owmOQS03", + "duplicateSource": null + }, + "folder": null, + "sort": 1100000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!7K6UJ3D3owmOQS03" +} diff --git a/packs/ac-features/Seething_Frenzy_MzqIc3XmAUQVdSFO.json b/packs/ac-features/Seething_Frenzy_MzqIc3XmAUQVdSFO.json new file mode 100644 index 0000000..30230ca --- /dev/null +++ b/packs/ac-features/Seething_Frenzy_MzqIc3XmAUQVdSFO.json @@ -0,0 +1,84 @@ +{ + "name": "Seething Frenzy", + "type": "feat", + "img": "systems/pf2e/icons/spells/abyssal-wrath.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.1NzHTTBu02H4H4Ng" + } + }, + "_id": "MzqIc3XmAUQVdSFO", + "system": { + "description": { + "gm": "", + "value": "Your eidolon can stoke itself into a frenzy. It gains the @Compendium[pf2e-animal-companions.AC-Features.7K6UJ3D3owmOQS03]{Seething Frenzy} action.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.7K6UJ3D3owmOQS03" + } + ], + "slug": "seething-frenzy", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.220-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.1NzHTTBu02H4H4Ng", + "duplicateSource": null + }, + "folder": null, + "sort": 4200000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!MzqIc3XmAUQVdSFO" +} diff --git a/packs/ac-features/Skirmisher_Fey_F8wk9ybBPYBeoszZ.json b/packs/ac-features/Skirmisher_Fey_F8wk9ybBPYBeoszZ.json new file mode 100644 index 0000000..4d04b6d --- /dev/null +++ b/packs/ac-features/Skirmisher_Fey_F8wk9ybBPYBeoszZ.json @@ -0,0 +1,127 @@ +{ + "_id": "F8wk9ybBPYBeoszZ", + "name": "Skirmisher Fey", + "type": "feat", + "img": "systems/pf2e/icons/spells/fey-disapperance.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 14, Dex 18, Con 14, Int 10, Wis 10, Cha 12; +1 AC (+4 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 1, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 4 + } + ], + "slug": "skirmisher-fey", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.228-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 2600000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!F8wk9ybBPYBeoszZ" +} diff --git a/packs/ac-features/Soul_Guardian_YkevbtGldcm34DlT.json b/packs/ac-features/Soul_Guardian_YkevbtGldcm34DlT.json new file mode 100644 index 0000000..db8ae5d --- /dev/null +++ b/packs/ac-features/Soul_Guardian_YkevbtGldcm34DlT.json @@ -0,0 +1,127 @@ +{ + "_id": "YkevbtGldcm34DlT", + "name": "Soul Guardian", + "type": "feat", + "img": "systems/pf2e/icons/spells/illusory-creature.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.YkevbtGldcm34DlT" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 18, Dex 14, Con 16, Int 10, Wis 12, Cha 8; +2 AC (+3 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": -1, + "mode": "downgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 2, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 3 + } + ], + "slug": "soul-guardian", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.108-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.YkevbtGldcm34DlT", + "duplicateSource": null + }, + "folder": null, + "sort": 6200000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!YkevbtGldcm34DlT" +} diff --git a/packs/ac-features/Spirit_Taker_rFuzSio2a1VOd2Ch.json b/packs/ac-features/Spirit_Taker_rFuzSio2a1VOd2Ch.json new file mode 100644 index 0000000..969aa58 --- /dev/null +++ b/packs/ac-features/Spirit_Taker_rFuzSio2a1VOd2Ch.json @@ -0,0 +1,79 @@ +{ + "_id": "rFuzSio2a1VOd2Ch", + "name": "Spirit Taker", + "type": "feat", + "img": "systems/pf2e/icons/spells/spiritual-epidemic.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.rFuzSio2a1VOd2Ch" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon is particularly capable when it comes to handling bodiless spirits and putting undead to their final rest. Your eidolon can see incorporeal creatures inside of solid objects and can attack them with Strikes without penalty; an incorporeal creature in a solid object that takes damage from your eidolon's Strike is expelled from the object to the nearest available space, moving closer to your eidolon if possible.
\nAdditionally, your eidolon can target or affect a creature projecting its consciousness (such as via project image) or possessing another creature, even if its body is elsewhere, though your eidolon must know about the possession or projection and choose to do so.
\nFinally, the spirit of an undead destroyed by your eidolon's Strikes is sent directly to the Boneyard for judgment; an undead with an ability to avoid such a fate automatically, such as a ghost's rejuvenation, can attempt a counteract check against your spell DC to return via that ability as normal. In that case, it uses its Will save modifier as its counteract modifier.
" + }, + "rules": [], + "slug": "spirit-taker", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 17 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.091-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.rFuzSio2a1VOd2Ch", + "duplicateSource": null + }, + "folder": null, + "sort": 10100000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!rFuzSio2a1VOd2Ch" +} diff --git a/packs/ac-features/Spirit_Touch_gyI9aHjkO84BQ3tR.json b/packs/ac-features/Spirit_Touch_gyI9aHjkO84BQ3tR.json new file mode 100644 index 0000000..71706b9 --- /dev/null +++ b/packs/ac-features/Spirit_Touch_gyI9aHjkO84BQ3tR.json @@ -0,0 +1,108 @@ +{ + "_id": "gyI9aHjkO84BQ3tR", + "name": "Spirit Touch", + "type": "feat", + "img": "systems/pf2e/icons/spells/ghostly-transcription.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.gyI9aHjkO84BQ3tR" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon's attacks possess a psychopomp's ability to harm the living and the dead. Your eidolon's unarmed Strikes affect incorporeal creatures as though etched with a ghost touch property rune and deal an extra 1 void Damage to living creatures and an extra 1 vitality Damage to undead.
" + }, + "rules": [ + { + "key": "FlatModifier", + "selector": "strike-damage", + "value": 1, + "damageType": "vitality", + "predicate": [ + "unarmed", + "target:mode:undead" + ], + "slug": "spirit-touch-undead" + }, + { + "key": "FlatModifier", + "selector": "strike-damage", + "value": 1, + "damageType": "void", + "predicate": [ + "unarmed", + "target:mode:living" + ], + "slug": "spirit-touch-living" + }, + { + "key": "AdjustStrike", + "mode": "add", + "property": "property-runes", + "value": "ghost-touch" + } + ], + "slug": "spirit-touch", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.099-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.gyI9aHjkO84BQ3tR", + "duplicateSource": null + }, + "folder": null, + "sort": 7900000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!gyI9aHjkO84BQ3tR" +} diff --git a/packs/ac-features/Stalwart_Guardian_WRWGcHidHQz4ef2W.json b/packs/ac-features/Stalwart_Guardian_WRWGcHidHQz4ef2W.json new file mode 100644 index 0000000..2b459a4 --- /dev/null +++ b/packs/ac-features/Stalwart_Guardian_WRWGcHidHQz4ef2W.json @@ -0,0 +1,127 @@ +{ + "_id": "WRWGcHidHQz4ef2W", + "name": "Stalwart Guardian", + "type": "feat", + "img": "systems/pf2e/icons/spells/champions-sacrifice.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 18, Dex 14, Con 16, Int 10, Wis 10, Cha 10; +2 AC (+3 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 2, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 3 + } + ], + "slug": "stalwart-guardian", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.110-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 5700000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!WRWGcHidHQz4ef2W" +} diff --git a/packs/ac-features/Steadfast_Devotion_N47g9LDkOdZZdgup.json b/packs/ac-features/Steadfast_Devotion_N47g9LDkOdZZdgup.json new file mode 100644 index 0000000..c56d9ae --- /dev/null +++ b/packs/ac-features/Steadfast_Devotion_N47g9LDkOdZZdgup.json @@ -0,0 +1,112 @@ +{ + "_id": "N47g9LDkOdZZdgup", + "name": "Steadfast Devotion", + "type": "feat", + "img": "systems/pf2e/icons/spells/face-in-the-crowd.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.N47g9LDkOdZZdgup" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon's dedication makes it extremely challenging for your foes to bend its mind. Your eidolon gains a +2 circumstance bonus to saving throws against mental effects, and if they roll a success against such an effect, they get a critical success instead. If you have the shared resolve class feature and your eidolon rolls a critical failure against a mental effect, they get a failure instead.
" + }, + "rules": [ + { + "key": "FlatModifier", + "selector": "saving-throw", + "value": 2, + "type": "circumstance", + "predicate": [ + "mental" + ] + }, + { + "key": "AdjustDegreeOfSuccess", + "type": "save", + "selector": "saving-throw", + "predicate": [ + "mental" + ], + "adjustment": { + "success": "one-degree-better" + } + }, + { + "key": "AdjustDegreeOfSuccess", + "type": "save", + "selector": "saving-throw", + "predicate": [ + "mental", + "feature:shared-resolve" + ], + "adjustment": { + "criticalFailure": "one-degree-better" + } + } + ], + "slug": "steadfast-devotion", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "bonus", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.220-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.N47g9LDkOdZZdgup", + "duplicateSource": null + }, + "folder": null, + "sort": 4300000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!N47g9LDkOdZZdgup" +} diff --git a/packs/ac-features/Strength_Boost_5gnUVvjqXD99OpUX.json b/packs/ac-features/Strength_Boost_5gnUVvjqXD99OpUX.json new file mode 100644 index 0000000..38cc7ed --- /dev/null +++ b/packs/ac-features/Strength_Boost_5gnUVvjqXD99OpUX.json @@ -0,0 +1,100 @@ +{ + "_id": "5gnUVvjqXD99OpUX", + "name": "Strength Boost", + "type": "feat", + "img": "systems/pf2e/icons/spells/enduring-might.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.DNpa1GdDXz8L4Fra" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": { + "brackets": [ + { + "end": 3, + "start": -4, + "value": 1 + }, + { + "start": 4, + "value": 0.5 + } + ], + "field": "actor|system.abilities.str.mod" + }, + "mode": "add", + "path": "system.abilities.str.mod", + "priority": 50 + } + ], + "slug": "strength-boost", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 5 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.240-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.DNpa1GdDXz8L4Fra", + "duplicateSource": null + }, + "folder": null, + "sort": 900000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!5gnUVvjqXD99OpUX" +} diff --git a/packs/ac-features/Swift_Protector_TDWe85aZadixqmRU.json b/packs/ac-features/Swift_Protector_TDWe85aZadixqmRU.json new file mode 100644 index 0000000..b257cf4 --- /dev/null +++ b/packs/ac-features/Swift_Protector_TDWe85aZadixqmRU.json @@ -0,0 +1,127 @@ +{ + "_id": "TDWe85aZadixqmRU", + "name": "Swift Protector", + "type": "feat", + "img": "systems/pf2e/icons/spells/adapt-self.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 14, Dex 18, Con 16, Int 10, Wis 10, Cha 10; +1 AC (+4 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 1, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 4 + } + ], + "slug": "swift-protector", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.216-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 5100000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!TDWe85aZadixqmRU" +} diff --git a/packs/ac-features/Tempter_Demon_WfNq9WV1ERdAz7xG.json b/packs/ac-features/Tempter_Demon_WfNq9WV1ERdAz7xG.json new file mode 100644 index 0000000..7319859 --- /dev/null +++ b/packs/ac-features/Tempter_Demon_WfNq9WV1ERdAz7xG.json @@ -0,0 +1,127 @@ +{ + "_id": "WfNq9WV1ERdAz7xG", + "name": "Tempter Demon", + "type": "feat", + "img": "systems/pf2e/icons/spells/demon-form.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 12, Dex 18, Con 12, Int 10, Wis 10, Cha 16; +1 AC (+4 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 1, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 4 + } + ], + "slug": "tempter-demon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.109-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 5900000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!WfNq9WV1ERdAz7xG" +} diff --git a/packs/ac-features/Tendril_Strike_fNTyFkFxNCi5O5SE.json b/packs/ac-features/Tendril_Strike_fNTyFkFxNCi5O5SE.json new file mode 100644 index 0000000..e4bb38e --- /dev/null +++ b/packs/ac-features/Tendril_Strike_fNTyFkFxNCi5O5SE.json @@ -0,0 +1,68 @@ +{ + "_id": "fNTyFkFxNCi5O5SE", + "name": "Tendril Strike", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.fNTyFkFxNCi5O5SE" + } + }, + "system": { + "description": { + "gm": "", + "value": "Stretching to extend its body to its limits, your eidolon attacks a foe that would normally be beyond its reach. Your eidolon makes a melee unarmed Strike, increasing its reach by 5 feet for that Strike. If the unarmed attack has the disarm, shove, or trip trait, the eidolon can use the corresponding action instead of a Strike.
" + }, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "rules": [], + "slug": "tendril-strike", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.100-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "eidolon" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.fNTyFkFxNCi5O5SE", + "duplicateSource": null + }, + "folder": null, + "sort": 7600000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!fNTyFkFxNCi5O5SE" +} diff --git a/packs/ac-features/Tendril_Strike_iunzITJGz0QUudUk.json b/packs/ac-features/Tendril_Strike_iunzITJGz0QUudUk.json new file mode 100644 index 0000000..25e2e29 --- /dev/null +++ b/packs/ac-features/Tendril_Strike_iunzITJGz0QUudUk.json @@ -0,0 +1,84 @@ +{ + "name": "Tendril Strike", + "type": "feat", + "img": "systems/pf2e/icons/spells/entangle.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.WAvxa5krBN6wJr1u" + } + }, + "_id": "iunzITJGz0QUudUk", + "system": { + "description": { + "gm": "", + "value": "Your eidolon can stretch out vines and roots, attacking foes outside its reach. It gains the @Compendium[pf2e-animal-companions.AC-Features.fNTyFkFxNCi5O5SE]{Tendril Strike} action.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.fNTyFkFxNCi5O5SE" + } + ], + "slug": "tendril-strike", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 0 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.098-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.WAvxa5krBN6wJr1u", + "duplicateSource": null + }, + "folder": null, + "sort": 8300000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!iunzITJGz0QUudUk" +} diff --git a/packs/ac-features/Traveler_s_Aura_6uCSkTAltByUK2Pb.json b/packs/ac-features/Traveler_s_Aura_6uCSkTAltByUK2Pb.json new file mode 100644 index 0000000..6db78fd --- /dev/null +++ b/packs/ac-features/Traveler_s_Aura_6uCSkTAltByUK2Pb.json @@ -0,0 +1,79 @@ +{ + "name": "Traveler's Aura", + "type": "feat", + "img": "systems/pf2e/icons/spells/destructive-aura.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.CjAeBpkfKEkejtlQ" + } + }, + "_id": "6uCSkTAltByUK2Pb", + "system": { + "description": { + "gm": "", + "value": "Your eidolon emanates a powerful aura-resembling that of an astral deva-that protects creatures as they travel. The aura has the abjuration, aura, and divine traits. Your eidolon and its allies within a @Template[type:emanation|distance:20] are protected from severe heat and cold, and your eidolon is never @Compendium[pf2e.conditionitems.Off-Guard]{Off-Guard} to creatures inside the aura that are of a lower level than the eidolon.
\nWhen you gain the transcendence class feature, this evolves to the full benefits of an astral deva; your eidolon and allies in the aura are protected from environmental damage from any plane, including severe and extreme heat and cold as well as more unusual dangers.
" + }, + "rules": [], + "slug": "travelers-aura", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.240-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.CjAeBpkfKEkejtlQ", + "duplicateSource": null + }, + "folder": null, + "sort": 1000000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!6uCSkTAltByUK2Pb" +} diff --git a/packs/ac-features/Trickster_Fey_ADnKqMNT8kKfPl9o.json b/packs/ac-features/Trickster_Fey_ADnKqMNT8kKfPl9o.json new file mode 100644 index 0000000..8e53cb7 --- /dev/null +++ b/packs/ac-features/Trickster_Fey_ADnKqMNT8kKfPl9o.json @@ -0,0 +1,127 @@ +{ + "_id": "ADnKqMNT8kKfPl9o", + "name": "Trickster Fey", + "type": "feat", + "img": "systems/pf2e/icons/spells/lament.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 12, Dex 18, Con 12, Int 12, Wis 8, Cha 16; +1 AC (+4 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": -1, + "mode": "downgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 1, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 4 + } + ], + "slug": "trickster-fey", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.238-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 1600000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!ADnKqMNT8kKfPl9o" +} diff --git a/packs/ac-features/Ultimate_Reconfiguration_f5t6k3hwRSXqGto1.json b/packs/ac-features/Ultimate_Reconfiguration_f5t6k3hwRSXqGto1.json new file mode 100644 index 0000000..b600cd2 --- /dev/null +++ b/packs/ac-features/Ultimate_Reconfiguration_f5t6k3hwRSXqGto1.json @@ -0,0 +1,79 @@ +{ + "_id": "f5t6k3hwRSXqGto1", + "name": "Ultimate Reconfiguration", + "type": "feat", + "img": "systems/pf2e/icons/spells/force-cage.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.f5t6k3hwRSXqGto1" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your construct eidolon becomes even more customizable. Choose an evolution feat of 16th level or lower. Your eidolon gains that feat. You can spend downtime to adjust it using Crafting, just like the feat from reconfigured evolution. Many summoners select Ever-Vigilant Senses for this ability.
" + }, + "rules": [], + "slug": "ultimate-reconfiguration", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 17 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.100-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.f5t6k3hwRSXqGto1", + "duplicateSource": null + }, + "folder": null, + "sort": 7500000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!f5t6k3hwRSXqGto1" +} diff --git a/packs/ac-features/Undead_Brute_drVBJuBlzQDb9sS0.json b/packs/ac-features/Undead_Brute_drVBJuBlzQDb9sS0.json new file mode 100644 index 0000000..5e0a1ec --- /dev/null +++ b/packs/ac-features/Undead_Brute_drVBJuBlzQDb9sS0.json @@ -0,0 +1,106 @@ +{ + "_id": "drVBJuBlzQDb9sS0", + "name": "Undead Brute", + "type": "heritage", + "img": "systems/pf2e/icons/spells/animate-dead.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.drVBJuBlzQDb9sS0" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 18, Dex 14, Con 16, Int 8, Wis 10, Cha 12
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -1, + "mode": "downgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 2, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 3 + } + ], + "slug": "undead-brute", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "ancestry": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.326-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.drVBJuBlzQDb9sS0", + "duplicateSource": null + }, + "folder": null, + "sort": 7400000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!drVBJuBlzQDb9sS0" +} diff --git a/packs/ac-features/Undead_Stalker_xE3lRxl1t4ulQyLa.json b/packs/ac-features/Undead_Stalker_xE3lRxl1t4ulQyLa.json new file mode 100644 index 0000000..bdcd1ef --- /dev/null +++ b/packs/ac-features/Undead_Stalker_xE3lRxl1t4ulQyLa.json @@ -0,0 +1,106 @@ +{ + "_id": "xE3lRxl1t4ulQyLa", + "name": "Undead Stalker", + "type": "heritage", + "img": "systems/pf2e/icons/spells/spellwrack.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.xE3lRxl1t4ulQyLa" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 14, Dex 18, Con 16, Int 8, Wis 12, Cha 10
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -1, + "mode": "downgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 1, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 4 + } + ], + "slug": "undead-stalker", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "ancestry": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.325-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.xE3lRxl1t4ulQyLa", + "duplicateSource": null + }, + "folder": null, + "sort": 10900000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!xE3lRxl1t4ulQyLa" +} diff --git a/packs/ac-features/Visions_of_Sin_cnYMvDxCRY4NvUmJ.json b/packs/ac-features/Visions_of_Sin_cnYMvDxCRY4NvUmJ.json new file mode 100644 index 0000000..fa177b8 --- /dev/null +++ b/packs/ac-features/Visions_of_Sin_cnYMvDxCRY4NvUmJ.json @@ -0,0 +1,84 @@ +{ + "name": "Visions of Sin", + "type": "feat", + "img": "systems/pf2e/icons/spells/vision-of-weakness.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.t9VZr3duyiYqkOvR" + } + }, + "_id": "cnYMvDxCRY4NvUmJ", + "system": { + "description": { + "gm": "", + "value": "Your demon is born of sin and can project the sin it is formed from into the minds of others. It gains the @Compendium[pf2e-animal-companions.AC-Features.srfAyOXpUYxEz0gx]{Visions of Sin} activity.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.srfAyOXpUYxEz0gx" + } + ], + "slug": "visions-of-sin", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 7 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.102-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.t9VZr3duyiYqkOvR", + "duplicateSource": null + }, + "folder": null, + "sort": 7000000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!cnYMvDxCRY4NvUmJ" +} diff --git a/packs/ac-features/Visions_of_Sin_srfAyOXpUYxEz0gx.json b/packs/ac-features/Visions_of_Sin_srfAyOXpUYxEz0gx.json new file mode 100644 index 0000000..c6a6152 --- /dev/null +++ b/packs/ac-features/Visions_of_Sin_srfAyOXpUYxEz0gx.json @@ -0,0 +1,71 @@ +{ + "_id": "srfAyOXpUYxEz0gx", + "name": "Visions of Sin", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.srfAyOXpUYxEz0gx" + } + }, + "system": { + "description": { + "gm": "", + "value": "Frequency once per 10 minutes
\nYour eidolon summons images of its sin into the mind of a target creature within 30 feet, tormenting and confusing the target. The target must attempt a Will save against your spell DC with the following effects. The effects last until the end of your next turn, but your eidolon can use a single action, which has the concentrate trait, to extend the effects until the end of your next turn (like Sustaining a Spell), to a maximum duration of 1 minute. If the target is evil, it takes a -2 circumstance penalty to its save. Regardless of whether it succeeds, the target becomes temporarily immune for 1 day.
\nCritical Success The target is unaffected.
\nSuccess The target can't use reactions.
\nFailure The target is @Compendium[pf2e.conditionitems.Slowed]{Slowed 1} and can't use reactions.
\nCritical Failure As failure, and the target is also @Compendium[pf2e.conditionitems.Confused]{Confused} for 1 round. The confusion can't be extended, but the other effects can.
" + }, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "rules": [], + "slug": "visions-of-sin", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.090-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "eidolon", + "emotion", + "magical", + "mental" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.srfAyOXpUYxEz0gx", + "duplicateSource": null + }, + "folder": null, + "sort": 10400000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!srfAyOXpUYxEz0gx" +} diff --git a/packs/ac-features/Warrior_Construct_c2c6dqt5rMakwb4V.json b/packs/ac-features/Warrior_Construct_c2c6dqt5rMakwb4V.json new file mode 100644 index 0000000..20f44a9 --- /dev/null +++ b/packs/ac-features/Warrior_Construct_c2c6dqt5rMakwb4V.json @@ -0,0 +1,127 @@ +{ + "_id": "c2c6dqt5rMakwb4V", + "name": "Warrior Construct", + "type": "feat", + "img": "systems/pf2e/icons/spells/statuette.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 18, Dex 14, Con 16, Int 12, Wis 10, Cha 8; +2 AC (+3 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": -1, + "mode": "downgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 2, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 3 + } + ], + "slug": "warrior-construct", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.105-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 6800000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!c2c6dqt5rMakwb4V" +} diff --git a/packs/ac-features/Whirlwind_Maul_W4VCL85CO77MYkQH.json b/packs/ac-features/Whirlwind_Maul_W4VCL85CO77MYkQH.json new file mode 100644 index 0000000..fb79ba5 --- /dev/null +++ b/packs/ac-features/Whirlwind_Maul_W4VCL85CO77MYkQH.json @@ -0,0 +1,68 @@ +{ + "_id": "W4VCL85CO77MYkQH", + "name": "Whirlwind Maul", + "type": "action", + "img": "systems/pf2e/icons/actions/TwoActions.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.W4VCL85CO77MYkQH" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your eidolon lashes out in all directions. It makes a melee unarmed Strike against up to four enemies within reach. It can choose different unarmed attacks for each enemy. Each attack counts toward your multiple attack penalty, but you don't increase your penalty until the eidolon has made all its attacks.
" + }, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "rules": [], + "slug": "whirlwind-maul", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.213-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "eidolon" + ], + "rarity": "common" + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 2 + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.W4VCL85CO77MYkQH", + "duplicateSource": null + }, + "folder": null, + "sort": 5600000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!W4VCL85CO77MYkQH" +} diff --git a/packs/ac-features/Whirlwind_Maul_coBen1GA1czeBTOs.json b/packs/ac-features/Whirlwind_Maul_coBen1GA1czeBTOs.json new file mode 100644 index 0000000..b0b90d6 --- /dev/null +++ b/packs/ac-features/Whirlwind_Maul_coBen1GA1czeBTOs.json @@ -0,0 +1,84 @@ +{ + "name": "Whirlwind Maul", + "type": "feat", + "img": "systems/pf2e/icons/spells/whirlwind.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.0c7E7Hc86apMDLJj" + } + }, + "_id": "coBen1GA1czeBTOs", + "system": { + "description": { + "gm": "", + "value": "Your eidolon thrashes violently, damaging many foes in its reach. It gains the @Compendium[pf2e-animal-companions.AC-Features.W4VCL85CO77MYkQH]{Whirlwind Maul} activity.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.W4VCL85CO77MYkQH" + } + ], + "slug": "whirlwind-maul", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 17 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.102-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.0c7E7Hc86apMDLJj", + "duplicateSource": null + }, + "folder": null, + "sort": 7100000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!coBen1GA1czeBTOs" +} diff --git a/packs/ac-features/Wisdom_Boost_At61D9oWr39Ss6Ea.json b/packs/ac-features/Wisdom_Boost_At61D9oWr39Ss6Ea.json new file mode 100644 index 0000000..d25d711 --- /dev/null +++ b/packs/ac-features/Wisdom_Boost_At61D9oWr39Ss6Ea.json @@ -0,0 +1,100 @@ +{ + "_id": "At61D9oWr39Ss6Ea", + "name": "Wisdom Boost", + "type": "feat", + "img": "systems/pf2e/icons/spells/darkvision.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.DNpa1GdDXz8L4Fra" + } + }, + "system": { + "description": { + "gm": "", + "value": "" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": { + "brackets": [ + { + "end": 3, + "start": -4, + "value": 1 + }, + { + "start": 4, + "value": 0.5 + } + ], + "field": "actor|system.abilities.wis.mod" + }, + "mode": "add", + "path": "system.abilities.wis.mod", + "priority": 50 + } + ], + "slug": "wisdom-boost", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 5 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.237-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.DNpa1GdDXz8L4Fra", + "duplicateSource": null + }, + "folder": null, + "sort": 1800000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!At61D9oWr39Ss6Ea" +} diff --git a/packs/ac-features/Wrathful_Berserker_oqRBCMQDSicPRkVA.json b/packs/ac-features/Wrathful_Berserker_oqRBCMQDSicPRkVA.json new file mode 100644 index 0000000..db87c04 --- /dev/null +++ b/packs/ac-features/Wrathful_Berserker_oqRBCMQDSicPRkVA.json @@ -0,0 +1,127 @@ +{ + "_id": "oqRBCMQDSicPRkVA", + "name": "Wrathful Berserker", + "type": "feat", + "img": "systems/pf2e/icons/spells/blinding-fury.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 18, Dex 14, Con 16, Int 8, Wis 10, Cha 12; +2 AC (+3 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": -1, + "mode": "downgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 2, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 3 + } + ], + "slug": "wrathful-berserker", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.093-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 9600000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!oqRBCMQDSicPRkVA" +} diff --git a/packs/ac-features/Wrecker_Demon_ajYVsdmTxkHEXWVO.json b/packs/ac-features/Wrecker_Demon_ajYVsdmTxkHEXWVO.json new file mode 100644 index 0000000..f141592 --- /dev/null +++ b/packs/ac-features/Wrecker_Demon_ajYVsdmTxkHEXWVO.json @@ -0,0 +1,127 @@ +{ + "_id": "ajYVsdmTxkHEXWVO", + "name": "Wrecker Demon", + "type": "feat", + "img": "systems/pf2e/icons/spells/daemonic-pact.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.oQ4aTLTv0qU7sRGG" + } + }, + "system": { + "description": { + "gm": "", + "value": "Str 18, Dex 14, Con 16, Int 10, Wis 8, Cha 12; +2 AC (+3 Dex cap)
" + }, + "rules": [ + { + "key": "ActiveEffectLike", + "value": 4, + "mode": "upgrade", + "path": "system.abilities.str.mod" + }, + { + "key": "ActiveEffectLike", + "value": 2, + "mode": "upgrade", + "path": "system.abilities.dex.mod" + }, + { + "key": "ActiveEffectLike", + "value": 3, + "mode": "upgrade", + "path": "system.abilities.con.mod" + }, + { + "key": "ActiveEffectLike", + "value": 0, + "mode": "upgrade", + "path": "system.abilities.int.mod" + }, + { + "key": "ActiveEffectLike", + "value": -1, + "mode": "downgrade", + "path": "system.abilities.wis.mod" + }, + { + "key": "ActiveEffectLike", + "value": 1, + "mode": "upgrade", + "path": "system.abilities.cha.mod" + }, + { + "key": "FlatModifier", + "selector": "ac", + "type": "item", + "value": 2, + "fromEquipment": false + }, + { + "key": "DexterityModifierCap", + "value": 3 + } + ], + "slug": "wrecker-demon", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 1 + }, + "category": "ancestryfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.107-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Item.oQ4aTLTv0qU7sRGG", + "duplicateSource": null + }, + "folder": null, + "sort": 6500000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!ajYVsdmTxkHEXWVO" +} diff --git a/packs/ac-features/Wyrm_s_Breath_P7qw5V2ylPwCWMPB.json b/packs/ac-features/Wyrm_s_Breath_P7qw5V2ylPwCWMPB.json new file mode 100644 index 0000000..509a30a --- /dev/null +++ b/packs/ac-features/Wyrm_s_Breath_P7qw5V2ylPwCWMPB.json @@ -0,0 +1,84 @@ +{ + "name": "Wyrm's Breath", + "type": "feat", + "img": "systems/pf2e/icons/spells/gaseous-form.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Item.OpY6a94rSi4BRRce" + } + }, + "_id": "P7qw5V2ylPwCWMPB", + "system": { + "description": { + "gm": "", + "value": "Your eidolon can draw upon the power of wyrms to enhance the eidolon's Breath Weapon. Your eidolon gains the @Compendium[pf2e-animal-companions.AC-Features.dTwtFZU9OLpbWLno]{Wyrm's Breath} free action.
" + }, + "rules": [ + { + "key": "GrantItem", + "uuid": "Compendium.pf2e-animal-companions.AC-Features.Item.dTwtFZU9OLpbWLno" + } + ], + "slug": "wyrms-breath", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "level": { + "value": 17 + }, + "category": "classfeature", + "onlyLevel1": false, + "maxTakable": 1, + "actionType": { + "value": "passive" + }, + "actions": { + "value": null + }, + "prerequisites": { + "value": [] + }, + "location": null, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.219-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.3", + "coreVersion": "12.331", + "compendiumSource": "Item.OpY6a94rSi4BRRce", + "duplicateSource": null + }, + "folder": null, + "sort": 4500000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!P7qw5V2ylPwCWMPB" +} diff --git a/packs/ac-features/Wyrm_s_Breath_dTwtFZU9OLpbWLno.json b/packs/ac-features/Wyrm_s_Breath_dTwtFZU9OLpbWLno.json new file mode 100644 index 0000000..d669016 --- /dev/null +++ b/packs/ac-features/Wyrm_s_Breath_dTwtFZU9OLpbWLno.json @@ -0,0 +1,69 @@ +{ + "_id": "dTwtFZU9OLpbWLno", + "name": "Wyrm's Breath", + "type": "action", + "img": "systems/pf2e/icons/actions/FreeAction.webp", + "effects": [], + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Features.Item.dTwtFZU9OLpbWLno" + } + }, + "system": { + "description": { + "gm": "", + "value": "Frequency once per minute
\nYour eidolon gathers the power of the mightiest wyrms to make its magical breath even more spectacular. If your eidolon's next action is to use Breath Weapon, both the number of damage dice and area of the Breath Weapon are doubled.
" + }, + "source": { + "value": "Pathfinder Secrets of Magic" + }, + "rules": [], + "slug": "wyrms-breath", + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:01.101-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "traits": { + "value": [ + "concentrate", + "eidolon" + ], + "rarity": "common" + }, + "actionType": { + "value": "free" + }, + "category": "offensive", + "actions": { + "value": null + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "deathNote": false + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.3.1", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Features.Item.dTwtFZU9OLpbWLno", + "duplicateSource": null + }, + "folder": null, + "sort": 7200000, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_key": "!items!dTwtFZU9OLpbWLno" +} diff --git a/packs/ac-support-benefits/000274.ldb b/packs/ac-support-benefits/000274.ldb deleted file mode 100644 index 34be049..0000000 Binary files a/packs/ac-support-benefits/000274.ldb and /dev/null differ diff --git a/packs/ac-support-benefits/000280.ldb b/packs/ac-support-benefits/000280.ldb deleted file mode 100644 index ad93dc0..0000000 Binary files a/packs/ac-support-benefits/000280.ldb and /dev/null differ diff --git a/packs/ac-support-benefits/000283.ldb b/packs/ac-support-benefits/000283.ldb deleted file mode 100644 index 960fb06..0000000 Binary files a/packs/ac-support-benefits/000283.ldb and /dev/null differ diff --git a/packs/ac-support-benefits/000286.ldb b/packs/ac-support-benefits/000286.ldb deleted file mode 100644 index a55002c..0000000 Binary files a/packs/ac-support-benefits/000286.ldb and /dev/null differ diff --git a/packs/ac-support-benefits/000289.log b/packs/ac-support-benefits/000289.log deleted file mode 100644 index e69de29..0000000 diff --git a/packs/ac-support-benefits/Air_Elemental_Support_Benefit_aMFtyZ3QNQkduwqR.json b/packs/ac-support-benefits/Air_Elemental_Support_Benefit_aMFtyZ3QNQkduwqR.json new file mode 100644 index 0000000..b1b29ec --- /dev/null +++ b/packs/ac-support-benefits/Air_Elemental_Support_Benefit_aMFtyZ3QNQkduwqR.json @@ -0,0 +1,65 @@ +{ + "name": "Air Elemental Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your air elemental swirls around you with concealing gusts, making it harder for your foes to hit you and possibly giving you a moment to hide. Until the start of your next turn, if you hit with a Strike and deal damage to a creature in your air elemental's reach, you are @UUID[Compendium.pf2e.conditionitems.Item.DmAIPqOBomZ7H95W]{Concealed} to that creature until the start of your next turn.
" + }, + "rules": [], + "slug": null, + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": null + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "_id": "aMFtyZ3QNQkduwqR", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "flags": {}, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "folder": null, + "sort": 2200000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!aMFtyZ3QNQkduwqR" +} diff --git a/packs/ac-support-benefits/Antelope_Support_Benefit_yIB4qKV5sqcXlOmB.json b/packs/ac-support-benefits/Antelope_Support_Benefit_yIB4qKV5sqcXlOmB.json new file mode 100644 index 0000000..205e98b --- /dev/null +++ b/packs/ac-support-benefits/Antelope_Support_Benefit_yIB4qKV5sqcXlOmB.json @@ -0,0 +1,56 @@ +{ + "name": "Antelope Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The antelope impales your distracted foes. Until the start of your next turn, while riding your antelope, your Strikes that damage a creature in your antelope's reach also deal @Damage[1d6[persistent,bleed]] damage. If your antelope is nimble or savage, the persistent bleed damage increases to @Damage[2d6[persistent,bleed]].
" + }, + "rules": [], + "slug": "antelope-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": null, + "actions": { + "value": 1 + }, + "deathNote": true + }, + "_id": "yIB4qKV5sqcXlOmB", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 3000000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "b5b66460f97f820033226487c7953afdd09e55b4" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!yIB4qKV5sqcXlOmB" +} diff --git a/packs/ac-support-benefits/Ape_Support_Benefit_Qm0iwIYyy2gbnYXe.json b/packs/ac-support-benefits/Ape_Support_Benefit_Qm0iwIYyy2gbnYXe.json new file mode 100644 index 0000000..ae42d3d --- /dev/null +++ b/packs/ac-support-benefits/Ape_Support_Benefit_Qm0iwIYyy2gbnYXe.json @@ -0,0 +1,86 @@ +{ + "_id": "Qm0iwIYyy2gbnYXe", + "name": "Ape Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 5100000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.Qm0iwIYyy2gbnYXe" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your ape threatens your foes with menacing growls. Until the start of your next turn, if you hit and deal damage to a creature in your ape's reach, the creature becomes @Compendium[pf2e.conditionitems.Frightened]{Frightened 1}.
" + }, + "rules": [], + "slug": "ape-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "concentrate", + "emotion", + "fear", + "mental", + "visual" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.605-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.Qm0iwIYyy2gbnYXe", + "duplicateSource": null + }, + "_key": "!items!Qm0iwIYyy2gbnYXe" +} diff --git a/packs/ac-support-benefits/Arboreal_Sapling_Support_Benefit_bO92dKyk8V4aM0NP.json b/packs/ac-support-benefits/Arboreal_Sapling_Support_Benefit_bO92dKyk8V4aM0NP.json new file mode 100644 index 0000000..839c1ce --- /dev/null +++ b/packs/ac-support-benefits/Arboreal_Sapling_Support_Benefit_bO92dKyk8V4aM0NP.json @@ -0,0 +1,80 @@ +{ + "_id": "bO92dKyk8V4aM0NP", + "name": "Arboreal Sapling Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 5800000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.bO92dKyk8V4aM0NP" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your arboreal sapling plants roots around your foe, impeding its movement. Until the start of your next turn, if you hit and deal damage to a creature in your arboreal sapling's reach, the first square the creature moves into after taking that damage is difficult terrain.
" + }, + "rules": [], + "slug": "arboreal-sapling-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.601-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.bO92dKyk8V4aM0NP", + "duplicateSource": null + }, + "_key": "!items!bO92dKyk8V4aM0NP" +} diff --git a/packs/ac-support-benefits/Augdunar_Support_Benefit_vGAy81FNblv833jk.json b/packs/ac-support-benefits/Augdunar_Support_Benefit_vGAy81FNblv833jk.json new file mode 100644 index 0000000..151d4c1 --- /dev/null +++ b/packs/ac-support-benefits/Augdunar_Support_Benefit_vGAy81FNblv833jk.json @@ -0,0 +1,74 @@ +{ + "folder": null, + "name": "Augdunar Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The augdunar shifts its weight, proffering you an item. You Interact to draw a weapon or item that is being carried by the augdunar.
" + }, + "rules": [], + "slug": "", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Lost Omens: Highhelm" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.596-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "vGAy81FNblv833jk", + "sort": 7700000, + "_key": "!items!vGAy81FNblv833jk" +} diff --git a/packs/ac-support-benefits/Badger_Support_Benefit_nQwTbiyTHahsvmBi.json b/packs/ac-support-benefits/Badger_Support_Benefit_nQwTbiyTHahsvmBi.json new file mode 100644 index 0000000..2c78410 --- /dev/null +++ b/packs/ac-support-benefits/Badger_Support_Benefit_nQwTbiyTHahsvmBi.json @@ -0,0 +1,80 @@ +{ + "_id": "nQwTbiyTHahsvmBi", + "name": "Badger Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 6600000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.nQwTbiyTHahsvmBi" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your badger digs around your foe's position, interfering with its footing. Until the start of your next turn, if you hit and deal damage to a creature your badger threatens, the target can't use a Step action (unless it can Step through difficult terrain) until it moves from its current position.
" + }, + "rules": [], + "slug": "badger-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.598-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.nQwTbiyTHahsvmBi", + "duplicateSource": null + }, + "_key": "!items!nQwTbiyTHahsvmBi" +} diff --git a/packs/ac-support-benefits/Bat_Support_Benefit_Aj7JWFXIbF3qmvSX.json b/packs/ac-support-benefits/Bat_Support_Benefit_Aj7JWFXIbF3qmvSX.json new file mode 100644 index 0000000..2a10303 --- /dev/null +++ b/packs/ac-support-benefits/Bat_Support_Benefit_Aj7JWFXIbF3qmvSX.json @@ -0,0 +1,80 @@ +{ + "_id": "Aj7JWFXIbF3qmvSX", + "name": "Bat Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 4000000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.Aj7JWFXIbF3qmvSX" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your bat flaps around your foes' arms and faces, getting in the way of their attacks. Until the start of your next turn, creatures in your bat's reach that you damage with Strikes take a –1 circumstance penalty to their attack rolls.
" + }, + "rules": [], + "slug": "bat-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.609-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.Aj7JWFXIbF3qmvSX", + "duplicateSource": null + }, + "_key": "!items!Aj7JWFXIbF3qmvSX" +} diff --git a/packs/ac-support-benefits/Bear_Support_Benefit_AvDlo1mgxXd7ZA8W.json b/packs/ac-support-benefits/Bear_Support_Benefit_AvDlo1mgxXd7ZA8W.json new file mode 100644 index 0000000..e9e9c17 --- /dev/null +++ b/packs/ac-support-benefits/Bear_Support_Benefit_AvDlo1mgxXd7ZA8W.json @@ -0,0 +1,80 @@ +{ + "_id": "AvDlo1mgxXd7ZA8W", + "name": "Bear Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 4100000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.AvDlo1mgxXd7ZA8W" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your bear mauls your enemies when you create an opening. Until the start of your next turn, each time you hit a creature in the bear's reach with a Strike, the creature takes [[/r 1d8 # slashing damage]]{1d8 slashing damage} from the bear. If your bear is nimble or savage, the slashing damage increases to [[/r 2d8]]{2d8}.
" + }, + "rules": [], + "slug": "bear-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": null, + "actions": { + "value": null + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.608-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.AvDlo1mgxXd7ZA8W", + "duplicateSource": null + }, + "_key": "!items!AvDlo1mgxXd7ZA8W" +} diff --git a/packs/ac-support-benefits/Beetle_Support_Benefit_mFTzDCqNL5EdwlGm.json b/packs/ac-support-benefits/Beetle_Support_Benefit_mFTzDCqNL5EdwlGm.json new file mode 100644 index 0000000..c741aba --- /dev/null +++ b/packs/ac-support-benefits/Beetle_Support_Benefit_mFTzDCqNL5EdwlGm.json @@ -0,0 +1,77 @@ +{ + "name": "Beetle Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 6400000, + "flags": { + "core": { + "sourceId": "Item.IQdmE8Tmhpp8JaGt" + } + }, + "_id": "mFTzDCqNL5EdwlGm", + "system": { + "description": { + "gm": "", + "value": "Your beetle stomps around and smashes into foes, knocking them off balance or pushing them aside when you create an opening. Until the start of your next turn, while riding on your beetle, your Strikes that deal damage either make the target @Compendium[pf2e.conditionitems.Off-Guard]{Off-Guard} until the end of your next turn or move the target 5 feet away from the beetle (this is forced movement). The target chooses which effect occurs.
" + }, + "rules": [], + "slug": "beetle-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.598-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.IQdmE8Tmhpp8JaGt", + "duplicateSource": null + }, + "_key": "!items!mFTzDCqNL5EdwlGm" +} diff --git a/packs/ac-support-benefits/Bird_Support_Benefit_7rhcqwMDt2xqnI1N.json b/packs/ac-support-benefits/Bird_Support_Benefit_7rhcqwMDt2xqnI1N.json new file mode 100644 index 0000000..9c9571f --- /dev/null +++ b/packs/ac-support-benefits/Bird_Support_Benefit_7rhcqwMDt2xqnI1N.json @@ -0,0 +1,80 @@ +{ + "_id": "7rhcqwMDt2xqnI1N", + "name": "Bird Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 3600000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.7rhcqwMDt2xqnI1N" + } + }, + "system": { + "description": { + "gm": "", + "value": "The bird pecks at your foes' eyes when you create an opening. Until the start of your next turn, your Strikes that damage a creature that your bird threatens also deal [[/r 1d4[bleed]]] Damage, and the target is @Compendium[pf2e.conditionitems.Dazzled]{Dazzled} until it removes the bleed damage. If your bird is nimble or savage, the persistent bleed damage increases to [[/r 2d4[bleed]]]{2d4}.
" + }, + "rules": [], + "slug": "bird-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": null, + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.610-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.7rhcqwMDt2xqnI1N", + "duplicateSource": null + }, + "_key": "!items!7rhcqwMDt2xqnI1N" +} diff --git a/packs/ac-support-benefits/Boar_Support_Benefit_8re1d4lM0Dn4sLto.json b/packs/ac-support-benefits/Boar_Support_Benefit_8re1d4lM0Dn4sLto.json new file mode 100644 index 0000000..2df4914 --- /dev/null +++ b/packs/ac-support-benefits/Boar_Support_Benefit_8re1d4lM0Dn4sLto.json @@ -0,0 +1,80 @@ +{ + "_id": "8re1d4lM0Dn4sLto", + "name": "Boar Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 3800000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.8re1d4lM0Dn4sLto" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your boar gores your foes. Until the start of your next turn, your Strikes that damage a creature in your boar's reach also deal [[/r 1d6[bleed]]] damage. If your boar is nimble or savage, the persistent bleed damage increases to [[/r 2d6[bleed]]]{2d6}.
" + }, + "rules": [], + "slug": "boar-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.609-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.8re1d4lM0Dn4sLto", + "duplicateSource": null + }, + "_key": "!items!8re1d4lM0Dn4sLto" +} diff --git a/packs/ac-support-benefits/CURRENT b/packs/ac-support-benefits/CURRENT deleted file mode 100644 index 2c3afb9..0000000 --- a/packs/ac-support-benefits/CURRENT +++ /dev/null @@ -1 +0,0 @@ -MANIFEST-000288 diff --git a/packs/ac-support-benefits/Camel_Support_benefit_lzaNwsSxjVPH1nzn.json b/packs/ac-support-benefits/Camel_Support_benefit_lzaNwsSxjVPH1nzn.json new file mode 100644 index 0000000..7f6b7c1 --- /dev/null +++ b/packs/ac-support-benefits/Camel_Support_benefit_lzaNwsSxjVPH1nzn.json @@ -0,0 +1,80 @@ +{ + "_id": "lzaNwsSxjVPH1nzn", + "name": "Camel Support benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 6300000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.lzaNwsSxjVPH1nzn" + } + }, + "system": { + "description": { + "gm": "", + "value": "The camel makes a ranged attack to spit a long string of saliva at a foe within 10 feet. On a hit, the foe is @Compendium[pf2e.conditionitems.Dazzled]{Dazzled} for 1 round.
" + }, + "rules": [], + "slug": "camel-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "interaction", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.599-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.lzaNwsSxjVPH1nzn", + "duplicateSource": null + }, + "_key": "!items!lzaNwsSxjVPH1nzn" +} diff --git a/packs/ac-support-benefits/Capybara_Support_Benefit_Fl1VEpYhmScEEon8.json b/packs/ac-support-benefits/Capybara_Support_Benefit_Fl1VEpYhmScEEon8.json new file mode 100644 index 0000000..8f9c77a --- /dev/null +++ b/packs/ac-support-benefits/Capybara_Support_Benefit_Fl1VEpYhmScEEon8.json @@ -0,0 +1,80 @@ +{ + "_id": "Fl1VEpYhmScEEon8", + "name": "Capybara Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 4500000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.wf20kx6pPGBWwUn2" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your capybara assists you in battle. You gain a +1 circumstance bonus on your next attack roll to Strike a foe within your capybara's reach. The bonus lasts until the first time you use it or until the beginning of your next turn, whichever comes first.
" + }, + "rules": [], + "slug": "capybara-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.607-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.wf20kx6pPGBWwUn2", + "duplicateSource": null + }, + "_key": "!items!Fl1VEpYhmScEEon8" +} diff --git a/packs/ac-support-benefits/Cat_Support_Benefit_HCQXxqMtH81jE1W5.json b/packs/ac-support-benefits/Cat_Support_Benefit_HCQXxqMtH81jE1W5.json new file mode 100644 index 0000000..13b4bea --- /dev/null +++ b/packs/ac-support-benefits/Cat_Support_Benefit_HCQXxqMtH81jE1W5.json @@ -0,0 +1,80 @@ +{ + "_id": "HCQXxqMtH81jE1W5", + "name": "Cat Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 4600000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.HCQXxqMtH81jE1W5" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your cat throws your enemies off-balance when you create an opening. Until the start of your next turn, your Strikes that deal damage to a creature within your cat's reach make the target @Compendium[pf2e.conditionitems.Off-Guard]{Off-Guard} until the end of your next turn.
" + }, + "rules": [], + "slug": "cat-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.607-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.HCQXxqMtH81jE1W5", + "duplicateSource": null + }, + "_key": "!items!HCQXxqMtH81jE1W5" +} diff --git a/packs/ac-support-benefits/Cave_Gecko_Support_Benefit_nDUwRm0TOtc2EX0O.json b/packs/ac-support-benefits/Cave_Gecko_Support_Benefit_nDUwRm0TOtc2EX0O.json new file mode 100644 index 0000000..fc9e3d1 --- /dev/null +++ b/packs/ac-support-benefits/Cave_Gecko_Support_Benefit_nDUwRm0TOtc2EX0O.json @@ -0,0 +1,80 @@ +{ + "_id": "nDUwRm0TOtc2EX0O", + "name": "Cave Gecko Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 6500000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.nDUwRm0TOtc2EX0O" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your cave gecko helps you stay afoot, leaning into you and propping you up as you maneuver your opponent. Until the end of your next turn, as long as you are adjacent to your cave gecko, if you attempt to Disarm, Shove, or Trip an opponent and roll a critical failure, you get a failure instead.
" + }, + "rules": [], + "slug": "cave-gecko-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.598-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.nDUwRm0TOtc2EX0O", + "duplicateSource": null + }, + "_key": "!items!nDUwRm0TOtc2EX0O" +} diff --git a/packs/ac-support-benefits/Cave_Pterosaur_Support_Benefit_8b1G95eWa3DaTvw8.json b/packs/ac-support-benefits/Cave_Pterosaur_Support_Benefit_8b1G95eWa3DaTvw8.json new file mode 100644 index 0000000..992e236 --- /dev/null +++ b/packs/ac-support-benefits/Cave_Pterosaur_Support_Benefit_8b1G95eWa3DaTvw8.json @@ -0,0 +1,80 @@ +{ + "_id": "8b1G95eWa3DaTvw8", + "name": "Cave Pterosaur Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 3700000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.8b1G95eWa3DaTvw8" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your pterosaur expands its wings and makes distracting flapping motions. Any creature that would gain lesser cover from the pterosaur gains standard cover instead.
" + }, + "rules": [], + "slug": "cave-pterosaur-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "defensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.610-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.8b1G95eWa3DaTvw8", + "duplicateSource": null + }, + "_key": "!items!8b1G95eWa3DaTvw8" +} diff --git a/packs/ac-support-benefits/Chetamog_Support_Benefit_5y5rpOAEPs2fP0l4.json b/packs/ac-support-benefits/Chetamog_Support_Benefit_5y5rpOAEPs2fP0l4.json new file mode 100644 index 0000000..5779154 --- /dev/null +++ b/packs/ac-support-benefits/Chetamog_Support_Benefit_5y5rpOAEPs2fP0l4.json @@ -0,0 +1,60 @@ +{ + "name": "Chetamog Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "A chetamog ignores difficult terrain and greater difficult terrain from non-magical foliage.
" + }, + "rules": [], + "slug": "chetamog-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder #201: Pactbreaker", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "passive" + }, + "category": null, + "actions": { + "value": null + }, + "deathNote": false + }, + "img": "systems/pf2e/icons/actions/Passive.webp", + "folder": null, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": {}, + "exportSource": { + "world": "pf2e-test-world", + "system": "pf2e", + "coreVersion": "11.315", + "systemVersion": "5.15.1" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "5y5rpOAEPs2fP0l4", + "sort": 900000, + "_key": "!items!5y5rpOAEPs2fP0l4" +} diff --git a/packs/ac-support-benefits/Crocodile_Support_Benefit_yfjeiYMC27YGgoGW.json b/packs/ac-support-benefits/Crocodile_Support_Benefit_yfjeiYMC27YGgoGW.json new file mode 100644 index 0000000..6eaa63f --- /dev/null +++ b/packs/ac-support-benefits/Crocodile_Support_Benefit_yfjeiYMC27YGgoGW.json @@ -0,0 +1,80 @@ +{ + "_id": "yfjeiYMC27YGgoGW", + "name": "Crocodile Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 7500000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.yfjeiYMC27YGgoGW" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your crocodile clamps its jaws on your foe, refusing to let go. Until the start of your next turn, if your Strike damages a creature in your crocodile's reach, your crocodile can latch onto the creature. While thus attached, the crocodile can move along with the target whenever the target moves until the end of your next turn. Your crocodile can latch onto only one creature in this way, and it must release the creature to make a jaws Strike. If the target is smaller than the crocodile, it takes a –10-foot circumstance penalty to its Speeds and can't Fly while the crocodile is latched on.
" + }, + "rules": [], + "slug": "crocodile-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.594-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.yfjeiYMC27YGgoGW", + "duplicateSource": null + }, + "_key": "!items!yfjeiYMC27YGgoGW" +} diff --git a/packs/ac-support-benefits/Draft_Lizard_Support_Benefit_g3Wol5lNhQdxqs7t.json b/packs/ac-support-benefits/Draft_Lizard_Support_Benefit_g3Wol5lNhQdxqs7t.json new file mode 100644 index 0000000..9af4a61 --- /dev/null +++ b/packs/ac-support-benefits/Draft_Lizard_Support_Benefit_g3Wol5lNhQdxqs7t.json @@ -0,0 +1,74 @@ +{ + "folder": null, + "name": "Draft Lizard Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your draft lizard assists you in battle. You gain a +1 circumstance bonus on your next attack roll to Strike a foe within your draft lizard's reach. The bonus lasts until the first time you use it or until the beginning of your next turn, whichever comes first.
" + }, + "rules": [], + "slug": "", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Lost Omens: Highhelm" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.601-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "g3Wol5lNhQdxqs7t", + "sort": 3500000, + "_key": "!items!g3Wol5lNhQdxqs7t" +} diff --git a/packs/ac-support-benefits/Dromaeosaur_Support_Benefit_Du0wsxf7TitL6wSb.json b/packs/ac-support-benefits/Dromaeosaur_Support_Benefit_Du0wsxf7TitL6wSb.json new file mode 100644 index 0000000..2f87baa --- /dev/null +++ b/packs/ac-support-benefits/Dromaeosaur_Support_Benefit_Du0wsxf7TitL6wSb.json @@ -0,0 +1,80 @@ +{ + "_id": "Du0wsxf7TitL6wSb", + "name": "Dromaeosaur Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 4400000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.Du0wsxf7TitL6wSb" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your raptor constantly darts into flanking position. Until the start of your next turn, it counts as being in its space or an empty space of your choice within 10 feet when determining whether you and your companion are flanking; you can choose a different space for each of your attacks.
" + }, + "rules": [], + "slug": "dromaeosaur-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.607-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.Du0wsxf7TitL6wSb", + "duplicateSource": null + }, + "_key": "!items!Du0wsxf7TitL6wSb" +} diff --git a/packs/ac-support-benefits/Earth_Elemental_Support_Benefit_XteDiKFR58AkGXlP.json b/packs/ac-support-benefits/Earth_Elemental_Support_Benefit_XteDiKFR58AkGXlP.json new file mode 100644 index 0000000..2c9674e --- /dev/null +++ b/packs/ac-support-benefits/Earth_Elemental_Support_Benefit_XteDiKFR58AkGXlP.json @@ -0,0 +1,65 @@ +{ + "name": "Earth Elemental Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your earth elemental cracks the earth beneath your foe's feet, making it difficult for the foe to move. Until the start of your next turn, if you hit with a Strike and deal damage to a creature in your earth elemental's reach, the first square the creature moves into after taking that damage is difficult terrain.
" + }, + "rules": [], + "slug": null, + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": null + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "flags": {}, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "XteDiKFR58AkGXlP", + "folder": null, + "sort": 2100000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!XteDiKFR58AkGXlP" +} diff --git a/packs/ac-support-benefits/Elephant_Support_Benefit_r7QN2lUVWXlcynMW.json b/packs/ac-support-benefits/Elephant_Support_Benefit_r7QN2lUVWXlcynMW.json new file mode 100644 index 0000000..187b456 --- /dev/null +++ b/packs/ac-support-benefits/Elephant_Support_Benefit_r7QN2lUVWXlcynMW.json @@ -0,0 +1,77 @@ +{ + "_id": "r7QN2lUVWXlcynMW", + "name": "Elephant Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 6800000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.r7QN2lUVWXlcynMW" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your elephant trumpets noisily and menaces your enemy. The first creature within your elephant's reach that you hit and deal damage to before the start of your next turn has difficulty hearing as its ears ring from the noise, taking a -4 status penalty to purely auditory Perception checks until the end of your next turn.
" + }, + "rules": [], + "slug": "elephant-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #177: Burning Tundra" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.597-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.r7QN2lUVWXlcynMW", + "duplicateSource": null + }, + "_key": "!items!r7QN2lUVWXlcynMW" +} diff --git a/packs/ac-support-benefits/Elk_Support_Benefit_60lThr6OM9zZtqK2.json b/packs/ac-support-benefits/Elk_Support_Benefit_60lThr6OM9zZtqK2.json new file mode 100644 index 0000000..adef094 --- /dev/null +++ b/packs/ac-support-benefits/Elk_Support_Benefit_60lThr6OM9zZtqK2.json @@ -0,0 +1,56 @@ +{ + "name": "Elk Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your elk makes a threatening display by waving its antlers. Until the start of your next turn, if you hit and deal damage to a creature within your elk's reach, the creature is @UUID[Compendium.pf2e.conditionitems.Item.TBSHQspnbcqxsmjL]{Frightened 1}.
" + }, + "rules": [], + "slug": "elk-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false + }, + "_id": "60lThr6OM9zZtqK2", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 1000000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "8fdcb1a35b5249b1c1b0607a719d274e3b2d3c1c" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!60lThr6OM9zZtqK2" +} diff --git a/packs/ac-support-benefits/Fire_Elemental_Support_Benefit_NSdcXgEHVHdfJlkb.json b/packs/ac-support-benefits/Fire_Elemental_Support_Benefit_NSdcXgEHVHdfJlkb.json new file mode 100644 index 0000000..3c3fe4a --- /dev/null +++ b/packs/ac-support-benefits/Fire_Elemental_Support_Benefit_NSdcXgEHVHdfJlkb.json @@ -0,0 +1,65 @@ +{ + "name": "Fire Elemental Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your fire elemental burns your foes and sets them on fire. Until the start of your next turn, your Strikes that damage a creature in your fire elemental's reach also deal @Damage[1d6[persistent,fire]] damage. If your fire elemental is nimble or savage, the persistent fire damage increases to @Damage[2d6[persistent,fire]].
" + }, + "rules": [], + "slug": null, + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": null + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "flags": {}, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "NSdcXgEHVHdfJlkb", + "folder": null, + "sort": 1600000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!NSdcXgEHVHdfJlkb" +} diff --git a/packs/ac-support-benefits/Flying_Squirrel_Support_Benefit_V2kspaYOoLbHV5vb.json b/packs/ac-support-benefits/Flying_Squirrel_Support_Benefit_V2kspaYOoLbHV5vb.json new file mode 100644 index 0000000..47e1f80 --- /dev/null +++ b/packs/ac-support-benefits/Flying_Squirrel_Support_Benefit_V2kspaYOoLbHV5vb.json @@ -0,0 +1,56 @@ +{ + "name": "Flying Squirrel Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your flying squirrel wraps your foes in its skin flaps, hampering their movement. Until the end of your next turn, if your Strike damages a creature in your giant flying squirrel's reach, that creature takes a –10-foot circumstance penalty to its Speeds for 1 round.
" + }, + "rules": [], + "slug": "flying-squirrel-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false + }, + "_id": "V2kspaYOoLbHV5vb", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 1800000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "4fcae33e4adc1d86edb60b46f2c60733bb9adf0f" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!V2kspaYOoLbHV5vb" +} diff --git a/packs/ac-support-benefits/Ghost_Support_Benefit_4kkcfQdHAb4YTVNw.json b/packs/ac-support-benefits/Ghost_Support_Benefit_4kkcfQdHAb4YTVNw.json new file mode 100644 index 0000000..ff8c779 --- /dev/null +++ b/packs/ac-support-benefits/Ghost_Support_Benefit_4kkcfQdHAb4YTVNw.json @@ -0,0 +1,77 @@ +{ + "_id": "4kkcfQdHAb4YTVNw", + "name": "Ghost Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 3300000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.4kkcfQdHAb4YTVNw" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your ghost spooks and scares your foes as you attack them. Until the start of your next turn, if you hit and deal damage to a creature in your ghost's reach, the creature becomes @Compendium[pf2e.conditionitems.Frightened]{Frightened 1}.
" + }, + "rules": [], + "slug": "ghost-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.611-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.4kkcfQdHAb4YTVNw", + "duplicateSource": null + }, + "_key": "!items!4kkcfQdHAb4YTVNw" +} diff --git a/packs/ac-support-benefits/Giant_Eel_Support_Benefit_umNfDRmjldi67XCU.json b/packs/ac-support-benefits/Giant_Eel_Support_Benefit_umNfDRmjldi67XCU.json new file mode 100644 index 0000000..70767bc --- /dev/null +++ b/packs/ac-support-benefits/Giant_Eel_Support_Benefit_umNfDRmjldi67XCU.json @@ -0,0 +1,56 @@ +{ + "name": "Giant Eel Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your giant eel swims in confounding bursts. Until the start of your next turn, it counts as being in its space or an empty space of your choice within 10 feet when determining whether you and your companion are flanking; you can choose a different space for each of your attacks.
" + }, + "rules": [], + "slug": "giant-eel-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false + }, + "_id": "umNfDRmjldi67XCU", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 2800000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "e1557aa28146c1c1fac954ba9b212c31f91f259e" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!umNfDRmjldi67XCU" +} diff --git a/packs/ac-support-benefits/Giant_Frog_Support_Benefit_LscuCDZJ5oTscjmJ.json b/packs/ac-support-benefits/Giant_Frog_Support_Benefit_LscuCDZJ5oTscjmJ.json new file mode 100644 index 0000000..b6d1e0a --- /dev/null +++ b/packs/ac-support-benefits/Giant_Frog_Support_Benefit_LscuCDZJ5oTscjmJ.json @@ -0,0 +1,56 @@ +{ + "name": "Giant Frog Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your giant frog's tongue darts into openings you create and sticks to opponents to disrupt their movements. Until the start of your next turn, whenever you successfully Strike a creature your giant frog threatens, that creature can't use reactions triggered by your actions unless its level is higher than yours.
" + }, + "rules": [], + "slug": "giant-frog-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false + }, + "_id": "LscuCDZJ5oTscjmJ", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 1500000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "1e239ee16961663ed947f48dc93004ba91d1a7b2" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!LscuCDZJ5oTscjmJ" +} diff --git a/packs/ac-support-benefits/Giant_Wasp_Support_Benefit_V3XczB8r8fQfJIhe.json b/packs/ac-support-benefits/Giant_Wasp_Support_Benefit_V3XczB8r8fQfJIhe.json new file mode 100644 index 0000000..fa2b996 --- /dev/null +++ b/packs/ac-support-benefits/Giant_Wasp_Support_Benefit_V3XczB8r8fQfJIhe.json @@ -0,0 +1,56 @@ +{ + "name": "Giant Wasp Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your wasp drones its wings, unnerving your enemies. Until the start of your next turn, if you hit and deal damage to a creature in your giant wasp's reach, the creature becomes @UUID[Compendium.pf2e.conditionitems.Item.TBSHQspnbcqxsmjL]{Frightened 1}
" + }, + "rules": [], + "slug": "giant-wasp-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": null, + "actions": { + "value": 1 + }, + "deathNote": false + }, + "_id": "V3XczB8r8fQfJIhe", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 1900000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "f37630f664322f9b1713530b02034024397ce64c" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!V3XczB8r8fQfJIhe" +} diff --git a/packs/ac-support-benefits/Giraffe_Support_Benefit_LcAJTLzLDcIrQ7KQ.json b/packs/ac-support-benefits/Giraffe_Support_Benefit_LcAJTLzLDcIrQ7KQ.json new file mode 100644 index 0000000..0177819 --- /dev/null +++ b/packs/ac-support-benefits/Giraffe_Support_Benefit_LcAJTLzLDcIrQ7KQ.json @@ -0,0 +1,56 @@ +{ + "name": "Giraffe Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your giraffe pushes against opponents with its long neck. While riding on your giraffe this turn, you do not need a hand free to @UUID[Compendium.pf2e.actionspf2e.Item.7blmbDrQFNfdT731]{Shove} and any foe you successfully Shove moves 10 feet (15 feet on a critical success).
" + }, + "rules": [], + "slug": "giraffe-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false + }, + "_id": "LcAJTLzLDcIrQ7KQ", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 1400000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "23770cd10e34a91c49d9dc3a5ff6a6279c749aec" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!LcAJTLzLDcIrQ7KQ" +} diff --git a/packs/ac-support-benefits/Goat_Support_Benefit_ugEUIh47YrNUIsnd.json b/packs/ac-support-benefits/Goat_Support_Benefit_ugEUIh47YrNUIsnd.json new file mode 100644 index 0000000..5df7f33 --- /dev/null +++ b/packs/ac-support-benefits/Goat_Support_Benefit_ugEUIh47YrNUIsnd.json @@ -0,0 +1,74 @@ +{ + "folder": null, + "name": "Goat Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your goat boosts you up a wall, allowing you to reach greater heights. You climb up a surface as if you had rolled a success on a @Compendium[pf2e.actionspf2e.pprgrYQ1QnIDGZiy]{Climb} action.
" + }, + "rules": [], + "slug": "", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Lost Omens: Highhelm" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.596-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "ugEUIh47YrNUIsnd", + "sort": 2700000, + "_key": "!items!ugEUIh47YrNUIsnd" +} diff --git a/packs/ac-support-benefits/Griffon_Support_Benefit_ShKTegi69Hizn0vB.json b/packs/ac-support-benefits/Griffon_Support_Benefit_ShKTegi69Hizn0vB.json new file mode 100644 index 0000000..35d0bc6 --- /dev/null +++ b/packs/ac-support-benefits/Griffon_Support_Benefit_ShKTegi69Hizn0vB.json @@ -0,0 +1,58 @@ +{ + "name": "Griffon Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your griffon adopts a noble pose, inspiring you to defy the horrors before you. Until the start of your next turn, you and your griffon gain a +2 circumstance bonus to saves against emotion effects.
" + }, + "rules": [], + "slug": "griffon-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "b2d1c85916efcb0426848bc9e35e197a4d7edc92", + "sourceId": "Compendium.pf2e-animal-companions.AC-Advanced-Maneuvers.Item.NkPqZnD5sxk94jBJ" + }, + "core": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "ShKTegi69Hizn0vB", + "sort": 800000, + "_key": "!items!ShKTegi69Hizn0vB" +} diff --git a/packs/ac-support-benefits/Hippocampus_Support_Benefit_t1KMf7rDzJJ2vWhe.json b/packs/ac-support-benefits/Hippocampus_Support_Benefit_t1KMf7rDzJJ2vWhe.json new file mode 100644 index 0000000..b0a02f5 --- /dev/null +++ b/packs/ac-support-benefits/Hippocampus_Support_Benefit_t1KMf7rDzJJ2vWhe.json @@ -0,0 +1,56 @@ +{ + "name": "Hippocampus Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Until the start of your next turn, if you're mounted on your hippocampus and moved 10 feet or more on the action before a melee Strike, add a circumstance bonus to damage for that Strike equal to twice the number of weapon damage dice. If your weapon already has the jousting weapon trait, increase the trait's damage bonus by 2 per die instead.
" + }, + "rules": [], + "slug": "hippocampus-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false + }, + "_id": "t1KMf7rDzJJ2vWhe", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 400000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "1ad3e581ab9c9a3fa3da0ae21bc3701786d19b53" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!t1KMf7rDzJJ2vWhe" +} diff --git a/packs/ac-support-benefits/Hippogriff_Support_Benefit_cJBAKsVacLTIiPcz.json b/packs/ac-support-benefits/Hippogriff_Support_Benefit_cJBAKsVacLTIiPcz.json new file mode 100644 index 0000000..8285f35 --- /dev/null +++ b/packs/ac-support-benefits/Hippogriff_Support_Benefit_cJBAKsVacLTIiPcz.json @@ -0,0 +1,56 @@ +{ + "name": "Hippogriff Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Until the start of your next turn, if you're mounted on your hippogriff and moved 10 feet or more on the action before a melee Strike, add a circumstance bonus to damage for that Strike equal to twice the number of weapon damage dice. If your weapon already has the jousting weapon trait, increase the trait's damage bonus by 2 per die instead.
" + }, + "rules": [], + "slug": "hippogriff-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false + }, + "_id": "cJBAKsVacLTIiPcz", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 300000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "dab16f103f9502a2f058f562378d2f7a08e5ad0c" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!cJBAKsVacLTIiPcz" +} diff --git a/packs/ac-support-benefits/Horse_Support_Benefit_wf20kx6pPGBWwUn2.json b/packs/ac-support-benefits/Horse_Support_Benefit_wf20kx6pPGBWwUn2.json new file mode 100644 index 0000000..85b7ac2 --- /dev/null +++ b/packs/ac-support-benefits/Horse_Support_Benefit_wf20kx6pPGBWwUn2.json @@ -0,0 +1,80 @@ +{ + "_id": "wf20kx6pPGBWwUn2", + "name": "Horse Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 7100000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.wf20kx6pPGBWwUn2" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your horse adds momentum to your charge. Until the start of your next turn, if you moved at least 10 feet on the action before your Strike, add a circumstance bonus to damage to that Strike equal to twice the number of damage dice. If your weapon already has the jousting weapon trait, increase the trait's damage bonus by 2 per die instead.
" + }, + "rules": [], + "slug": "horse-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.596-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.wf20kx6pPGBWwUn2", + "duplicateSource": null + }, + "_key": "!items!wf20kx6pPGBWwUn2" +} diff --git a/packs/ac-support-benefits/Hyena_Support_Benefit_wlh1poSMLK9wk2Nw.json b/packs/ac-support-benefits/Hyena_Support_Benefit_wlh1poSMLK9wk2Nw.json new file mode 100644 index 0000000..0a8672e --- /dev/null +++ b/packs/ac-support-benefits/Hyena_Support_Benefit_wlh1poSMLK9wk2Nw.json @@ -0,0 +1,80 @@ +{ + "_id": "wlh1poSMLK9wk2Nw", + "name": "Hyena Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 7200000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.wlh1poSMLK9wk2Nw" + } + }, + "system": { + "description": { + "gm": "", + "value": "The hyena mockingly yowls at your enemies and bites at them when you create an opening. Until the start of your next turn, each time you hit a creature in the hyena's reach with a Strike, the creature becomes @Compendium[pf2e.conditionitems.Frightened]{Frightened 1}.
" + }, + "rules": [], + "slug": "hyena-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.595-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.wlh1poSMLK9wk2Nw", + "duplicateSource": null + }, + "_key": "!items!wlh1poSMLK9wk2Nw" +} diff --git a/packs/ac-support-benefits/Kangaroo_Support_Benefit_oawpSPdSj1hSkSYk.json b/packs/ac-support-benefits/Kangaroo_Support_Benefit_oawpSPdSj1hSkSYk.json new file mode 100644 index 0000000..7a28fc3 --- /dev/null +++ b/packs/ac-support-benefits/Kangaroo_Support_Benefit_oawpSPdSj1hSkSYk.json @@ -0,0 +1,56 @@ +{ + "name": "Kangaroo Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your kangaroo bounces and shifts back and forth. Until the start of your next turn, it counts as being in its space or an empty space of your choice within 5 feet when determining whether you and your companion are flanking; you can choose a different space for each of your attacks.
" + }, + "rules": [], + "slug": "kangaroo-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "passive" + }, + "category": "offensive", + "actions": { + "value": null + }, + "deathNote": false + }, + "_id": "oawpSPdSj1hSkSYk", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 2500000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "8aebf8e1b19bf2c699e0719605d463b85f02709a" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!oawpSPdSj1hSkSYk" +} diff --git a/packs/ac-support-benefits/LOG b/packs/ac-support-benefits/LOG deleted file mode 100644 index 9ff3038..0000000 --- a/packs/ac-support-benefits/LOG +++ /dev/null @@ -1,3 +0,0 @@ -2024/05/25-18:34:59.925 39a0 Recovering log #287 -2024/05/25-18:34:59.928 39a0 Delete type=0 #287 -2024/05/25-18:34:59.928 39a0 Delete type=3 #285 diff --git a/packs/ac-support-benefits/LOG.old b/packs/ac-support-benefits/LOG.old deleted file mode 100644 index ade5f4a..0000000 --- a/packs/ac-support-benefits/LOG.old +++ /dev/null @@ -1,5 +0,0 @@ -2024/05/23-20:18:10.983 717c Recovering log #284 -2024/05/23-20:18:10.983 717c Level-0 table #286: started -2024/05/23-20:18:10.989 717c Level-0 table #286: 63023 bytes OK -2024/05/23-20:18:11.002 717c Delete type=0 #284 -2024/05/23-20:18:11.002 717c Delete type=3 #282 diff --git a/packs/ac-support-benefits/Legchair_Support_Benefit_kZvomyJobGrDs1MU.json b/packs/ac-support-benefits/Legchair_Support_Benefit_kZvomyJobGrDs1MU.json new file mode 100644 index 0000000..afad9e3 --- /dev/null +++ b/packs/ac-support-benefits/Legchair_Support_Benefit_kZvomyJobGrDs1MU.json @@ -0,0 +1,80 @@ +{ + "_id": "kZvomyJobGrDs1MU", + "name": "Legchair Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 6100000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.wf20kx6pPGBWwUn2" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your legchair moves its limbs in the way of enemy attacks. You gain @Compendium[pf2e.equipment-effects.lKkQvMzNG55Yhyef]{Lesser Cover} from your legchair against all attacks, not just ones where the legchair would be in the way.
" + }, + "rules": [], + "slug": "legchair-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.599-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.wf20kx6pPGBWwUn2", + "duplicateSource": null + }, + "_key": "!items!kZvomyJobGrDs1MU" +} diff --git a/packs/ac-support-benefits/MANIFEST-000288 b/packs/ac-support-benefits/MANIFEST-000288 deleted file mode 100644 index 126da52..0000000 Binary files a/packs/ac-support-benefits/MANIFEST-000288 and /dev/null differ diff --git a/packs/ac-support-benefits/Metal_Elemental_Support_Benefit_SZD1hU2ageIDw4To.json b/packs/ac-support-benefits/Metal_Elemental_Support_Benefit_SZD1hU2ageIDw4To.json new file mode 100644 index 0000000..599048d --- /dev/null +++ b/packs/ac-support-benefits/Metal_Elemental_Support_Benefit_SZD1hU2ageIDw4To.json @@ -0,0 +1,65 @@ +{ + "name": "Metal Elemental Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your metal elemental pierces an enemy with metal spikes that cause it to bleed. Until the start of your next turn, your Strikes that damage a creature in your metal elemental's reach also deal @Damage[1d6[persistent,bleed]] damage. If your metal elemental is nimble or savage, the persistent bleed damage increases to @Damage[2d6[persistent,bleed]].
" + }, + "rules": [], + "slug": null, + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": null + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "flags": {}, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "SZD1hU2ageIDw4To", + "folder": null, + "sort": 1700000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!SZD1hU2ageIDw4To" +} diff --git a/packs/ac-support-benefits/Mole_Support_Benefit_vvuB2kEzRYSs4IpH.json b/packs/ac-support-benefits/Mole_Support_Benefit_vvuB2kEzRYSs4IpH.json new file mode 100644 index 0000000..a763703 --- /dev/null +++ b/packs/ac-support-benefits/Mole_Support_Benefit_vvuB2kEzRYSs4IpH.json @@ -0,0 +1,56 @@ +{ + "name": "Mole Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your mole leaps into the ground and burrows beneath your foes, disturbing their footing. Until the end of your next turn, if you hit and damage a creature adjacent to your mole, that creature is @UUID[Compendium.pf2e.conditionitems.Item.i3OJZU2nk64Df3xm]{Clumsy 1} until it moves from its current position.
" + }, + "rules": [], + "slug": "mole-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "defensive", + "actions": { + "value": 1 + }, + "deathNote": false + }, + "_id": "vvuB2kEzRYSs4IpH", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 2900000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "19d0a192df965aa9ad6bd505b88b847e46957ba6" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!vvuB2kEzRYSs4IpH" +} diff --git a/packs/ac-support-benefits/Mongoose_Support_Benefit_D8uiA6qJN2NfxDjx.json b/packs/ac-support-benefits/Mongoose_Support_Benefit_D8uiA6qJN2NfxDjx.json new file mode 100644 index 0000000..e3dd2f8 --- /dev/null +++ b/packs/ac-support-benefits/Mongoose_Support_Benefit_D8uiA6qJN2NfxDjx.json @@ -0,0 +1,56 @@ +{ + "name": "Mongoose Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "AThe mongoose bounds to your side, alert and at the ready. Until the end of your next turn, creatures adjacent to the mongoose cannot flank you.
" + }, + "rules": [], + "slug": "mongoose-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "passive" + }, + "category": "offensive", + "actions": { + "value": null + }, + "deathNote": false + }, + "_id": "D8uiA6qJN2NfxDjx", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 1200000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "f20fe6de346a00019646f8e8c441cfdec0a771c1" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!D8uiA6qJN2NfxDjx" +} diff --git a/packs/ac-support-benefits/Monitor_Lizard_Support_Benefit_2Jaz98WiQMNnqKCD.json b/packs/ac-support-benefits/Monitor_Lizard_Support_Benefit_2Jaz98WiQMNnqKCD.json new file mode 100644 index 0000000..d70b1a6 --- /dev/null +++ b/packs/ac-support-benefits/Monitor_Lizard_Support_Benefit_2Jaz98WiQMNnqKCD.json @@ -0,0 +1,80 @@ +{ + "_id": "2Jaz98WiQMNnqKCD", + "name": "Monitor Lizard Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 3100000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.2Jaz98WiQMNnqKCD" + } + }, + "system": { + "description": { + "gm": "", + "value": "The monitor lizard distracts an adjacent opponent with snapping jaws and rapid movements. Until the start of your next turn, if your Strike damages a foe, any time the foe attempts an action with the manipulate trait until the end of your next turn, it must attempt a Flat Check. On a failure, the action is disrupted.
" + }, + "rules": [], + "slug": "monitor-lizard-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.611-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.2Jaz98WiQMNnqKCD", + "duplicateSource": null + }, + "_key": "!items!2Jaz98WiQMNnqKCD" +} diff --git a/packs/ac-support-benefits/Moth_Support_Benefit_9Y5QKMvy0KsliE29.json b/packs/ac-support-benefits/Moth_Support_Benefit_9Y5QKMvy0KsliE29.json new file mode 100644 index 0000000..5964651 --- /dev/null +++ b/packs/ac-support-benefits/Moth_Support_Benefit_9Y5QKMvy0KsliE29.json @@ -0,0 +1,80 @@ +{ + "_id": "9Y5QKMvy0KsliE29", + "name": "Moth Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 3900000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.wf20kx6pPGBWwUn2" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your moth releases a shower of dust to reveal your foes. Until the start of your next turn, if you damage a @Compendium[pf2e.conditionitems.Concealed]{Concealed} or @Compendium[pf2e.conditionitems.Hidden]{Hidden} creature in your moth's reach with a Strike, that creature requires only a Flat Check to target it if it's concealed, or Flat Check if it's hidden. The reduced DC lasts until the end of your next turn.
" + }, + "rules": [], + "slug": "moth-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.609-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.wf20kx6pPGBWwUn2", + "duplicateSource": null + }, + "_key": "!items!9Y5QKMvy0KsliE29" +} diff --git a/packs/ac-support-benefits/Oozeform_Chair_Support_Benefit_hC0YEa4Z8I4XxV3r.json b/packs/ac-support-benefits/Oozeform_Chair_Support_Benefit_hC0YEa4Z8I4XxV3r.json new file mode 100644 index 0000000..50505fe --- /dev/null +++ b/packs/ac-support-benefits/Oozeform_Chair_Support_Benefit_hC0YEa4Z8I4XxV3r.json @@ -0,0 +1,74 @@ +{ + "folder": null, + "name": "Oozeform Chair Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "A pseudopod extends out from your chair, retrieving an unattended object within 15 feet. If you don't have a hand free to receive the object, the chair drops it in your space.
" + }, + "rules": [], + "slug": "", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Treasure Vault" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.600-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "hC0YEa4Z8I4XxV3r", + "sort": 2300000, + "_key": "!items!hC0YEa4Z8I4XxV3r" +} diff --git a/packs/ac-support-benefits/Orca_Support_Benefit_EkyB80qlJ6VbC7bi.json b/packs/ac-support-benefits/Orca_Support_Benefit_EkyB80qlJ6VbC7bi.json new file mode 100644 index 0000000..2c35fba --- /dev/null +++ b/packs/ac-support-benefits/Orca_Support_Benefit_EkyB80qlJ6VbC7bi.json @@ -0,0 +1,56 @@ +{ + "name": "Orca Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your orca attempts to drag down unwary swimmers. Until the start of your next turn, each time you hit a swimming creature in the orca's reach, the target is pulled 5 feet down into the water. This is forced movement.
" + }, + "rules": [], + "slug": "orca-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false + }, + "_id": "EkyB80qlJ6VbC7bi", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 200000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "e5896bc20210666a35e5691a41c92a258163ccfb" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!EkyB80qlJ6VbC7bi" +} diff --git a/packs/ac-support-benefits/Pangolin_Support_Benefit_QiQvx7jtfrkGnf13.json b/packs/ac-support-benefits/Pangolin_Support_Benefit_QiQvx7jtfrkGnf13.json new file mode 100644 index 0000000..223476c --- /dev/null +++ b/packs/ac-support-benefits/Pangolin_Support_Benefit_QiQvx7jtfrkGnf13.json @@ -0,0 +1,80 @@ +{ + "_id": "QiQvx7jtfrkGnf13", + "name": "Pangolin Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 5000000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.wf20kx6pPGBWwUn2" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your pangolin tears at your enemies with its serrated plates. Until the start of your next turn, your Strikes that damage a creature in your pangolin's reach also deal [[/r 1d6[bleed]]] damage. If your pangolin is nimble or savage, the persistent bleed damage increases to [[/r 2d6[bleed]]]{2d6}.
" + }, + "rules": [], + "slug": "pangolin-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.606-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.wf20kx6pPGBWwUn2", + "duplicateSource": null + }, + "_key": "!items!QiQvx7jtfrkGnf13" +} diff --git a/packs/ac-support-benefits/Rhinoceros_Support_Benefit_kecawjDhBFz5QA4f.json b/packs/ac-support-benefits/Rhinoceros_Support_Benefit_kecawjDhBFz5QA4f.json new file mode 100644 index 0000000..9bffe12 --- /dev/null +++ b/packs/ac-support-benefits/Rhinoceros_Support_Benefit_kecawjDhBFz5QA4f.json @@ -0,0 +1,77 @@ +{ + "_id": "kecawjDhBFz5QA4f", + "name": "Rhinoceros Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 6200000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.kecawjDhBFz5QA4f" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your rhino swings its heavy head to unbalance your enemy. The first creature within your rhino's reach that you hit and deal damage to before the start of your next turn becomes @Compendium[pf2e.conditionitems.Clumsy]{Clumsy 1} until the end of your next turn.
" + }, + "rules": [], + "slug": "rhinoceros-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #177: Burning Tundra" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.599-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.kecawjDhBFz5QA4f", + "duplicateSource": null + }, + "_key": "!items!kecawjDhBFz5QA4f" +} diff --git a/packs/ac-support-benefits/Riding_Drake_Support_Benefit_C41lCXjerYjMyOTI.json b/packs/ac-support-benefits/Riding_Drake_Support_Benefit_C41lCXjerYjMyOTI.json new file mode 100644 index 0000000..a587a16 --- /dev/null +++ b/packs/ac-support-benefits/Riding_Drake_Support_Benefit_C41lCXjerYjMyOTI.json @@ -0,0 +1,80 @@ +{ + "_id": "C41lCXjerYjMyOTI", + "name": "Riding Drake Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 4200000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.C41lCXjerYjMyOTI" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your drake snorts fire in your foes' faces. Until the start of your next turn, each time you Strike while riding the drake and hit a creature in the drake's reach, the creature takes [[/r 1d4 # fire damage]]{1d4 fire damage} from the drake. If your drake is nimble or savage, the fire damage increases to [[/r 2d4 # fire]]{2d4}.
" + }, + "rules": [], + "slug": "riding-drake-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.608-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.C41lCXjerYjMyOTI", + "duplicateSource": null + }, + "_key": "!items!C41lCXjerYjMyOTI" +} diff --git a/packs/ac-support-benefits/Riding_Tarantula_Support_Benefit_NKgFIZQYkL3bb6xn.json b/packs/ac-support-benefits/Riding_Tarantula_Support_Benefit_NKgFIZQYkL3bb6xn.json new file mode 100644 index 0000000..1331c3d --- /dev/null +++ b/packs/ac-support-benefits/Riding_Tarantula_Support_Benefit_NKgFIZQYkL3bb6xn.json @@ -0,0 +1,56 @@ +{ + "name": "Riding Tarantula Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your riding tarantula flicks urticating hairs at your foe, disrupting their focus. Until the start of your next turn, if you hit and deal damage to a creature your riding tarantula threatens, the target must succeed at a @Check[type:flat|dc:5] whenever it takes a concentrate action or that action is lost.
" + }, + "rules": [], + "slug": "riding-tarantula-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false + }, + "_id": "NKgFIZQYkL3bb6xn", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 500000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "546d7a610b0985a86f70865462c9455176a17620" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!NKgFIZQYkL3bb6xn" +} diff --git a/packs/ac-support-benefits/Roc_Support_Benefit_R0e3jHpB7nTzIUPm.json b/packs/ac-support-benefits/Roc_Support_Benefit_R0e3jHpB7nTzIUPm.json new file mode 100644 index 0000000..bc7aed2 --- /dev/null +++ b/packs/ac-support-benefits/Roc_Support_Benefit_R0e3jHpB7nTzIUPm.json @@ -0,0 +1,56 @@ +{ + "name": "Roc Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your roc beats its wings, creating a powerful downdraft. Until the start of your next turn, your Strikes that damage a creature that your roc threatens push the target 5 feet away from your roc.
" + }, + "rules": [], + "slug": "roc-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false + }, + "_id": "R0e3jHpB7nTzIUPm", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 600000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "9b0193f23f6873024604cea77f01e5dce4a86507" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!R0e3jHpB7nTzIUPm" +} diff --git a/packs/ac-support-benefits/Rootball_Chair_Support_Benefit_hjvjnSzrslebg0dk.json b/packs/ac-support-benefits/Rootball_Chair_Support_Benefit_hjvjnSzrslebg0dk.json new file mode 100644 index 0000000..81ad6d0 --- /dev/null +++ b/packs/ac-support-benefits/Rootball_Chair_Support_Benefit_hjvjnSzrslebg0dk.json @@ -0,0 +1,74 @@ +{ + "folder": null, + "name": "Rootball Chair Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your rootball chair moves smoothly over most terrain, thanks to its many tendrils. Your rootball chair ignores difficult terrain.
" + }, + "rules": [], + "slug": "", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "passive" + }, + "category": "offensive", + "actions": { + "value": "" + }, + "deathNote": false, + "source": { + "value": "Pathfinder Treasure Vault" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.600-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/Passive.webp", + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": {} + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "hjvjnSzrslebg0dk", + "sort": 2400000, + "_key": "!items!hjvjnSzrslebg0dk" +} diff --git a/packs/ac-support-benefits/Salamander_Support_Benefit_XWRd0x7AvdXoeJi3.json b/packs/ac-support-benefits/Salamander_Support_Benefit_XWRd0x7AvdXoeJi3.json new file mode 100644 index 0000000..afaff6d --- /dev/null +++ b/packs/ac-support-benefits/Salamander_Support_Benefit_XWRd0x7AvdXoeJi3.json @@ -0,0 +1,56 @@ +{ + "name": "Salamander Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "AYour salamander secretes a poisonous, viscous fluid from its skin. Until the start of your next turn, if you or your salamander are hit by a creature adjacent to the salamander, that creature takes @Damage[1d6[poison]] damage. This damage increases to @Damage[2d6[poison]] if the salamander is nimble or savage.
" + }, + "rules": [], + "slug": "salamander-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false + }, + "_id": "XWRd0x7AvdXoeJi3", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 2000000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "d20b6e72af5f785744b275506a6162d23145c28d" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!XWRd0x7AvdXoeJi3" +} diff --git a/packs/ac-support-benefits/Scorpion_Support_Benefit_xtXdDC5KrUqh7eCu.json b/packs/ac-support-benefits/Scorpion_Support_Benefit_xtXdDC5KrUqh7eCu.json new file mode 100644 index 0000000..3e0dd52 --- /dev/null +++ b/packs/ac-support-benefits/Scorpion_Support_Benefit_xtXdDC5KrUqh7eCu.json @@ -0,0 +1,80 @@ +{ + "_id": "xtXdDC5KrUqh7eCu", + "name": "Scorpion Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 7300000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.xtXdDC5KrUqh7eCu" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your scorpion drips poison from its stinger when you create an opening. Until the start of your next turn, your Strikes that damage a creature in your scorpion's reach also deal [[/r 1d6[persistent,poison damage]]]{1d6} damage. If your scorpion is nimble or savage, the persistent poison damage increases to [[/r 2d6[persistent,poison damage]]]{2d6}.
" + }, + "rules": [], + "slug": "scorpion-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.595-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.xtXdDC5KrUqh7eCu", + "duplicateSource": null + }, + "_key": "!items!xtXdDC5KrUqh7eCu" +} diff --git a/packs/ac-support-benefits/Shadow_Hound_Support_Benefit_h65iGxPkfrT8DdPv.json b/packs/ac-support-benefits/Shadow_Hound_Support_Benefit_h65iGxPkfrT8DdPv.json new file mode 100644 index 0000000..1cba118 --- /dev/null +++ b/packs/ac-support-benefits/Shadow_Hound_Support_Benefit_h65iGxPkfrT8DdPv.json @@ -0,0 +1,77 @@ +{ + "_id": "h65iGxPkfrT8DdPv", + "name": "Shadow Hound Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 5900000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.h65iGxPkfrT8DdPv" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your shadow hound shrouds your foes in shadow when you leave an opening. Until the start of your next turn, when you damage a creature with a Strike and that creature is within reach of your shadow hound, both you and your shadow hound become @Compendium[pf2e.conditionitems.Concealed]{Concealed} to the creature until the end of your next turn.
" + }, + "rules": [], + "slug": "shadow-hound-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.600-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "vD7HMkL8eJh8gXaP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.h65iGxPkfrT8DdPv", + "duplicateSource": null + }, + "_key": "!items!h65iGxPkfrT8DdPv" +} diff --git a/packs/ac-support-benefits/Shark_Support_Benefit_YsLLV4J7L6fgzTXf.json b/packs/ac-support-benefits/Shark_Support_Benefit_YsLLV4J7L6fgzTXf.json new file mode 100644 index 0000000..b2161ad --- /dev/null +++ b/packs/ac-support-benefits/Shark_Support_Benefit_YsLLV4J7L6fgzTXf.json @@ -0,0 +1,80 @@ +{ + "_id": "YsLLV4J7L6fgzTXf", + "name": "Shark Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 5500000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.YsLLV4J7L6fgzTXf" + } + }, + "system": { + "description": { + "gm": "", + "value": "When your shark senses blood, it tears into your enemies. Until the start of your next turn, each time you hit a creature in the shark's reach with a Strike and deal slashing or piercing damage, the creature takes [[/r 1d8 # slashing damage]]{1d8 slashing damage} from the shark. If your shark is nimble or savage, the slashing damage increases to [[/r 2d8 # slashing damage]]{2d8}.
" + }, + "rules": [], + "slug": "shark-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.602-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.YsLLV4J7L6fgzTXf", + "duplicateSource": null + }, + "_key": "!items!YsLLV4J7L6fgzTXf" +} diff --git a/packs/ac-support-benefits/Shotalashu_Support_Benefit_ufAZJqCN7ZOBhMSJ.json b/packs/ac-support-benefits/Shotalashu_Support_Benefit_ufAZJqCN7ZOBhMSJ.json new file mode 100644 index 0000000..e90903e --- /dev/null +++ b/packs/ac-support-benefits/Shotalashu_Support_Benefit_ufAZJqCN7ZOBhMSJ.json @@ -0,0 +1,56 @@ +{ + "name": "Shotalashu Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "The shotalashu telepathically assails your enemies when you create an opening. Until the start of your next turn, each time you hit a creature in the shotalashu's reach with a Strike, the creature takes @Damage[1d6[mental]] damage from the shotalashu. If your shotalashu is nimble or savage, the mental damage increases to @Damage[2d6[mental]].
" + }, + "rules": [], + "slug": "shotalashu-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false + }, + "_id": "ufAZJqCN7ZOBhMSJ", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 2600000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "6fae6910773cf24e2efcb4bd12f59a849d052a61" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!ufAZJqCN7ZOBhMSJ" +} diff --git a/packs/ac-support-benefits/Skeletal_Constrictor_Support_Benefit_Si13B4VFANZN8mi1.json b/packs/ac-support-benefits/Skeletal_Constrictor_Support_Benefit_Si13B4VFANZN8mi1.json new file mode 100644 index 0000000..66d3ebd --- /dev/null +++ b/packs/ac-support-benefits/Skeletal_Constrictor_Support_Benefit_Si13B4VFANZN8mi1.json @@ -0,0 +1,77 @@ +{ + "_id": "Si13B4VFANZN8mi1", + "name": "Skeletal Constrictor Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 5200000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.Si13B4VFANZN8mi1" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your snake sways, captivating an enemy. Choose one creature within 20 feet of the constrictor that can see it. Until the start of your next turn, your Strikes that deal damage to the chosen creature make the target @Compendium[pf2e.conditionitems.Off-Guard]{Off-Guard} until the end of your next turn.
" + }, + "rules": [], + "slug": "skeletal-constrictor-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #181: Zombie Feast" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.605-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.Si13B4VFANZN8mi1", + "duplicateSource": null + }, + "_key": "!items!Si13B4VFANZN8mi1" +} diff --git a/packs/ac-support-benefits/Skeletal_Mount_Support_Benefit_CKMQC3zu1XoGjeNd.json b/packs/ac-support-benefits/Skeletal_Mount_Support_Benefit_CKMQC3zu1XoGjeNd.json new file mode 100644 index 0000000..43a505d --- /dev/null +++ b/packs/ac-support-benefits/Skeletal_Mount_Support_Benefit_CKMQC3zu1XoGjeNd.json @@ -0,0 +1,77 @@ +{ + "_id": "CKMQC3zu1XoGjeNd", + "name": "Skeletal Mount Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 4300000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.CKMQC3zu1XoGjeNd" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your skeletal mount strikes fear when it charges. Until the start of your next turn, if you are riding your skeletal mount and move at least 10 feet on the action before your attack, any creature damaged by the attack becomes @Compendium[pf2e.conditionitems.Frightened]{Frightened 1}, or @Compendium[pf2e.conditionitems.Frightened]{Frightened 2} if the attack was a critical hit. This is an emotion, fear, and mental effect.
" + }, + "rules": [], + "slug": "skeletal-mount-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.608-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.CKMQC3zu1XoGjeNd", + "duplicateSource": null + }, + "_key": "!items!CKMQC3zu1XoGjeNd" +} diff --git a/packs/ac-support-benefits/Skeletal_Servant_Support_Benefit_bHaJZSm7SakAsk00.json b/packs/ac-support-benefits/Skeletal_Servant_Support_Benefit_bHaJZSm7SakAsk00.json new file mode 100644 index 0000000..65e5574 --- /dev/null +++ b/packs/ac-support-benefits/Skeletal_Servant_Support_Benefit_bHaJZSm7SakAsk00.json @@ -0,0 +1,77 @@ +{ + "_id": "bHaJZSm7SakAsk00", + "name": "Skeletal Servant Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 5700000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.bHaJZSm7SakAsk00" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your skeletal servant jabs bones into your enemies to distract them while you attack. Until the start of your next turn, when a Strike you make hits and deals damage to a creature within your skeletal servant's reach, that target becomes @Compendium[pf2e.conditionitems.AJh5ex99aV6VTggg]{Off-Guard} until the end of your next turn.
" + }, + "rules": [], + "slug": "skeletal-servant-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.602-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.bHaJZSm7SakAsk00", + "duplicateSource": null + }, + "_key": "!items!bHaJZSm7SakAsk00" +} diff --git a/packs/ac-support-benefits/Snake_Support_Benefit_trujzLuDqjQ7nJEO.json b/packs/ac-support-benefits/Snake_Support_Benefit_trujzLuDqjQ7nJEO.json new file mode 100644 index 0000000..63f011f --- /dev/null +++ b/packs/ac-support-benefits/Snake_Support_Benefit_trujzLuDqjQ7nJEO.json @@ -0,0 +1,80 @@ +{ + "_id": "trujzLuDqjQ7nJEO", + "name": "Snake Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 6900000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.trujzLuDqjQ7nJEO" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your snake holds your enemies with its coils, interfering with reactions. Until the start of your next turn, any creature your snake threatens can't use reactions triggered by your actions unless its level is higher than yours.
" + }, + "rules": [], + "slug": "snake-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.597-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.trujzLuDqjQ7nJEO", + "duplicateSource": null + }, + "_key": "!items!trujzLuDqjQ7nJEO" +} diff --git a/packs/ac-support-benefits/Terror_Bird_Support_Benefit_oLwBrrW33fIjSHLr.json b/packs/ac-support-benefits/Terror_Bird_Support_Benefit_oLwBrrW33fIjSHLr.json new file mode 100644 index 0000000..6ef6039 --- /dev/null +++ b/packs/ac-support-benefits/Terror_Bird_Support_Benefit_oLwBrrW33fIjSHLr.json @@ -0,0 +1,80 @@ +{ + "_id": "oLwBrrW33fIjSHLr", + "name": "Terror Bird Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 6700000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.wf20kx6pPGBWwUn2" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your terror bird screeches at your enemies when you create an opening. Until the start of your next turn, your Strikes that deal damage to a creature within your terror bird's reach make the target @Compendium[pf2e.conditionitems.Off-Guard]{Off-Guard} until the start of your next turn.
" + }, + "rules": [], + "slug": "terror-bird-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.598-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.wf20kx6pPGBWwUn2", + "duplicateSource": null + }, + "_key": "!items!oLwBrrW33fIjSHLr" +} diff --git a/packs/ac-support-benefits/Triceratops_Support_Benefit_TDMhLC16cQOYBbmA.json b/packs/ac-support-benefits/Triceratops_Support_Benefit_TDMhLC16cQOYBbmA.json new file mode 100644 index 0000000..7a8d5cd --- /dev/null +++ b/packs/ac-support-benefits/Triceratops_Support_Benefit_TDMhLC16cQOYBbmA.json @@ -0,0 +1,77 @@ +{ + "_id": "TDMhLC16cQOYBbmA", + "name": "Triceratops Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 5300000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.TDMhLC16cQOYBbmA" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your triceratops gores @Compendium[pf2e.conditionitems.Prone]{Prone} targets in your wake. Until the start of your next turn, your Strikes that damage a prone creature in your triceratops's reach also deal [[/r 1d8[bleed]]] damage. If your triceratops is nimble or savage, the persistent bleed damage increases to [[/r 2d8]]{2d8}.
" + }, + "rules": [], + "slug": "triceratops-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #177: Burning Tundra" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.605-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.TDMhLC16cQOYBbmA", + "duplicateSource": null + }, + "_key": "!items!TDMhLC16cQOYBbmA" +} diff --git a/packs/ac-support-benefits/Tyrannosaurus_Support_Benefit_XrxIRaD1A5tpKm1t.json b/packs/ac-support-benefits/Tyrannosaurus_Support_Benefit_XrxIRaD1A5tpKm1t.json new file mode 100644 index 0000000..b82bb40 --- /dev/null +++ b/packs/ac-support-benefits/Tyrannosaurus_Support_Benefit_XrxIRaD1A5tpKm1t.json @@ -0,0 +1,77 @@ +{ + "_id": "XrxIRaD1A5tpKm1t", + "name": "Tyrannosaurus Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 5400000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.XrxIRaD1A5tpKm1t" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your tyrannosaurus roars and puts on a fearsome display as you attack, startling your foes. Until the start of your next turn, if you hit and deal damage to a creature within your tyrannosaurus's reach, the creature is @Compendium[pf2e.conditionitems.Frightened]{Frightened 1}.
" + }, + "rules": [], + "slug": "tyrannosaurus-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #177: Burning Tundra" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.603-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.XrxIRaD1A5tpKm1t", + "duplicateSource": null + }, + "_key": "!items!XrxIRaD1A5tpKm1t" +} diff --git a/packs/ac-support-benefits/Ulgrem_Lurann_Support_Benefit_uZLtEOimbFnEDUKh.json b/packs/ac-support-benefits/Ulgrem_Lurann_Support_Benefit_uZLtEOimbFnEDUKh.json new file mode 100644 index 0000000..d91b262 --- /dev/null +++ b/packs/ac-support-benefits/Ulgrem_Lurann_Support_Benefit_uZLtEOimbFnEDUKh.json @@ -0,0 +1,77 @@ +{ + "name": "Ulgrem-Lurann Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 7000000, + "flags": { + "core": { + "sourceId": "Item.qTD1AGkv9Vd9mXRn" + } + }, + "_id": "uZLtEOimbFnEDUKh", + "system": { + "description": { + "gm": "", + "value": "The Ulgrem-Lurann grabs at your foe and zaps it. Until the start of your next turn, each time you hit a creature in the Ulgrem-Lurann's reach with a Strike, the creature takes an additional [[/r 1d4[piercing]]] damage and [[/r 1d4[electricity]]] damage from the Ulgrem-Lurann. If the Ulgrem-Lurann is nimble or savage, the piercing damage and electricity damage each increase to [[/r 2d4]]{2d4}.
" + }, + "rules": [], + "slug": "ulgrem-lurann-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.597-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "0tWA9mscoVx3YLRI": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.qTD1AGkv9Vd9mXRn", + "duplicateSource": null + }, + "_key": "!items!uZLtEOimbFnEDUKh" +} diff --git a/packs/ac-support-benefits/Umbrella_Mushroom_Support_Benefit_XVOVZjvTwaoalpWC.json b/packs/ac-support-benefits/Umbrella_Mushroom_Support_Benefit_XVOVZjvTwaoalpWC.json new file mode 100644 index 0000000..13f0246 --- /dev/null +++ b/packs/ac-support-benefits/Umbrella_Mushroom_Support_Benefit_XVOVZjvTwaoalpWC.json @@ -0,0 +1,56 @@ +{ + "name": "Umbrella Mushroom Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your umbrella mushroom exudes sense dulling spores when you create an opening. Until the start of your next turn, your Strikes that damage a creature within your umbrella mushroom's reach becomes @UUID[Compendium.pf2e.conditionitems.Item.e1XGnhKNSQIm5IXg]{Stupefied 1} for 1 round. This effect has the poison trait.
" + }, + "rules": [], + "slug": "umbrella-mushroom-support-benefit", + "_migration": { + "version": 0.926, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "Pathfinder: Howl of the Wild", + "authors": "", + "license": "ORC", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": true + }, + "_id": "XVOVZjvTwaoalpWC", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "folder": null, + "sort": 700000, + "ownership": { + "default": 0, + "vawHfUxddL5ZhUl0": 3 + }, + "flags": { + "scene-packer": { + "hash": "c2a11d226d2bf8a32b60339b42ac4db7ef50f5a9" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_key": "!items!XVOVZjvTwaoalpWC" +} diff --git a/packs/ac-support-benefits/Undead_Bird_of_Prey_Support_Benefit_bEkXle5FLNxnp3IE.json b/packs/ac-support-benefits/Undead_Bird_of_Prey_Support_Benefit_bEkXle5FLNxnp3IE.json new file mode 100644 index 0000000..fbabb14 --- /dev/null +++ b/packs/ac-support-benefits/Undead_Bird_of_Prey_Support_Benefit_bEkXle5FLNxnp3IE.json @@ -0,0 +1,77 @@ +{ + "_id": "bEkXle5FLNxnp3IE", + "name": "Undead Bird of Prey Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 5600000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.bEkXle5FLNxnp3IE" + } + }, + "system": { + "description": { + "gm": "", + "value": "The bird flaps around and throws your foe off balance. Until the start of your next turn, when you damage a creature in the bird's reach with a Strike, that creature becomes @Compendium[pf2e.conditionitems.Clumsy]{Clumsy 1} until the end of your next turn.
" + }, + "rules": [], + "slug": "undead-bird-of-prey-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #181: Zombie Feast" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.602-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.bEkXle5FLNxnp3IE", + "duplicateSource": null + }, + "_key": "!items!bEkXle5FLNxnp3IE" +} diff --git a/packs/ac-support-benefits/Undead_Hand_Support_Benefit_imNJpD4afn4UrLpu.json b/packs/ac-support-benefits/Undead_Hand_Support_Benefit_imNJpD4afn4UrLpu.json new file mode 100644 index 0000000..ceafc1d --- /dev/null +++ b/packs/ac-support-benefits/Undead_Hand_Support_Benefit_imNJpD4afn4UrLpu.json @@ -0,0 +1,77 @@ +{ + "_id": "imNJpD4afn4UrLpu", + "name": "Undead Hand Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 6000000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.imNJpD4afn4UrLpu" + } + }, + "system": { + "description": { + "gm": "", + "value": "The hand viciously batters the foes you attack. Until the start of your next turn, each time you hit a creature in the hand's reach with a Strike, the creature takes [[/r 1d6[bludgeoning]]] damage from the hand. If your hand is nimble or savage, the bludgeoning damage increases to [[/r 2d6[bludgeoning]]]{2d6}.
" + }, + "rules": [], + "slug": "undead-hand-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #181: Zombie Feast" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.600-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.imNJpD4afn4UrLpu", + "duplicateSource": null + }, + "_key": "!items!imNJpD4afn4UrLpu" +} diff --git a/packs/ac-support-benefits/Vampiric_Animal_Support_Benefit_3jZOVJsYwBQ7GPDi.json b/packs/ac-support-benefits/Vampiric_Animal_Support_Benefit_3jZOVJsYwBQ7GPDi.json new file mode 100644 index 0000000..615ce3c --- /dev/null +++ b/packs/ac-support-benefits/Vampiric_Animal_Support_Benefit_3jZOVJsYwBQ7GPDi.json @@ -0,0 +1,77 @@ +{ + "_id": "3jZOVJsYwBQ7GPDi", + "name": "Vampiric Animal Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 3200000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.3jZOVJsYwBQ7GPDi" + } + }, + "system": { + "description": { + "gm": "", + "value": "When your vampiric animal senses blood it tears into your enemies. Until the start of your next turn, your Strikes that damage a creature in your vampiric animal's reach also deal [[/r 1d6[bleed]]] damage. If your vampiric animal is nimble or savage, the persistent bleed damage increases to [[/r 2d6[bleed]]]{2d6}.
" + }, + "rules": [], + "slug": "vampiric-animal-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.611-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.3jZOVJsYwBQ7GPDi", + "duplicateSource": null + }, + "_key": "!items!3jZOVJsYwBQ7GPDi" +} diff --git a/packs/ac-support-benefits/Vulture_Support_Benefit_QEZUnvbdrgQJAUs0.json b/packs/ac-support-benefits/Vulture_Support_Benefit_QEZUnvbdrgQJAUs0.json new file mode 100644 index 0000000..fc726d7 --- /dev/null +++ b/packs/ac-support-benefits/Vulture_Support_Benefit_QEZUnvbdrgQJAUs0.json @@ -0,0 +1,80 @@ +{ + "_id": "QEZUnvbdrgQJAUs0", + "name": "Vulture Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 4900000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.QEZUnvbdrgQJAUs0" + } + }, + "system": { + "description": { + "gm": "", + "value": "The vulture retches and vomits onto a foe within 10 feet. Until the start of your next turn, if you hit and deal damage to the target, the target must succeed at a Fortitude save or become @Compendium[pf2e.conditionitems.Sickened]{Sickened 1} (@Compendium[pf2e.conditionitems.Sickened]{Sickened 2} on a critical failure). The DC of the Fortitude save is 12 (or 14, if the vulture is a specialized animal companion) + your level + the vulture's Constitution modifier.
" + }, + "rules": [], + "slug": "vulture-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.606-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.QEZUnvbdrgQJAUs0", + "duplicateSource": null + }, + "_key": "!items!QEZUnvbdrgQJAUs0" +} diff --git a/packs/ac-support-benefits/Water_Elemental_Support_Benefit_BFvS1wnFxgUqgX8m.json b/packs/ac-support-benefits/Water_Elemental_Support_Benefit_BFvS1wnFxgUqgX8m.json new file mode 100644 index 0000000..87e3a89 --- /dev/null +++ b/packs/ac-support-benefits/Water_Elemental_Support_Benefit_BFvS1wnFxgUqgX8m.json @@ -0,0 +1,65 @@ +{ + "name": "Water Elemental Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your water elemental waterlogs a foe. The first time before the start of your next turn you hit with a Strike that deals damage to a creature within your water elemental's reach, that creature becomes @UUID[Compendium.pf2e.conditionitems.Item.i3OJZU2nk64Df3xm]{Clumsy 1} until the end of your next turn.
" + }, + "rules": [], + "slug": null, + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": null + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "flags": {}, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "BFvS1wnFxgUqgX8m", + "folder": null, + "sort": 1100000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!BFvS1wnFxgUqgX8m" +} diff --git a/packs/ac-support-benefits/Water_Wraith_Support_Benefit_IUXX1lUd9kMzV4bq.json b/packs/ac-support-benefits/Water_Wraith_Support_Benefit_IUXX1lUd9kMzV4bq.json new file mode 100644 index 0000000..801f111 --- /dev/null +++ b/packs/ac-support-benefits/Water_Wraith_Support_Benefit_IUXX1lUd9kMzV4bq.json @@ -0,0 +1,77 @@ +{ + "name": "Water Wraith Support Benefit", + "type": "action", + "system": { + "description": { + "gm": "", + "value": "Your water wraith hisses and changes colors swiftly in an iridescent clash, overwhelming your foes in an avalanche of shades and hues. Until the start of your next turn, each time you hit a creature within your water wraith's reach, the creature is @Compendium[pf2e.conditionitems.Dazzled]{Dazzled} for 1 round.
" + }, + "rules": [], + "slug": "water-wraith-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Lost Omens: Impossible Lands" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.607-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "flags": { + "core": { + "sourceId": "Item.pk04uZmpsxCuJozL" + } + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Item.pk04uZmpsxCuJozL", + "duplicateSource": null + }, + "folder": null, + "sort": 4700000, + "_id": "IUXX1lUd9kMzV4bq", + "_key": "!items!IUXX1lUd9kMzV4bq" +} diff --git a/packs/ac-support-benefits/Wolf_Support_Benefit_5HnWXmOp8qNjfhdU.json b/packs/ac-support-benefits/Wolf_Support_Benefit_5HnWXmOp8qNjfhdU.json new file mode 100644 index 0000000..621ddad --- /dev/null +++ b/packs/ac-support-benefits/Wolf_Support_Benefit_5HnWXmOp8qNjfhdU.json @@ -0,0 +1,80 @@ +{ + "_id": "5HnWXmOp8qNjfhdU", + "name": "Wolf Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 3400000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.5HnWXmOp8qNjfhdU" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your wolf tears tendons with each opening. Until the start of your next turn, your Strikes that damage creatures your wolf threatens give the target a –5-foot status penalty to its Speeds for 1 minute (–10 on a critical success).
" + }, + "rules": [], + "slug": "wolf-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.610-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + }, + "weapon": { + "value": "" + } + }, + "ownership": { + "default": 0, + "WG8TaxGEQOxXBO1S": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.5HnWXmOp8qNjfhdU", + "duplicateSource": null + }, + "_key": "!items!5HnWXmOp8qNjfhdU" +} diff --git a/packs/ac-support-benefits/Wood_Elemental_Support_Benefit_KomM6mTwJAzvqAgi.json b/packs/ac-support-benefits/Wood_Elemental_Support_Benefit_KomM6mTwJAzvqAgi.json new file mode 100644 index 0000000..17350db --- /dev/null +++ b/packs/ac-support-benefits/Wood_Elemental_Support_Benefit_KomM6mTwJAzvqAgi.json @@ -0,0 +1,65 @@ +{ + "name": "Wood Elemental Support Benefit", + "type": "action", + "effects": [], + "system": { + "description": { + "gm": "", + "value": "Your wood elemental entangles your foes with detachable branches and roots. Until the start of your next turn, if you hit with a Strike that deals damage to a creature in your wood elemental's reach, the creature takes a –5-foot circumstance penalty to its Speeds for 1 minute (–10 on a critical success). The creature, or a creature adjacent to it, can use an Interact action to unravel the branches and roots and remove the penalty.
" + }, + "rules": [], + "slug": null, + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [] + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Rage of Elements" + }, + "schema": { + "version": 0.854, + "lastMigration": null + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "img": "systems/pf2e/icons/actions/OneAction.webp", + "flags": {}, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": null, + "duplicateSource": null + }, + "_id": "KomM6mTwJAzvqAgi", + "folder": null, + "sort": 1300000, + "ownership": { + "default": 0, + "qA45GVv5hySaf9b5": 3 + }, + "_key": "!items!KomM6mTwJAzvqAgi" +} diff --git a/packs/ac-support-benefits/Zombie_Carrion_Bird_Support_Benefit_zE01vpjowhoKygig.json b/packs/ac-support-benefits/Zombie_Carrion_Bird_Support_Benefit_zE01vpjowhoKygig.json new file mode 100644 index 0000000..bb68595 --- /dev/null +++ b/packs/ac-support-benefits/Zombie_Carrion_Bird_Support_Benefit_zE01vpjowhoKygig.json @@ -0,0 +1,80 @@ +{ + "_id": "zE01vpjowhoKygig", + "name": "Zombie Carrion Bird Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 7600000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.zE01vpjowhoKygig" + } + }, + "system": { + "description": { + "gm": "", + "value": "The zombie emits an aura of rot, causing wounds to fester. Until the start of your next turn, each time you hit and deal damage to a creature that's within 10 feet of the zombie carrion bird, the creature takes an additional [[/r 1d6]] damage as the wound festers. If your carrion bird is nimble or savage, the damage increases to [[/r 2d6]]. This is a disease and necromancy effect.
" + }, + "rules": [], + "slug": "zombie-carrion-bird-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "disease", + "necromancy" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #181: Zombie Feast" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.594-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.zE01vpjowhoKygig", + "duplicateSource": null + }, + "_key": "!items!zE01vpjowhoKygig" +} diff --git a/packs/ac-support-benefits/Zombie_Mount_Support_Benefit_N9fYaUuIgD6RQ7CY.json b/packs/ac-support-benefits/Zombie_Mount_Support_Benefit_N9fYaUuIgD6RQ7CY.json new file mode 100644 index 0000000..877244b --- /dev/null +++ b/packs/ac-support-benefits/Zombie_Mount_Support_Benefit_N9fYaUuIgD6RQ7CY.json @@ -0,0 +1,77 @@ +{ + "_id": "N9fYaUuIgD6RQ7CY", + "name": "Zombie Mount Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 4800000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.N9fYaUuIgD6RQ7CY" + } + }, + "system": { + "description": { + "gm": "", + "value": "Your zombie mount chews on your enemies. Until the start of your next turn, each time you Strike while riding the zombie mount and hit a creature in the zombie mount's reach, the creature takes [[/r 1d4[bludgeoning]]] damage from the zombie mount. If your zombie mount is nimble or savage, the bludgeoning damage increases to [[/r 2d4[bludgeoning]]]{2d4}. This benefit is based on a zombie horse or camel, but might deal piercing damage if your mount has sharp teeth.
" + }, + "rules": [], + "slug": "zombie-mount-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder #181: Zombie Feast" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.606-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.N9fYaUuIgD6RQ7CY", + "duplicateSource": null + }, + "_key": "!items!N9fYaUuIgD6RQ7CY" +} diff --git a/packs/ac-support-benefits/Zombie_Support_Benefit_yAYlM3aIRYnqx6j8.json b/packs/ac-support-benefits/Zombie_Support_Benefit_yAYlM3aIRYnqx6j8.json new file mode 100644 index 0000000..42e89ec --- /dev/null +++ b/packs/ac-support-benefits/Zombie_Support_Benefit_yAYlM3aIRYnqx6j8.json @@ -0,0 +1,80 @@ +{ + "_id": "yAYlM3aIRYnqx6j8", + "name": "Zombie Support Benefit", + "type": "action", + "img": "systems/pf2e/icons/actions/OneAction.webp", + "effects": [], + "folder": null, + "sort": 7400000, + "flags": { + "core": { + "sourceId": "Compendium.pf2e-animal-companions.AC-Support.Item.yAYlM3aIRYnqx6j8" + } + }, + "system": { + "description": { + "gm": "", + "value": "The zombie emits an aura of rot, causing wounds to fester. Until the start of your next turn, each time you hit a creature that's within 10 feet of the zombie and you deal damage, the creature takes an additional [[/r 1d6]] damage as the wound festers. If your zombie is nimble or savage, the damage increases to [[/r 2d6]]. This is a disease and necromancy effect.
" + }, + "rules": [], + "slug": "zombie-support-benefit", + "_migration": { + "version": null, + "lastMigration": null + }, + "traits": { + "otherTags": [], + "value": [ + "disease", + "necromancy" + ], + "rarity": "common" + }, + "publication": { + "title": "", + "authors": "", + "license": "OGL", + "remaster": false + }, + "actionType": { + "value": "action" + }, + "category": "offensive", + "actions": { + "value": 1 + }, + "deathNote": false, + "source": { + "value": "Pathfinder Book of the Dead" + }, + "schema": { + "version": 0.854, + "lastMigration": { + "datetime": "2023-06-27T14:18:03.595-04:00", + "version": { + "schema": 0.845, + "foundry": "11.307", + "system": "5.3.1" + } + } + }, + "requirements": { + "value": "" + }, + "trigger": { + "value": "" + } + }, + "ownership": { + "default": 0, + "thw0Ox3kKEThnAFP": 3 + }, + "_stats": { + "systemId": "pf2e", + "systemVersion": "5.15.4", + "coreVersion": "12.331", + "compendiumSource": "Compendium.pf2e-animal-companions.AC-Support.Item.yAYlM3aIRYnqx6j8", + "duplicateSource": null + }, + "_key": "!items!yAYlM3aIRYnqx6j8" +} diff --git a/scripts/warnings.js b/scripts/warnings.js new file mode 100644 index 0000000..e4e291c --- /dev/null +++ b/scripts/warnings.js @@ -0,0 +1,36 @@ +async function registerUserFlags() { + await setIfAbsent("eidolon-changes-to-be-read", true) +}; + +async function setIfAbsent(flag, value) { + if (game.user.getFlag("world", flag) === undefined) { + await game.user.setFlag("world", flag, value); + } +} + +Hooks.once("ready", async () => { + await registerUserFlags(); + + // Does the user have an eidolon? + if (game.actors.filter(x => x.isOwner).filter(x => x.class?.name === "Eidolon").length) { + // Has the user read the changes? + if (game.user.getFlag("world", "eidolon-changes-to-be-read")) { + new Dialog({ + title: "Eidolon Changes", + content: "With the release of version Companion Compendia 6.2, in order to support Summoners+ and other third party eidolons, we had to change how Eidolon Abilities are granted.
You need to update your Eidolon's ancestries. Simply drag and drop the same ancestry again onto your Eidolon sheet in order to update.
", + buttons: { + one: { + icon: '', + label: "I Understand", + callback: async () => { + await game.user.setFlag("world", "eidolon-changes-to-be-read", false); + } + } + } + }).render(true); + } + } else { + // No eidolons, no problem. + await game.user.setFlag("world", "eidolon-changes-to-be-read", false); + } +}); \ No newline at end of file