-
Notifications
You must be signed in to change notification settings - Fork 367
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update effects and automation for select Pathfinder Society Boons (#1…
- Loading branch information
1 parent
9fd50f1
commit c319039
Showing
31 changed files
with
442 additions
and
209 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...stiary-effects/effect-pfs-level-bump.json → ...ry-effects/effect-pfs-level-bump-npc.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
packs/campaign-effects/pathfinder-society/effect-combat-mentor.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ | ||
"_id": "0PDng7D5Aj0szeSU", | ||
"folder": "KN9hhATq6X3GwryB", | ||
"img": "systems/pf2e/icons/pathfinder-society/pfs-glyph.webp", | ||
"name": "Effect: Combat Mentor", | ||
"system": { | ||
"description": { | ||
"value": "<p>Granted by Combat Mentor</p>\n<p>Your Level Bump modifier to attack rolls and spell attack rolls increases to 2.</p>" | ||
}, | ||
"duration": { | ||
"expiry": null, | ||
"sustained": false, | ||
"unit": "unlimited", | ||
"value": -1 | ||
}, | ||
"level": { | ||
"value": 1 | ||
}, | ||
"publication": { | ||
"license": "OGL", | ||
"remaster": false, | ||
"title": "" | ||
}, | ||
"rules": [ | ||
{ | ||
"key": "AdjustModifier", | ||
"mode": "upgrade", | ||
"selector": "attack-roll", | ||
"slug": "level-bump", | ||
"value": 2 | ||
} | ||
], | ||
"start": { | ||
"initiative": null, | ||
"value": 0 | ||
}, | ||
"tokenIcon": { | ||
"show": false | ||
}, | ||
"traits": { | ||
"rarity": "common", | ||
"value": [] | ||
} | ||
}, | ||
"type": "effect" | ||
} |
59 changes: 59 additions & 0 deletions
59
packs/campaign-effects/pathfinder-society/effect-exotic-edge.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{ | ||
"_id": "OwrgpWYQTCLM6Ye7", | ||
"folder": "KN9hhATq6X3GwryB", | ||
"img": "systems/pf2e/icons/pathfinder-society/pfs-glyph.webp", | ||
"name": "Effect: Exotic Edge", | ||
"system": { | ||
"description": { | ||
"value": "<p>Granted by Exotic Edge</p>\n<p>You gain a +1 circumstance bonus to either all of your attack rolls or all of your skill checks.</p>" | ||
}, | ||
"duration": { | ||
"expiry": "turn-start", | ||
"sustained": false, | ||
"unit": "rounds", | ||
"value": 1 | ||
}, | ||
"level": { | ||
"value": 1 | ||
}, | ||
"publication": { | ||
"license": "OGL", | ||
"remaster": false, | ||
"title": "" | ||
}, | ||
"rules": [ | ||
{ | ||
"choices": [ | ||
{ | ||
"label": "PF2E.SpecificRule.Prompt.Check.Attack", | ||
"value": "attack-roll" | ||
}, | ||
{ | ||
"label": "PF2E.SpecificRule.Prompt.Check.Skill", | ||
"value": "skill-check" | ||
} | ||
], | ||
"flag": "bonusType", | ||
"key": "ChoiceSet", | ||
"prompt": "PF2E.SpecificRule.Prompt.Bonus" | ||
}, | ||
{ | ||
"key": "FlatModifier", | ||
"selector": "{item|flags.pf2e.rulesSelections.bonusType}", | ||
"type": "circumstance", | ||
"value": 1 | ||
} | ||
], | ||
"start": { | ||
"initiative": null, | ||
"value": 0 | ||
}, | ||
"tokenIcon": { | ||
"show": true | ||
}, | ||
"traits": { | ||
"value": [] | ||
} | ||
}, | ||
"type": "effect" | ||
} |
47 changes: 47 additions & 0 deletions
47
packs/campaign-effects/pathfinder-society/effect-heroic-aegis.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"_id": "a8LGc1NEXXBTvvy3", | ||
"folder": "KN9hhATq6X3GwryB", | ||
"img": "systems/pf2e/icons/pathfinder-society/pfs-glyph.webp", | ||
"name": "Effect: Heroic Aegis", | ||
"system": { | ||
"description": { | ||
"value": "<p>Granted by Heroic Aegis</p>\n<p>You gain a +2 status bonus to AC and saving throws.</p>" | ||
}, | ||
"duration": { | ||
"expiry": "turn-start", | ||
"sustained": false, | ||
"unit": "rounds", | ||
"value": 1 | ||
}, | ||
"level": { | ||
"value": 1 | ||
}, | ||
"publication": { | ||
"license": "OGL", | ||
"remaster": false, | ||
"title": "" | ||
}, | ||
"rules": [ | ||
{ | ||
"key": "FlatModifier", | ||
"selector": [ | ||
"ac", | ||
"saving-throw" | ||
], | ||
"type": "status", | ||
"value": 2 | ||
} | ||
], | ||
"start": { | ||
"initiative": null, | ||
"value": 0 | ||
}, | ||
"tokenIcon": { | ||
"show": true | ||
}, | ||
"traits": { | ||
"value": [] | ||
} | ||
}, | ||
"type": "effect" | ||
} |
44 changes: 44 additions & 0 deletions
44
packs/campaign-effects/pathfinder-society/effect-heroic-hustle.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"_id": "i5PHb9yR33Cr6XMK", | ||
"folder": "KN9hhATq6X3GwryB", | ||
"img": "systems/pf2e/icons/pathfinder-society/pfs-glyph.webp", | ||
"name": "Effect: Heroic Hustle", | ||
"system": { | ||
"description": { | ||
"value": "<p>Granted by Heroic Hustle</p>\n<p>You gain a +10-foot status bonus to your Speed.</p>" | ||
}, | ||
"duration": { | ||
"expiry": "turn-start", | ||
"sustained": false, | ||
"unit": "rounds", | ||
"value": 1 | ||
}, | ||
"level": { | ||
"value": 1 | ||
}, | ||
"publication": { | ||
"license": "OGL", | ||
"remaster": false, | ||
"title": "" | ||
}, | ||
"rules": [ | ||
{ | ||
"key": "FlatModifier", | ||
"selector": "land-speed", | ||
"type": "status", | ||
"value": 10 | ||
} | ||
], | ||
"start": { | ||
"initiative": null, | ||
"value": 0 | ||
}, | ||
"tokenIcon": { | ||
"show": true | ||
}, | ||
"traits": { | ||
"value": [] | ||
} | ||
}, | ||
"type": "effect" | ||
} |
67 changes: 67 additions & 0 deletions
67
packs/campaign-effects/pathfinder-society/effect-heroic-inspiration.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
{ | ||
"_id": "53nP5ljwRhD9BlUk", | ||
"folder": "KN9hhATq6X3GwryB", | ||
"img": "systems/pf2e/icons/pathfinder-society/pfs-glyph.webp", | ||
"name": "Effect: Heroic Inspiration", | ||
"system": { | ||
"description": { | ||
"value": "<p>Granted by Heroic Inspiration</p>\n<p>You gain a +1 circumstance bonus to checks of the same type the origin succeeded against.</p>" | ||
}, | ||
"duration": { | ||
"expiry": "turn-start", | ||
"sustained": false, | ||
"unit": "rounds", | ||
"value": 1 | ||
}, | ||
"level": { | ||
"value": 1 | ||
}, | ||
"publication": { | ||
"license": "OGL", | ||
"remaster": false, | ||
"title": "" | ||
}, | ||
"rules": [ | ||
{ | ||
"choices": [ | ||
{ | ||
"label": "PF2E.SpecificRule.Prompt.Check.Attack", | ||
"value": "attack-roll" | ||
}, | ||
{ | ||
"label": "PF2E.SpecificRule.Prompt.Check.Perception", | ||
"value": "perception-check" | ||
}, | ||
{ | ||
"label": "PF2E.SpecificRule.Prompt.Check.SavingThrow", | ||
"value": "saving-throw" | ||
}, | ||
{ | ||
"label": "PF2E.SpecificRule.Prompt.Check.Skill", | ||
"value": "skill-check" | ||
} | ||
], | ||
"flag": "heroicInspiration", | ||
"key": "ChoiceSet", | ||
"prompt": "PF2E.SpecificRule.Prompt.Bonus" | ||
}, | ||
{ | ||
"key": "FlatModifier", | ||
"selector": "{item|flags.pf2e.rulesSelections.heroicInspiration}", | ||
"type": "circumstance", | ||
"value": 1 | ||
} | ||
], | ||
"start": { | ||
"initiative": null, | ||
"value": 0 | ||
}, | ||
"tokenIcon": { | ||
"show": true | ||
}, | ||
"traits": { | ||
"value": [] | ||
} | ||
}, | ||
"type": "effect" | ||
} |
70 changes: 70 additions & 0 deletions
70
packs/campaign-effects/pathfinder-society/effect-magical-mentor.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ | ||
"_id": "b1sZC0knPcr7B6Gz", | ||
"folder": "KN9hhATq6X3GwryB", | ||
"img": "systems/pf2e/icons/pathfinder-society/pfs-glyph.webp", | ||
"name": "Effect: Magical Mentor", | ||
"system": { | ||
"description": { | ||
"value": "<p>Granted by Magical Mentor</p>\n<p>Your Level Bump modifier bonus to your spell DC that is the same tradition of the mentor increases to 2.</p>" | ||
}, | ||
"duration": { | ||
"expiry": null, | ||
"sustained": false, | ||
"unit": "unlimited", | ||
"value": -1 | ||
}, | ||
"level": { | ||
"value": 1 | ||
}, | ||
"publication": { | ||
"license": "OGL", | ||
"remaster": false, | ||
"title": "" | ||
}, | ||
"rules": [ | ||
{ | ||
"choices": [ | ||
{ | ||
"label": "PF2E.TraitArcane", | ||
"value": "arcane" | ||
}, | ||
{ | ||
"label": "PF2E.TraitDivine", | ||
"value": "divine" | ||
}, | ||
{ | ||
"label": "PF2E.TraitOccult", | ||
"value": "occult" | ||
}, | ||
{ | ||
"label": "PF2E.TraitPrimal", | ||
"value": "primal" | ||
} | ||
], | ||
"flag": "magicalMentor", | ||
"key": "ChoiceSet", | ||
"prompt": "PF2E.SpecificRule.Prompt.Tradition" | ||
}, | ||
{ | ||
"key": "FlatModifier", | ||
"predicate": [ | ||
"spellcasting:{item|flags.pf2e.rulesSelections.magicalMentor}" | ||
], | ||
"selector": "spell-dc", | ||
"value": 1 | ||
} | ||
], | ||
"start": { | ||
"initiative": null, | ||
"value": 0 | ||
}, | ||
"tokenIcon": { | ||
"show": false | ||
}, | ||
"traits": { | ||
"rarity": "common", | ||
"value": [] | ||
} | ||
}, | ||
"type": "effect" | ||
} |
Oops, something went wrong.