-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDungeon Church; Pyora NPCs.json
More file actions
1633 lines (1633 loc) · 66.3 KB
/
Copy pathDungeon Church; Pyora NPCs.json
File metadata and controls
1633 lines (1633 loc) · 66.3 KB
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
{
"_meta": {
"sources": [
{
"json": "DungeonChurchNPCs",
"abbreviation": "CHURCH",
"full": "Dungeon Church; Pyora NPCs",
"version": "1.0",
"url": "https://www.dungeon.church",
"authors": [
"DM Brad"
],
"convertedBy": [
"DM Brad"
],
"color": "ff2600"
}
],
"dateAdded": 1711973394,
"dateLastModified": 1769653674,
"edition": "classic"
},
"monster": [
{
"name": "Amelia, Knight of Twilight",
"isNpc": true,
"source": "DungeonChurchNPCs",
"size": [
"M"
],
"type": "undead",
"alignment": [
"E"
],
"ac": [
{
"ac": 20,
"from": [
"mage armor"
]
}
],
"hp": {
"average": 162,
"formula": "25d8 + 50"
},
"speed": {
"walk": 30,
"fly": 30
},
"str": 6,
"dex": 12,
"con": 14,
"int": 16,
"wis": 20,
"cha": 20,
"save": {
"int": "+8",
"wis": "+10",
"cha": "+10"
},
"skill": {
"history": "+8",
"insight": "+9",
"perception": "+9",
"arcana": "+8",
"survival": "+13",
"deception": "+9"
},
"spellcasting": [
{
"name": "Innate Spellcasting",
"type": "spellcasting",
"headerEntries": [
"Amelia's spellcasting attribute is Charisma (save {@dc 19}, {@hit 12} to hit with spell attacks). She can innately cast the following spells, requiring no material components:"
],
"will": [
"{@spell faerie fire}",
"{@spell hex}",
"{@spell misty step}",
"{@spell silent image}",
"{@spell tongues}"
],
"daily": {
"1e": [
"{@spell power word kill}",
"{@spell sleep} (9th level)",
"{@spell true polymorph}",
"{@spell time stop}"
],
"2e": [
"{@spell bestow curse}",
"{@spell feeblemind}",
"{@spell mass suggestion}",
"{@spell flesh to stone}"
],
"3e": [
"{@spell chain lightning}",
"{@spell counterspell}",
"{@spell dispel magic}",
"{@spell hypnotic pattern}",
"{@spell teleportation circle}"
]
},
"ability": "cha"
}
],
"senses": [
"truesight 60 ft."
],
"passive": 25,
"immune": [
"fire",
"psychic"
],
"languages": [
"Common",
"Infernal",
"telepathy (100 ft.)"
],
"cr": "12",
"trait": [
{
"name": "Bend Fate (3/Day)",
"entries": [
"If Amelia fails a saving throw, she may choose to succeed instead and reflect the effect of the failed saving throw onto one enemy within 30 feet. Amelia still suffers the effect of a successful saving throw, if any. The new target is entitled to a saving throw as if it were the original target of the attack, but with disadvantage."
]
},
{
"name": "Magic Resistance",
"entries": [
"Amelia has advantage on saving throws against spells and other magical effects."
]
},
{
"name": "Misty Step (At Will)",
"entries": [
"Amelia can step between places as a bonus action."
]
},
{
"name": "Sealed Destiny (1/Day)",
"entries": [
"Amelia attunes herself to the threads of the PCs' fates. Ask each player to write down their prediction of how the PC to their left will die, and at what level. Collect the notes without revealing the answers. When one of those PCs dies, reveal the prediction. If the character died in the manner predicted, they fulfill their destiny and are immediately resurrected by the gods as a reward. If they died at or within one level of the prediction, they return to life with some useful insight into the destiny of someone important."
]
},
{
"name": "Regeneration",
"entries": [
"Amelia regains 20 hit points at the start of her turn if she has at least 1 hit point and isn't in sunlight or running water. If she takes radiant damage or damage from holy water, this trait doesn't function at the start of her next turn."
]
}
],
"action": [
{
"name": "Multiattack",
"entries": [
"Amelia makes two Inexorable Thread attacks."
]
},
{
"name": "Inexorable Threads",
"entries": [
"{@atk mw} {@hit 9} to hit, reach 30 ft., one target. {@h}27 ({@damage 5d8 + 5}) radiant damage, and the target is \"one step closer to death.\" If the target is reduced to 0 hit points, it's treated as if it's already failed one death saving throw. This effect is cumulative; each inexorable threads hit adds one unsuccessful death saving throw. A creature can remove this cumulative effect by completing a long rest or by being the target of a {@spell greater restoration} or {@spell heal} spell. If a creature who's been hit three or more times by inexorable threads is reduced to 0 hit points, they die immediately."
]
},
{
"name": "Bind Fates (1/Day)",
"entries": [
"One target within 60 feet of Amelia must make a {@dc 18} Wisdom saving throw. On a failed save, the target's fate is bound to one random ally of the target within 60 feet. Any damage or condition the target suffers is inflicted on the individual to which they are bound instead, and vice versa. A creature can be bound to only one other creature at a time. This effect lasts until 7 days pass, either of the affected creatures gains a level, or until a {@spell heal} or {@spell heroes' feast} spell is used to lift this binding."
]
},
{
"name": "Destiny Distortion Wave {@recharge 5}",
"entries": [
"Amelia projects a 60-foot cone of distortion that frays the strands of fate. Each creature in that area must make a {@dc 18} Wisdom saving throw. On a failed save, a creature takes 55 ({@damage 10d10}) force damage, and if more than one creature failed its saving throw, all conditions affecting those creatures are randomly redistributed among them. On a successful save, a creature takes half as much damage and isn't affected by the condition redistribution."
]
}
],
"environment": [
"any",
"forest",
"urban"
],
"tokenHref": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tokens/bestiary-amelia-token.png"
},
"traitTags": [
"Magic Resistance"
],
"senseTags": [
"U"
],
"actionTags": [
"Multiattack"
],
"languageTags": [
"C",
"I",
"TP"
],
"miscTags": [
"MW",
"RCH",
"AOE"
],
"fluff": {
"entries": [
{
"type": "entries",
"name": "A Dark Bargain",
"entries": [
"An orphan in early {@link Saltmarsh|https://lore.dungeon.church/doc/saltmarsh-GkGI6ISio5} who showed a natural affinity for magic, Amelia was driven out of town by a mob after killing the young {@link Oweland|https://lore.dungeon.church/doc/oweland-estate-pW6osn13sD} twin boys. {@link Sir Thomas Oweland|https://lore.dungeon.church/doc/sir-thomas-oweland-A6kJDPu7SS} and {@creature Lamont Solmar, Knight of Night|DungeonChurchNPCs|Lamont Solmar} stepped in to save her life. As punishment, she was sent to assist the old and sickly alchemist on the outskirts of Saltmarsh.",
"Not safe to show her face in town, she took to exploring the {@link Dreadwood|https://lore.dungeon.church/doc/dreadwood-GcfKdBzGyT} at night, where she met {@link Lady Nightshade|https://lore.dungeon.church/doc/lady-nightshade-3kjLNj2Zbs}. The Lady promised her great power and eternal life if she would bring her the heart of someone pure. Amelia betrayed Lamont Solmar, and they were both turned into the Lady's vampire knights."
]
},
{
"type": "inset",
"name": "Dungeon Church Lore",
"entries": [
"Learn more about {@link Amelia in the wiki|https://lore.dungeon.church/doc/amelia-mAibH1T0Em}."
]
}
],
"images": [
{
"type": "image",
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/bestiary-amelia.png"
}
}
]
},
"shortName": "Amelia",
"resist": [
"radiant",
"necrotic"
],
"damageTags": [
"O",
"R"
],
"savingThrowForced": [
"wisdom"
]
},
{
"name": "Caelum the Druid",
"source": "DungeonChurchNPCs",
"size": [
"M"
],
"type": {
"type": "humanoid",
"tags": [
"pyoran"
]
},
"alignment": [
"C",
"G"
],
"ac": [
13,
{
"ac": 18,
"condition": "with {@spell barkskin}",
"braces": true
}
],
"hp": {
"formula": "5d8 + 20",
"average": 42
},
"speed": {
"walk": 30,
"burrow": 5
},
"str": 13,
"dex": 16,
"con": 18,
"int": 12,
"wis": 17,
"cha": 11,
"skill": {
"medicine": "+6",
"nature": "+4",
"perception": "+6",
"survival": "+6"
},
"passive": 16,
"languages": [
"Common",
"Deep Crow",
"Druidic",
"Primordial"
],
"cr": "6",
"spellcasting": [
{
"name": "Spellcasting",
"headerEntries": [
"The druid is a 9th-level spellcaster. Its spellcasting ability is Wisdom (spell save {@dc 14}, {@hit 7} to hit with spell attacks). It has the following druid spells prepared:"
],
"spells": {
"0": {
"spells": [
"{@spell druidcraft}",
"{@spell mending}",
"{@spell minor illusion}",
"{@spell shillelagh}"
]
},
"1": {
"spells": [
"{@spell creeping touch|GHPG}",
"{@spell entangle}",
"{@spell speak with animals}",
"{@spell witch bolt}"
],
"slots": 4,
"lower": 1
},
"2": {
"spells": [
"{@spell animal messenger}",
"{@spell barkskin}",
"{@spell invisibility}",
"{@spell moonbeam}",
"{@spell spider climb}"
],
"slots": 3
},
"3": {
"spells": [
"{@spell conjure animals}",
"{@spell daylight}",
"{@spell serpent tongue|GHPG}",
"{@spell sleet storm}"
],
"slots": 3
},
"4": {
"spells": [
"{@spell consume mind|GHPG}",
"{@spell hallucinatory terrain}",
"{@spell sickening radiance|XGE}"
],
"slots": 3
},
"5": {
"spells": [
"{@spell antilife shell}",
"{@spell contagion}",
"{@spell reincarnate}"
],
"slots": 1
}
},
"ability": "wis",
"type": "spellcasting"
}
],
"action": [
{
"name": "Quarterstaff",
"entries": [
"{@atk mw} {@hit 5} to hit ({@hit 7} to hit with shillelagh), reach 5 ft., one target. {@h}7 ({@damage 2d6}) bludgeoning damage, 9 ({@damage 2d8}) bludgeoning damage if wielded with two hands, or 12 ({@damage 2d8 + 3}) bludgeoning damage with {@spell shillelagh}."
]
}
],
"environment": [
"coastal",
"forest",
"swamp"
],
"attachedItems": [
"staff of withering|DMG"
],
"languageTags": [
"C",
"DU",
"P"
],
"spellcastingTags": [
"CD"
],
"miscTags": [
"MW"
],
"hasFluff": true,
"hasFluffImages": true,
"tokenHref": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tokens/bestiary-caelum-token.png"
},
"soundClip": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/sounds/pron-caelum-the-druid.mp3"
},
"fluff": {
"entries": [
{
"type": "entries",
"name": "Duskmire Refugee",
"entries": [
"A druid who lives in a crooked and dilapidated hut in the {@link Dreadwood|https://lore.dungeon.church/doc/dreadwood-GcfKdBzGyT}. He escaped from {@link Duskmire|https://lore.dungeon.church/doc/duskmire-hJey19lfsu}, one of the human cattle who was preyed on for blood by the {@creature vampire|MM|vampires}. Although he physically made it out of the dark city, his mind was irreparably broken.",
"He spends his time alone in the woods experimenting on strange new potions and tending after the undead animals who are turned from feeding on the carrion outside the gates of the vampire city. His closest friends are a one-eyed crow named Murder and a mischievous band of {@creature zombie raccoon|dungeonchurch|zombie raccoons} who love fingers."
]
},
{
"type": "entries",
"name": "Noctiflora",
"entries": [
"After experimenting on {@item Nightshade Poison|dungeonchurch}, a concentrated form of {@link Sapphire Nightshade|https://lore.dungeon.church/doc/sapphire-nightshade-Qvbjiqksvy}, Caelum discovered it causes profound transformations under the light of a full moon. His findings were published as a book: {@i {@table Books of Pyora|dungeonchurch|Noctiflora: Lunar Mutagens in Solanaceae}}."
]
},
{
"type": "inset",
"name": "Dungeon Church Lore",
"entries": [
"Learn more about {@link Caelum in the wiki|https://lore.dungeon.church/doc/caelum-the-druid-SHH5bzkRpF}."
]
}
],
"images": [
{
"type": "image",
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/bestiary-caelum.png"
}
}
]
},
"shortName": "Caelum",
"senses": [
"darkvision 30 ft."
],
"senseTags": [
"D"
],
"resist": [
"poison"
],
"vulnerable": [
"psychic"
],
"conditionImmune": [
"frightened",
"poisoned"
],
"isNamedCreature": true,
"isNpc": true,
"damageTags": [
"B"
],
"damageTagsSpell": [
"L",
"P",
"R"
],
"savingThrowForcedSpell": [
"constitution",
"dexterity",
"strength"
]
},
{
"name": "Commodore Daniel Warrington",
"source": "DungeonChurchNPCs",
"size": [
"M"
],
"type": {
"type": "humanoid",
"tags": [
"pyoran"
]
},
"alignment": [
"L",
"N"
],
"ac": [
{
"ac": 18,
"from": [
"{@item plate armor|PHB|plate}"
]
}
],
"hp": {
"formula": "16d8 + 48",
"average": 120
},
"speed": {
"walk": 30
},
"str": 19,
"dex": 10,
"con": 16,
"int": 12,
"wis": 14,
"cha": 17,
"skill": {
"insight": "+6",
"investigation": "+5",
"perception": "+6",
"religion": "+5",
"history": "+5",
"intimidation": "+7"
},
"passive": 16,
"cr": "9",
"spellcasting": [
{
"name": "Spellcasting",
"headerEntries": [
"Commodore Daniel is a 12th-level spellcaster. His spellcasting ability is Charisma (spell save {@dc 15}). The Commodore has the following pspells prepared:"
],
"spells": {
"1": {
"spells": [
"{@spell detect magic}",
"{@spell hunter's mark}",
"{@spell speak with animals}",
"{@spell wrathful smite}"
],
"slots": 4
},
"2": {
"spells": [
"{@spell animal messenger}",
"{@spell detect thoughts}",
"{@spell lesser restoration}",
"{@spell moonbeam}",
"{@spell zone of truth}"
],
"slots": 3
},
"3": {
"spells": [
"{@spell bestow curse}",
"{@spell dispel magic}"
],
"slots": 3
}
},
"will": [
"{@spell beast sense}",
"{@spell green-flame blade|TCE}",
"{@spell holy word|GH}",
"{@spell sacred flame}"
],
"ability": "cha",
"type": "spellcasting"
}
],
"trait": [
{
"name": "Aura of Clarity (Human Form)",
"entries": [
"While within 10 feet of a conscious Commodore Daniel, creatures of the Commodore's choice can't be {@condition blinded} or {@condition frightened}, and creatures and objects can be {@condition invisible} only if the commodore allows it."
]
},
{
"name": "Brand Heretic (Recharges after a Short or Long Rest)",
"entries": [
"As a bonus action, the Commodore Daniel chooses one creature the Commodore can see within 30 feet of it. The Commodore marks the target as a heretic. For 1 minute, the Commodore's weapon attack rolls against the heretic score a critical hit on a roll of 19 or 20. At the start of each of the heretic's turns, the Commodore can use a reaction to make one weapon attack against the heretic."
]
},
{
"name": "Smite",
"entries": [
"When Commodore Daniel hits with a melee weapon attack, it can expend one spell slot to deal extra radiant damage. The extra damage is 9 ({@dice 2d8}) for a 1st level spell slot, 13 ({@dice 3d8}) for a 2nd-level one, and 18 ({@dice 4d8}) for a 3rd level slot."
]
},
{
"name": "Shapechanger",
"entries": [
"As an action, Commodore Daniel can polymorph into one of his lycanthrope forms: a boar-humanoid hybrid or a {@creature Boar}. While in lycanthrope form, the wereboar gains resistance to bludgeoning, piercing, and slashing damage from non-silvered, non-magical sources. Any equipment he is wearing or carrying isn't transformed. He reverts to its true form if he dies."
]
},
{
"name": "Charge (Lycanthrope Form)",
"entries": [
"If the wereboar moves at least 15 feet straight toward a target and then hits it with its tusks on the same turn, the target takes an extra 7 ({@dice 2d6}) slashing damage. If the target is a creature, it must succeed on a {@dc 13} Strength saving throw or be knocked {@condition prone}."
]
},
{
"name": "Lust for the Hunt (Lycanthrope Form)",
"entries": [
"The savage nature of your curse causes you to lose control. When in hybrid form, make a {@dc 12} Wisdom saving throw at the beginning of each turn. On a fail, the wereboar is overcome with bloodlust and attacks the nearest creature, or dashes towards the nearest helpless or weak creature."
]
}
],
"action": [
{
"name": "Multiattack",
"entries": [
"The Commodore makes two attacks, only one of which can be with his tusks if in hybrid form."
]
},
{
"name": "Greatsword",
"entries": [
"{@atk mw} {@hit 8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) slashing damage and 4 ({@damage 1d8}) radiant damage."
]
},
{
"name": "Maul (Lycanthrope Form)",
"entries": [
"{@atk mw} {@hit +8} to hit, reach 5 ft., one target. {@h}11 ({@damage 2d6 + 4}) bludgeoning damage."
]
},
{
"name": "Tusks (Lycanthrope Form)",
"entries": [
"{@atk mw} {@hit +5} to hit, reach ft., one target. {@h}10 ({@damage 2d6+3}) slashing damage. If the target is a humanoid, it must succeed on a {@dc 12} Constitution saving throw or be cursed with wereboar lycanthropy."
]
}
],
"tokenHref": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tokens/bestiary-commodore-daniel-token.png"
},
"actionTags": [
"Multiattack"
],
"spellcastingTags": [
"CP"
],
"miscTags": [
"MW",
"MLW"
],
"fluff": {
"entries": [
{
"type": "entries",
"name": "Iron Rider",
"entries": [
"A {@creature Iron Rider Commodore|dungeonchurch|Commodore} in the {@link Iron Riders of Abraxas|https://lore.dungeon.church/doc/iron-riders-of-abraxas-P77pTaxjou}, Daniel first arrived in {@link Saltmarsh|https://lore.dungeon.church/doc/saltmarsh-GkGI6ISio5} at the {@link Feast of the Seven Fishes|https://lore.dungeon.church/doc/session-14-festivals-eve-VAcA8ZfizE} festival, where he fought adventurers in the carnival arena before they disrupted the event and caused chaos."
]
},
{
"type": "entries",
"name": "Lust for Vengeance",
"entries": [
"His {@link father|https://lore.dungeon.church/doc/commodore-wardell-warrington-JVLIYKxGXE} the former Commodore was {@link killed aboard|https://lore.dungeon.church/doc/session-15-16-murder-on-the-jubilee-b5dYJiJkGZ} the Dragon's Jubilee by the vampire {@creature Lamont Solmar, Knight of Night|DungeonChurchNPCs|Lamont Solmar}, who was shapechanged as {@link Skerrin Wavechaser|https://lore.dungeon.church/doc/skerrin-wavechaser-sCnR3QOnff}. The young Lieutenant became the new Commodore, bent on avenging his father's death. He consolidated control of security forces after the {@link sahuagin attack|https://lore.dungeon.church/doc/session-17-the-fate-of-saltmarsh-mBiDgChv72}, taking over what was left of the {@link Saltmarsh Town Guard|https://lore.dungeon.church/doc/saltmarsh-town-guard-v63eLpRU1Q} and thus gaining himself a seat on the {@link Saltmarsh Council|https://lore.dungeon.church/doc/saltmarsh-council-8KxfpMfTQ0}."
]
},
{
"type": "entries",
"name": "Curse of Lycanthropy",
"entries": [
"During a {@link brazen assault|https://lore.dungeon.church/doc/the-ladys-price-9GqAM1W0Pw} on his mansion by an assassin squad sent by {@link Lady Nightshade|https://lore.dungeon.church/doc/lady-nightshade-3kjLNj2Zbs}, Daniel was dosed with {@item Nightshade Poison|dungeonchurch}, transforming him into a {@creature wereboar} lycanthrope. His baby boy was stolen from his wife's arms during the attack.",
"Adventurers from the {@link Gold Scale Company|https://lore.dungeon.church/doc/gold-scale-company-m1WdlmIYwP} later tracked his wereboar form down in the forest, discovering that he was the murderous beast that had been terrorizing the town."
]
},
{
"type": "inset",
"name": "Dungeon Church Lore",
"entries": [
"Learn more about {@link Commodore Daniel Warrington in the wiki|https://lore.dungeon.church/doc/commodore-daniel-warrington-OHzOMkhMHS}."
]
}
],
"images": [
{
"type": "image",
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/bestiary-commodore-daniel.png"
}
}
]
},
"attachedItems": [
"greatsword|phb",
"maul|phb"
],
"shortName": "Commodore Daniel",
"languages": [
"Common",
"Dwarvish",
"Infernal"
],
"languageTags": [
"C",
"D",
"I"
],
"conditionImmune": [
"frightened"
],
"environment": [
"coastal",
"urban"
],
"isNpc": true,
"senses": [
"darkvision 60 ft."
],
"senseTags": [
"D"
],
"traitTags": [
"Charge",
"Shapechanger"
],
"conditionInflict": [
"prone"
],
"damageTags": [
"B",
"R",
"S"
],
"damageTagsSpell": [
"F",
"N",
"R",
"Y"
],
"savingThrowForced": [
"constitution",
"strength",
"wisdom"
],
"savingThrowForcedSpell": [
"charisma",
"constitution",
"dexterity",
"wisdom"
]
},
{
"name": "King Thistletongue",
"source": "DungeonChurchNPCs",
"size": [
"S"
],
"type": "plant",
"alignment": [
"C"
],
"ac": [
{
"ac": 17,
"from": [
"natural armor"
]
}
],
"hp": {
"formula": "15d10 + 30",
"average": 112
},
"speed": {
"walk": 25,
"climb": 10
},
"str": 9,
"dex": 21,
"con": 15,
"int": 13,
"wis": 10,
"cha": 15,
"skill": {
"stealth": "+13",
"deception": "+6",
"perception": "+4",
"intimidation": "+6"
},
"senses": [
"darkvision 60 ft."
],
"passive": 14,
"vulnerable": [
"fire"
],
"languages": [
"Briarclick",
"Common",
"Sylvan"
],
"cr": "10",
"trait": [
{
"name": "Fey Blood",
"entries": [
"King Thistletongue counts as both plant and fey for any effect related to type."
]
},
{
"name": "Nimble Escape",
"entries": [
"King Thistletongue can take the {@action Disengage} or {@action Hide} action as a bonus action on each of its turns."
]
}
],
"action": [
{
"name": "Multiattack",
"entries": [
"King Thistletongue makes two claw attacks. If both attacks hit the same target, the target is {@condition grappled} (escape {@dc 16}) and the King uses its Thorny Grapple on it."
]
},
{
"name": "Claw",
"entries": [
"{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}36 ({@damage 9d6 + 5}) piercing damage."
]
},
{
"name": "Spitdart Tongue {@recharge 4}",
"entries": [
"{@atk rw} {@hit 9} to hit, range 20/60 ft., one target. {@h}36 ({@damage 9d6 + 5}) piercing damage.King Thistletongue can shoot thorns from its mouth."
]
},
{
"name": "Entangle",
"entries": [
"Two children of the briar working together can cast a version of the entangle spell with no components, at will. Both creatures must be within 10 feet of each other, and both must use their action to cast the spell. The entangled area must include at least one of the casters but doesn't need to be centered on either caster. Creatures in the area must make a {@dc 16} Strength saving throw or be {@condition restrained}. All children of the briar are immune to the spell's effects."
]
},
{
"name": "Thorny Grapple",
"entries": [
"King Thistletongue's long thorny limbs help it grapple creatures up to Medium size. A {@condition grappled} creature takes 12 ({@damage 5d4}) piercing damage at the end of the child's turn for as long as it remains {@condition grappled}."
]
}
],
"environment": [
"forest"
],
"senseTags": [
"D"
],
"actionTags": [
"Multiattack"
],
"languageTags": [
"C",
"S"
],
"miscTags": [
"MW",
"RW"
],
"conditionInflict": [
"grappled",
"restrained"
],
"resist": [
"piercing",
"poison"
],
"conditionImmune": [
"restrained"
],
"spellcasting": [
{
"name": "Spellcasting",
"headerEntries": [
"King Thistletongue's spellcasting ability is Charisma (spell save {@dc 14}). He can innately cast the following spells, requiring no material components:"
],
"will": [
"{@spell dancing lights}",
"{@spell entangle}",
"{@spell minor illusion}",
"{@spell plant growth}",
"{@spell thorn whip}",
"{@spell vicious mockery}"
],
"daily": {
"1": [
"{@spell major image}",
"{@spell transport via plants}",
"{@spell wall of thorns}",
"{@spell pass without trace}"
]
},
"ability": "cha",
"type": "spellcasting"
}
],
"spellcastingTags": [
"O"
],
"isNpc": true,
"damageTags": [
"P"
],
"damageTagsSpell": [
"P",
"S",
"Y"
],
"savingThrowForced": [
"strength"
],
"savingThrowForcedSpell": [
"dexterity",
"strength",
"wisdom"
],
"tokenHref": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tokens/bestiary-king-thistletongue-token.png"
},
"fluff": {
"entries": [
{
"type": "entries",
"name": "The King of Thieves",
"entries": [
"A bandit {@creature child of the briar|tob1-2023} and self-described \"King,\" Thistletongue is mostly known for robbing travelers in the {@link Dreadwood|https://lore.dungeon.church/doc/dreadwood-GcfKdBzGyT} for shiny objects with his merry band of entanglers."
]
},
{
"type": "entries",
"name": "Born of Magic",
"entries": [
"Children of the briar are a frequent nuisance to fey and mortal alike. They grow in deep briar patches in forest clearings or along sunny hillsides and riverbanks. More rarely, they spawn when a sorcerer or magical creature's blood is spilled on the forest floor, or when summoned into being by obscure druidic items of power."
]
},
{
"type": "entries",
"name": "Thorn Fortresses",
"entries": [
"Despite their size, children of the briar gather in great numbers, cultivating ancient forest thickets into veritable fortresses. Wise men flee when they hear their clicking language in the underbrush, for the children have all the capricious wickedness of spiteful children and a taste for blood."
]
},
{
"type": "entries",
"name": "Spies and Scouts",
"entries": [
"From their lairs, the children of the briar creep far and wide to spy on the forest's inhabitants, sometimes using spiders, monstrous centipedes, and giant dragonflies as mounts. They converse with travelers bearing interesting news, but their words are thorned with gleeful malice, jealous bile, and lies. They are not above murder. They trade news and gossip for trinkets, favors, and drops of spilled blood.",
"The fey have long used the children of the briar as spies and informants, and the power of the Otherworld now courses through their veins, allowing them to work simple magical tricks and slip between the mortal and faerie realms with relative ease."
]
},
{
"type": "inset",
"name": "Dungeon Church Lore",
"entries": [
"Learn more about {@link King Thistletongue in the wiki|https://lore.dungeon.church/doc/king-thistletongue-byqTEswqZE}."
]
}
],
"images": [
{
"type": "image",
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/bestiary-king-thistletongue.png"
}
}
]
}
},
{
"name": "Lamont Solmar, Knight of Night",
"isNpc": true,
"source": "DungeonChurchNPCs",
"shortName": "Lamont Solmar",
"otherSources": [
{
"source": "MM"
}
],
"size": [
"M"
],
"type": {
"type": "undead",
"tags": [
"shapechanger"
]
},
"alignment": [
"L",
"E"
],
"ac": [
{
"ac": 16,
"from": [
"natural armor"
]
}
],
"hp": {
"average": 144,
"formula": "17d8 + 68"
},