forked from foundryvtt/pf2e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguloval.json
1313 lines (1313 loc) · 47.3 KB
/
guloval.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"_id": "IeAy6hvDcnU1pCZr",
"img": "systems/pf2e/icons/default-icons/npc.svg",
"items": [
{
"_id": "P3DKNYk3hMABVGY0",
"img": "systems/pf2e/icons/default-icons/spellcastingEntry.svg",
"name": "Divine Innate Spells",
"sort": 100000,
"system": {
"autoHeightenLevel": {
"value": null
},
"description": {
"value": ""
},
"prepared": {
"value": "innate"
},
"proficiency": {
"value": 1
},
"publication": {
"license": "OGL",
"remaster": false,
"title": ""
},
"rules": [],
"showSlotlessLevels": {
"value": false
},
"slots": {},
"slug": null,
"spelldc": {
"dc": 32,
"mod": 0,
"value": 24
},
"tradition": {
"value": "divine"
}
},
"type": "spellcastingEntry"
},
{
"_id": "QOK7U7WbJeJW22bz",
"flags": {
"core": {
"sourceId": "Compendium.pf2e.spells-srd.Item.MMCQsh12TPaDdPbV"
}
},
"img": "systems/pf2e/icons/spells/righteous-might.webp",
"name": "Righteous Might",
"sort": 200000,
"system": {
"area": null,
"cost": {
"value": ""
},
"counteraction": false,
"damage": {},
"defense": null,
"description": {
"value": "<p>You focus all your divine energy and transform yourself into a Medium battle form, similar to your normal form but armed with powerful divine armaments granted by your deity. While in this form, you gain the statistics and abilities listed below. You have hands in this battle form and can use manipulate actions. You can Dismiss the spell.</p>\n<p>You gain the following statistics and abilities:</p>\n<ul>\n<li>AC = 20 + your level. Ignore your armor's check penalty and Speed reduction.</li>\n<li>10 temporary Hit Points.</li>\n<li>Speed 40 feet.</li>\n<li>Resistance 3 against physical damage.</li>\n<li>Darkvision.</li>\n<li>A special attack with a righteous armament version of your favored weapon, which is the only attack you can use. Your attack modifier with the special weapon is +21, and your damage bonus is +8 (or +6 for a ranged attack). If your attack modifier with your deity's favored weapon is higher, you can use it instead. You deal three of your weapon's normal damage dice, or three damage dice of one size larger if your weapon is a simple weapon with a d4 or d6 damage die. The weapon has one of the following properties that matches your deity's alignment: <em>anarchic</em>, <em>axiomatic</em>, <em>holy</em>, <em>unholy</em>. If your deity is true neutral, you instead deal an extra 1d6 precision damage.</li>\n<li>Athletics modifier of +23, unless your own modifier is higher.</li>\n</ul>\n<hr />\n<p><strong>Heightened (8th)</strong> Your battle form is Large, and your attacks have 10-foot reach, or 15-foot reach if your deity's favored weapon has reach. You must have enough space to expand into or the spell is lost. You instead gain AC = 21 + your level, 15 temporary HP, resistance 4 against physical damage, attack modifier +28, damage bonus +15 (+12 for a ranged attack), and Athletics +29.</p>\n<p>@UUID[Compendium.pf2e.spell-effects.Item.Spell Effect: Righteous Might]</p>"
},
"duration": {
"sustained": false,
"value": "1 minute"
},
"level": {
"value": 6
},
"location": {
"heightenedLevel": 6,
"value": "P3DKNYk3hMABVGY0"
},
"publication": {
"license": "OGL",
"remaster": false,
"title": "Pathfinder Core Rulebook"
},
"range": {
"value": ""
},
"requirements": "You have a deity",
"rules": [],
"slug": "righteous-might",
"target": {
"value": ""
},
"time": {
"value": "2"
},
"traits": {
"rarity": "common",
"traditions": [
"divine"
],
"value": [
"concentrate",
"manipulate",
"polymorph"
]
}
},
"type": "spell"
},
{
"_id": "2qkglTgehQIGaYms",
"flags": {
"core": {
"sourceId": "Compendium.pf2e.spells-srd.Item.TDaMnCtZ72uyYrz8"
}
},
"img": "icons/magic/sonic/projectile-shock-wave-blue.webp",
"name": "Blink Charge",
"sort": 300000,
"system": {
"area": null,
"cost": {
"value": ""
},
"counteraction": false,
"damage": {
"0": {
"applyMod": false,
"category": null,
"formula": "2d8",
"kinds": [
"damage"
],
"materials": [],
"type": "force"
}
},
"defense": null,
"description": {
"value": "<p>You propel yourself through the fabric of space to deal a blow carrying the momentum of your teleportation. You teleport to an empty space adjacent to a creature you can see within range, then make a Strike against the creature with a weapon you're wielding. The Strike deals damage, plus an extra 2d8 force damage, depending on the result of your Strike.</p>\n<hr />\n<p><strong>Critical Success</strong> Double damage, plus after the Strike, you can teleport the target into an empty space up to 5 feet away from its current position. The new space must be on the ground if it started on the ground, in the air if it was flying, and so on.</p>\n<p><strong>Success</strong> The Strike deals full damage.</p>\n<p><strong>Failure</strong> The Strike deals no damage, but the target takes @Damage[1d8[force]] damage.</p>\n<p><strong>Critical Failure</strong> The Strike deals no damage, and you take 1d8 force damage.</p>\n<hr />\n<p><strong>Heightened (+2)</strong> The spell's range increases by 60 feet, and any force damage the spell deals is increased by @Damage[1d8[force]].</p>"
},
"duration": {
"sustained": false,
"value": ""
},
"heightening": {
"damage": {
"0": "1d8"
},
"interval": 2,
"type": "interval"
},
"level": {
"value": 5
},
"location": {
"heightenedLevel": 5,
"value": "P3DKNYk3hMABVGY0"
},
"publication": {
"license": "OGL",
"remaster": false,
"title": "Pathfinder Secrets of Magic"
},
"range": {
"value": "60 feet"
},
"requirements": "",
"rules": [],
"slug": "blink-charge",
"target": {
"value": "1 creature"
},
"time": {
"value": "2"
},
"traits": {
"rarity": "common",
"traditions": [
"arcane",
"divine",
"occult"
],
"value": [
"concentrate",
"force",
"manipulate",
"teleportation"
]
}
},
"type": "spell"
},
{
"_id": "KFWIstFVCs6ohlya",
"flags": {
"core": {
"sourceId": "Compendium.pf2e.spells-srd.Item.Hnc7eGi7vyZenAIm"
}
},
"img": "icons/magic/life/heart-shadow-red.webp",
"name": "Breath of Life",
"sort": 400000,
"system": {
"area": null,
"cost": {
"value": ""
},
"counteraction": false,
"damage": {
"0": {
"applyMod": "0",
"category": null,
"formula": "4d8",
"kinds": [
"healing"
],
"materials": [],
"type": "untyped"
}
},
"defense": null,
"description": {
"value": "<p><strong>Trigger</strong> A living creature within range would die.</p>\n<hr />\n<p>Your blessing revives a creature at the moment of its death. You prevent the target from dying and restore Hit Points to the target equal to 4d8 plus your spellcasting ability modifier. You can't use <em>breath of life</em> if the triggering effect was @UUID[Compendium.pf2e.spells-srd.Item.Disintegrate] or a death effect.</p>"
},
"duration": {
"sustained": false,
"value": ""
},
"level": {
"value": 5
},
"location": {
"heightenedLevel": 5,
"value": "P3DKNYk3hMABVGY0"
},
"publication": {
"license": "OGL",
"remaster": false,
"title": "Pathfinder Core Rulebook"
},
"range": {
"value": "60 feet"
},
"requirements": "",
"rules": [],
"slug": "breath-of-life",
"target": {
"value": "the triggering creature"
},
"time": {
"value": "reaction"
},
"traits": {
"rarity": "common",
"traditions": [
"divine"
],
"value": [
"concentrate",
"healing",
"vitality"
]
}
},
"type": "spell"
},
{
"_id": "xp644bQfo4AHavjy",
"flags": {
"core": {
"sourceId": "Compendium.pf2e.spells-srd.Item.hVU9msO9yGkxKZ3J"
}
},
"img": "icons/magic/light/projectile-beam-yellow.webp",
"name": "Divine Wrath",
"sort": 500000,
"system": {
"area": {
"type": "burst",
"value": 20
},
"cost": {
"value": ""
},
"counteraction": false,
"damage": {
"0": {
"applyMod": false,
"category": null,
"formula": "4d10",
"kinds": [
"damage"
],
"materials": [],
"type": "spirit"
}
},
"defense": {
"save": {
"basic": false,
"statistic": "fortitude"
}
},
"description": {
"value": "<p>You channel the fury of divinity against your foes. You deal 4d10 spirit damage to enemies in the area, depending on their Fortitude save.</p>\n<hr />\n<p><strong>Critical Success</strong> The creature is unaffected.</p>\n<p><strong>Success</strong> The creature takes half damage.</p>\n<p><strong>Failure</strong> The creature takes full damage and is @UUID[Compendium.pf2e.conditionitems.Item.Sickened]{Sickened 1}.</p>\n<p><strong>Critical Failure</strong> The creature takes full damage and is @UUID[Compendium.pf2e.conditionitems.Item.Sickened]{Sickened 2}; while it's sickened, it's also @UUID[Compendium.pf2e.conditionitems.Item.Slowed]{Slowed 1}.</p>\n<hr />\n<p><strong>Heightened (+1)</strong> The damage increases by 1d10.</p>"
},
"duration": {
"sustained": false,
"value": ""
},
"heightening": {
"damage": {
"0": "1d10"
},
"interval": 1,
"type": "interval"
},
"level": {
"value": 4
},
"location": {
"heightenedLevel": 6,
"value": "P3DKNYk3hMABVGY0"
},
"overlays": {},
"publication": {
"license": "ORC",
"remaster": true,
"title": "Pathfinder Player Core"
},
"range": {
"value": "120 feet"
},
"requirements": "",
"rules": [],
"slug": "divine-wrath",
"target": {
"value": ""
},
"time": {
"value": "2"
},
"traits": {
"rarity": "common",
"traditions": [
"divine"
],
"value": [
"concentrate",
"manipulate",
"sanctified"
]
}
},
"type": "spell"
},
{
"_id": "jOaW9pafb2Ubw6x8",
"flags": {
"core": {
"sourceId": "Compendium.pf2e.spells-srd.Item.OyFCwQuw8XRazsNr"
}
},
"img": "systems/pf2e/icons/spells/remove-curse.webp",
"name": "Remove Curse",
"sort": 600000,
"system": {
"area": null,
"cost": {
"value": ""
},
"counteraction": true,
"damage": {},
"defense": null,
"description": {
"value": "<p>Your touch grants a reprieve to a cursed creature. You attempt to counteract one curse afflicting the target. If the curse comes from a cursed item or other external source, a success indicates that the target creature can rid itself of the cursed item, but it doesn't remove the curse from the item.</p>"
},
"duration": {
"sustained": false,
"value": ""
},
"level": {
"value": 4
},
"location": {
"heightenedLevel": 4,
"value": "P3DKNYk3hMABVGY0"
},
"publication": {
"license": "OGL",
"remaster": false,
"title": "Pathfinder Core Rulebook"
},
"range": {
"value": "touch"
},
"requirements": "",
"rules": [],
"slug": "remove-curse",
"target": {
"value": "1 creature"
},
"time": {
"value": "10 minutes"
},
"traits": {
"rarity": "common",
"traditions": [
"divine",
"occult"
],
"value": [
"concentrate",
"healing",
"manipulate"
]
}
},
"type": "spell"
},
{
"_id": "VP2HJIgxfSkwY5Zc",
"flags": {
"core": {
"sourceId": "Compendium.pf2e.spells-srd.Item.mpGCMTldMVa0pWYs"
}
},
"img": "systems/pf2e/icons/spells/circle-of-protection.webp",
"name": "Circle of Protection",
"sort": 700000,
"system": {
"area": {
"details": "10-foot emanation centered on the touched creature",
"type": "emanation",
"value": 10
},
"cost": {
"value": ""
},
"counteraction": false,
"damage": {},
"defense": null,
"description": {
"value": "<p>You ward a creature and those nearby against a specified alignment. Choose chaotic, evil, good, or lawful; this spell gains the opposing trait. Creatures in the area gain a +1 status bonus to AC against attacks by creatures of the chosen alignment and to saves against effects from such creatures. This bonus increases to +3 against effects from such creatures that directly control the target and attacks made by summoned creatures of the chosen alignment. Summoned creatures of the chosen alignment can't willingly enter the area without succeeding at a Will save; repeated attempts use the first save result.</p>\n<hr />\n<p><strong>Heightened (4th)</strong> The duration increases to 1 hour.</p>\n<p>@UUID[Compendium.pf2e.spell-effects.Item.Spell Effect: Protection]</p>"
},
"duration": {
"sustained": false,
"value": "1 minute"
},
"level": {
"value": 3
},
"location": {
"heightenedLevel": 4,
"value": "P3DKNYk3hMABVGY0"
},
"publication": {
"license": "OGL",
"remaster": false,
"title": "Pathfinder Core Rulebook"
},
"range": {
"value": "touch"
},
"requirements": "",
"rules": [],
"slug": "circle-of-protection",
"target": {
"value": ""
},
"time": {
"value": "3"
},
"traits": {
"rarity": "uncommon",
"traditions": [
"divine",
"occult"
],
"value": [
"concentrate",
"manipulate"
]
}
},
"type": "spell"
},
{
"_id": "SQK72cDQhjx20HGm",
"flags": {
"core": {
"sourceId": "Compendium.pf2e.spells-srd.Item.RneiyehRO6f7LP44"
}
},
"img": "icons/magic/death/skull-poison-green.webp",
"name": "Remove Disease",
"sort": 800000,
"system": {
"area": null,
"cost": {
"value": ""
},
"counteraction": true,
"damage": {},
"defense": null,
"description": {
"value": "<p>Healing magic purges disease from a creature's body. You attempt to counteract one disease afflicting the target.</p>"
},
"duration": {
"sustained": false,
"value": ""
},
"level": {
"value": 3
},
"location": {
"heightenedLevel": 3,
"value": "P3DKNYk3hMABVGY0"
},
"publication": {
"license": "OGL",
"remaster": false,
"title": "Pathfinder Core Rulebook"
},
"range": {
"value": "touch"
},
"requirements": "",
"rules": [],
"slug": "remove-disease",
"target": {
"value": "1 creature"
},
"time": {
"value": "10 minutes"
},
"traits": {
"rarity": "common",
"traditions": [
"divine",
"primal"
],
"value": [
"concentrate",
"healing",
"manipulate"
]
}
},
"type": "spell"
},
{
"_id": "p8Aob5IPL0QAAEoZ",
"flags": {
"core": {
"sourceId": "Compendium.pf2e.spells-srd.Item.EfFMLVbmkBWmzoLF"
}
},
"img": "systems/pf2e/icons/spells/remove-fear.webp",
"name": "Remove Fear",
"sort": 900000,
"system": {
"area": null,
"cost": {
"value": ""
},
"counteraction": true,
"damage": {},
"defense": null,
"description": {
"value": "<p>With a touch, you ease a creature's fears. You can attempt to counteract a single fear effect that the target suffers from. This frees only the target, not any other creatures under the fear effect.</p>\n<hr />\n<p><strong>Heightened (6th)</strong> The spell's range increases to 30 feet, and you can target up to 10 creatures.</p>"
},
"duration": {
"sustained": false,
"value": ""
},
"heightening": {
"levels": {
"6": {
"range": {
"value": "30 feet"
},
"target": {
"value": "10 creatures"
}
}
},
"type": "fixed"
},
"level": {
"value": 2
},
"location": {
"heightenedLevel": 6,
"value": "P3DKNYk3hMABVGY0"
},
"publication": {
"license": "OGL",
"remaster": false,
"title": "Pathfinder Core Rulebook"
},
"range": {
"value": "touch"
},
"requirements": "",
"rules": [],
"slug": "remove-fear",
"target": {
"value": "1 creature"
},
"time": {
"value": "2"
},
"traits": {
"rarity": "common",
"traditions": [
"divine",
"occult",
"primal"
],
"value": [
"concentrate",
"manipulate"
]
}
},
"type": "spell"
},
{
"_id": "imPNURmFHOrPlpkQ",
"flags": {
"core": {
"sourceId": "Compendium.pf2e.spells-srd.Item.d7Lwx6KAs47MtF0q"
}
},
"img": "systems/pf2e/icons/spells/shield-other.webp",
"name": "Shield Other",
"sort": 1000000,
"system": {
"area": null,
"cost": {
"value": ""
},
"counteraction": false,
"damage": {},
"defense": null,
"description": {
"value": "<p>You forge a temporary link between the target's life essence and your own. The target takes half damage from all effects that deal Hit Point damage, and you take the remainder of the damage. When you take damage through this link, you don't apply any resistances, weaknesses, or other abilities you have to that damage; you simply take that amount of damage. The spell ends if the target is ever more than 30 feet away from you. If either you or the target is reduced to 0 Hit Points, any damage from this spell is resolved and then the spell ends.</p>"
},
"duration": {
"sustained": false,
"value": "10 minutes"
},
"level": {
"value": 2
},
"location": {
"heightenedLevel": 2,
"value": "P3DKNYk3hMABVGY0"
},
"publication": {
"license": "OGL",
"remaster": false,
"title": "Pathfinder Core Rulebook"
},
"range": {
"value": "30 feet"
},
"requirements": "",
"rules": [],
"slug": "shield-other",
"target": {
"value": "1 creature"
},
"time": {
"value": "2"
},
"traits": {
"rarity": "common",
"traditions": [
"divine"
],
"value": [
"concentrate",
"manipulate"
]
}
},
"type": "spell"
},
{
"_id": "r6avuc82SNavBY0X",
"flags": {
"core": {
"sourceId": "Compendium.pf2e.spells-srd.Item.BBvV7qoXGdw09q1C"
}
},
"img": "icons/creatures/mammals/ox-buffalo-horned-green.webp",
"name": "Speak with Animals (Constant)",
"sort": 1100000,
"system": {
"area": null,
"cost": {
"value": ""
},
"counteraction": false,
"damage": {},
"defense": null,
"description": {
"value": "<p>You can ask questions of, receive answers from, and use the Diplomacy skill with animals. The spell doesn't make them more friendly than normal. Cunning animals are likely to be terse and evasive, while less intelligent ones often make inane comments.</p>"
},
"duration": {
"sustained": false,
"value": "10 minutes"
},
"level": {
"value": 2
},
"location": {
"heightenedLevel": 6,
"value": "P3DKNYk3hMABVGY0"
},
"publication": {
"license": "OGL",
"remaster": false,
"title": "Pathfinder Core Rulebook"
},
"range": {
"value": ""
},
"requirements": "",
"rules": [],
"slug": "speak-with-animals",
"target": {
"value": ""
},
"time": {
"value": "2"
},
"traits": {
"rarity": "common",
"traditions": [
"primal"
],
"value": [
"concentrate",
"manipulate"
]
}
},
"type": "spell"
},
{
"_id": "21JIzAuT9NbbwX3N",
"img": "systems/pf2e/icons/default-icons/melee.svg",
"name": "Jaws",
"sort": 1200000,
"system": {
"attack": {
"value": ""
},
"attackEffects": {
"value": []
},
"bonus": {
"value": 25
},
"damageRolls": {
"2x7pv0SGBFe3SNeN": {
"damage": "3d8+13",
"damageType": "piercing"
},
"30XimJAEyreIjgSN": {
"damage": "1d6",
"damageType": "spirit"
}
},
"description": {
"value": ""
},
"publication": {
"license": "OGL",
"remaster": false,
"title": ""
},
"rules": [],
"slug": null,
"traits": {
"rarity": "common",
"value": [
"good",
"holy",
"magical"
]
},
"weaponType": {
"value": "melee"
}
},
"type": "melee"
},
{
"_id": "SToxISh7fUFYil62",
"img": "systems/pf2e/icons/default-icons/melee.svg",
"name": "Claw",
"sort": 1300000,
"system": {
"attack": {
"value": ""
},
"attackEffects": {
"value": []
},
"bonus": {
"value": 25
},
"damageRolls": {
"dKluUYVnfFmggk1L": {
"damage": "3d4+13",
"damageType": "slashing"
},
"jWycPEowPsOAIrc4": {
"damage": "1d6",
"damageType": "spirit"
}
},
"description": {
"value": ""
},
"publication": {
"license": "OGL",
"remaster": false,
"title": ""
},
"rules": [],
"slug": null,
"traits": {
"rarity": "common",
"value": [
"agile",
"good",
"holy",
"magical"
]
},
"weaponType": {
"value": "melee"
}
},
"type": "melee"
},
{
"_id": "ZADMtLtTzI1RQr8d",
"flags": {
"core": {
"sourceId": "Compendium.pf2e.bestiary-ability-glossary-srd.Item.kakyXBG5WA8c6Zfd"
}
},
"img": "systems/pf2e/icons/actions/Passive.webp",
"name": "Constant Spells",
"sort": 1400000,
"system": {
"actionType": {
"value": "passive"
},
"actions": {
"value": null
},
"category": "interaction",
"description": {
"value": "<p>@Localize[PF2E.NPC.Abilities.Glossary.ConstantSpells]</p>"
},
"publication": {
"license": "OGL",
"remaster": false,
"title": "Pathfinder Bestiary"
},
"rules": [],
"slug": "constant-spells",
"traits": {
"rarity": "common",
"value": []
}
},
"type": "action"
},
{
"_id": "ia6gTy9AbC5ZJ1eA",
"flags": {
"core": {
"sourceId": "Compendium.pf2e.bestiary-ability-glossary-srd.Item.kquBnQ0kObZztnBc"
}
},
"img": "systems/pf2e/icons/actions/Passive.webp",
"name": "+1 Status to All Saves vs. Magic",
"sort": 1500000,
"system": {
"actionType": {
"value": "passive"
},
"actions": {
"value": null
},
"category": "defensive",
"description": {
"value": ""
},
"publication": {
"license": "OGL",
"remaster": false,
"title": ""
},
"rules": [
{
"key": "FlatModifier",
"predicate": [
{
"or": [
"magical",
"arcane",
"divine",
"primal",
"occult"
]
}
],
"selector": "saving-throw",
"type": "status",
"value": 1
}
],
"slug": "1-status-to-all-saves-vs-magic",
"traits": {
"rarity": "common",
"value": []
}
},
"type": "action"
},
{
"_id": "T9NrWUqpdUWVCGhm",
"img": "systems/pf2e/icons/actions/Reaction.webp",
"name": "Interposition",
"sort": 1600000,
"system": {
"actionType": {
"value": "reaction"
},
"actions": {
"value": null
},
"category": "defensive",
"description": {
"value": "<p><strong>Trigger</strong> A ward within the guloval's reach would take damage from a Strike, and the guloval is within the attacker's reach</p>\n<hr />\n<p><strong>Effect</strong> The guloval blocks the attack with their own body, taking the triggering attack's damage. The ward takes no damage.</p>"
},
"publication": {
"license": "OGL",
"remaster": false,
"title": ""
},
"rules": [],
"slug": null,
"traits": {
"rarity": "common",
"value": []
}
},
"type": "action"
},
{
"_id": "VoSJvMRJRCq4iW4H",
"img": "systems/pf2e/icons/actions/Passive.webp",
"name": "Righteous Wound",
"sort": 1700000,
"system": {
"actionType": {
"value": "passive"
},
"actions": {
"value": null
},
"category": "offensive",
"description": {
"value": "<p>When a guloval critically hits an evil creature with any melee Strike, the evil creature becomes @UUID[Compendium.pf2e.conditionitems.Item.Frightened]{Frightened 1}. If that evil creature has damaged one of the guloval's wards within the last round, it's instead @UUID[Compendium.pf2e.conditionitems.Item.Frightened]{Frightened 2}.</p>"
},
"publication": {
"license": "OGL",
"remaster": false,
"title": ""
},
"rules": [
{
"key": "Note",
"outcome": [
"criticalSuccess"
],
"predicate": [
"target:trait:evil"
],
"selector": "strike-damage",
"text": "{item|system.description.value}",