forked from TheGiddyLimit/homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Marc Wegmann; The Dream Shifter.json
2999 lines (2999 loc) · 86.5 KB
/
Marc Wegmann; The Dream Shifter.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
{
"_meta": {
"sources": [
{
"json": "DreamS",
"abbreviation": "DreamS",
"full": "The Dream Shifter",
"authors": [
"Marc Wegmann"
],
"convertedBy": [
"Bowsori#7981"
],
"version": "1.0",
"url": "https://www.dmsguild.com/product/329448/The-Dream-Shifter",
"targetSchema": "2.4",
"color": "ff6ee2"
}
],
"optionalFeatureTypes": {
"MNF": "Manifestations",
"ANM": "Anomalies"
},
"dateAdded": 1615753596,
"dateLastModified": 1615753596
},
"class": [
{
"name": "Dream Shifter",
"source": "DreamS",
"hd": {
"number": 1,
"faces": 10
},
"proficiency": [
"int",
"wis"
],
"startingProficiencies": {
"armor": [
"light"
],
"weapons": [
"simple",
"improvised"
],
"skills": [
{
"choose": {
"from": [
"athletics",
"insight",
"investigation",
"Perception",
"Performance",
"survival"
],
"count": 2
}
}
]
},
"startingEquipment": {
"additionalFromBackground": true,
"default": [
"(a) two {@item handaxe|PHB|handaxes} or (b) any {@filter simple weapon|items|category=basic|type=simple weapon}",
"(a) an {@item entertainer's pack|PHB} or (b) an {@item explorer's pack|PHB}",
"{@item Leather armor|PHB} and a {@item dagger|PHB}"
]
},
"multiclassing": {
"requirements": {
"wis": 13,
"str": 13
},
"proficienciesGained": {
"armor": [
"light"
],
"weapons": [
"improvised"
]
}
},
"classSpells": [
{
"name": "Control Flames",
"source": "XGE"
},
"Druidcraft",
"Fire Bolt",
{
"name": "Gust",
"source": "XGE"
},
{
"name": "Mold Earth",
"source": "XGE"
},
"Minor Illusion",
"Ray of Frost",
{
"name": "Shape Water",
"source": "XGE"
},
"Shocking Grasp"
],
"classFeatures": [
"Dream Shape|Dream Shifter|DreamS|1|DreamS",
{
"classFeature": "Eidolon Form|Dream Shifter|DreamS|1|DreamS",
"gainSubclassFeature": true
},
"Lucid Rest|Dream Shifter|DreamS|2|DreamS",
"Reveries|Dream Shifter|DreamS|2|DreamS",
{
"classFeature": "Eidolon Form Feature|Dream Shifter|DreamS|3|DreamS",
"gainSubclassFeature": true
},
"Ability Score Improvement|Dream Shifter|DreamS|4|DreamS",
"Extra Attack|Dream Shifter|DreamS|5|DreamS",
"Reveries (improvement)|Dream Shifter|DreamS|5|DreamS",
{
"classFeature": "Eidolon Form Feature|Dream Shifter|DreamS|6|DreamS",
"gainSubclassFeature": true
},
"Backdoor|Dream Shifter|DreamS|7|DreamS",
"Ability Score Improvement|Dream Shifter|DreamS|8|DreamS",
"Reveries (improvement)|Dream Shifter|DreamS|9|DreamS",
{
"classFeature": "Eidolon Form Feature|Dream Shifter|DreamS|10|DreamS",
"gainSubclassFeature": true
},
"Dream Shape (1 Anomaly)|Dream Shifter|DreamS|11|DreamS",
"Ability Score Improvement|Dream Shifter|DreamS|12|DreamS",
"Reveries (improvement)|Dream Shifter|DreamS|13|DreamS",
{
"classFeature": "Eidolon Form Feature|Dream Shifter|DreamS|14|DreamS",
"gainSubclassFeature": true
},
"Intertwined Mind|Dream Shifter|DreamS|15|DreamS",
"Ability Score Improvement|Dream Shifter|DreamS|16|DreamS",
"Reveries (improvement)|Dream Shifter|DreamS|17|DreamS",
"Dream Shape (2 Anomalies)|Dream Shifter|DreamS|18|DreamS",
"Ability Score Improvement|Dream Shifter|DreamS|19|DreamS",
"Dream Realized|Dream Shifter|DreamS|20|DreamS"
],
"fluff": [
{
"name": "Dream Shifter",
"type": "section",
"entries": [
"Cultists drag an unarmed human warrior before an altar, one more sacrifice for the blood god. In the blink of an eye the human's hands transform into bear claws and his skin into feathers and flames. Panicked the cultists flee deeper into the temple as the surreal creature rises and gives chase.",
"Out of breath an elf stops running and closes her eyes. Her mind dives into a sea of long-forgotten dreams. Once she had dreamed of fire and ash, a dream so real she could still feel the heat on her skin. As she opens her eyes again, the giant ice lizard has almost caught up to her. Calmly she lifts a hand and with a roar the flames spring forth.",
"Between the smoldering remains of a farm stands a dwarf, his body composed of shimmering crystals. He examines a small, wooden toy, the last puzzle piece to the mystery of an old queen's greed. As the dwarf leaves this memory, the farm fades away.",
"Dream shifters have a special connection to the realm of dreams. To be a dream shifter means to embrace aspects of oneself one can neither understand nor control, to transform and bring them to the surface. This magic allows dream shifters to overcome inner and outer limitations and to dive deep into the mysteries of the world.",
{
"type": "entries",
"name": "Fantastic Fusion",
"entries": [
"Each dream shifter has entered a symbiosis with an eidolon, an unstable shapeshifter from the dream realm. This link allows them to manifest the eidolon's surreal features in the material world. Depending on their eidolon a dream shifter can be a horrifying monster or a soothing presence. Even though their manifestations are hard to control, dream shifters have learned to use them as a means of survival and channel them into their own kind of magic."
]
},
{
"type": "entries",
"name": "Confronting the Subconscious",
"entries": [
"Dreamers who visit the dream realm find a place of constant change. There, shapeshifters called eidolons feed on their excess psychic energies. They take the form of the dreamer's fears, memories, and wishes confronting them with their own subconscious.",
"In rare cases an eidolon connects permanently to the dreamer's mind, creating a symbiotic bond between the two. The dreamer starts materializing their own thoughts as surreal features outside of the dream realm, becoming a dream shifter.",
"Not everyone who creates such a bond learns to control these manifestations, but those who do are usually led away from civilization. They embrace the chaos their eidolon has brought to the surface and use their power to wander free.",
"In a world where the lines are already drawn, and the sides are chosen dream shifters stand in as champions of the contradictory and irrational. As with themselves, things are seldom as they seem. There is always a second layer worth another look, something unexpected that is waiting to happen."
]
},
{
"type": "entries",
"name": "Dream of Origin",
"entries": [
"The bond between you and your eidolon was forged during a dream of origin. This dream was defined by the same thoughts and emotions as your eidolon's form. It is where you first met your eidolon and marked the beginning of your relationship. Most dream shifters never fully understand the meaning of this dream. Exploring its meaning is often the initial motivation for a dream shifter to go on adventures. Usually, this dream is very personal, only to be shared with the closest of friends.",
"What was your dream of origin? This choice might help you decide for a subclass.",
{
"type": "table",
"caption": "Dream (Nightmare Eidolon)",
"colLabels": [
"{@dice d6}",
"Dream"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
1,
"That I have to helplessly watch the murder of innocents."
],
[
2,
"That a monstrous creature is searching and hunting me."
],
[
3,
"That I am afflicted with a horrifying disease or curse."
],
[
4,
"That I am caught in a coming war."
],
[
5,
"That I am in the middle of an impending, magical catastrophe."
],
[
6,
"That a terrible event in my past would repeat itself."
]
]
},
{
"type": "table",
"caption": "Dream (Harmony Eidolon)",
"colLabels": [
"{@dice d6}",
"Dream"
],
"colStyles": [
"col-1 text-center",
"col-9"
],
"rows": [
[
1,
"That I returned to my childhood home as it was when I was young."
],
[
2,
"That a person I lost has miraculously reappeared."
],
[
3,
"That I found my destiny, the place where I belong."
],
[
4,
"That a terrible event in my past never happened."
],
[
5,
"That I became a part of the natural world - an animal, a plant, a mountain or a river."
],
[
6,
"That a great conflict or tension in my world would finally come to an end."
]
]
},
{
"type": "table",
"caption": "Dream (Wonder Eidolon)",
"colLabels": [
"{@dice d6}",
"Dream"
],
"colStyles": [
"col-1 text-center",
"col-9"
],
"rows": [
[
1,
"That I had an entirely different life that ended when I woke up."
],
[
2,
"That I created an unparalleled piece of art."
],
[
3,
"That I traveled through time."
],
[
4,
"That I lived on a different plane of existence."
],
[
5,
"That I was a god free to do whatever I wanted."
],
[
6,
"That I traveled far from home exploring a strange new continent."
]
]
}
]
},
{
"type": "entries",
"name": "Twisted Reality",
"entries": [
"Being linked to a creature from the dream realm has a subtle but significant influence on how you perceive reality. Your Eidolon might directly speak to you, let you see or hear things that are not really there. Depending on your relationship with your eidolon you might react differently to those inputs. But no matter how a dream shifter deals with this circumstance, it usually leaves them a bit weird.",
"In what way does your eidolon try to influence your perception of the world? This choice might help you decide for a subclass.",
{
"type": "table",
"caption": "Influence (Nightmare Eidolon)",
"colLabels": [
"{@dice d6}",
"Influence"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
1,
"My eidolon is a cold, unfeeling voice in my head, rationally deciding about life and death."
],
[
2,
"When I feel threatened my Eidolon lets me hear unsettling whispers."
],
[
3,
"My eidolon is an irrational and tearful echo in my thoughts, warning me of possible dangers."
],
[
4,
"Sometimes I see a specific, dark omen, a message from my eidolon that misfortune could strike at any moment."
],
[
5,
"My eidolon sometimes encourages me to start unnecessary conflicts just to harden myself."
],
[
6,
"My eidolon sometimes comes up with ideas on how to scare people."
]
]
},
{
"type": "table",
"caption": "Influence (Harmony Eidolon)",
"colLabels": [
"{@dice d6}",
"Influence"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
1,
"My eidolon tries to highlight the positive in any situation."
],
[
2,
"When I'm calm my eidolon lets me hear soft background music."
],
[
3,
"My eidolon tries to get me to resolve any conflict among people I encounter."
],
[
4,
"Sometimes I see a bright aura around people my eidolon likes."
],
[
5,
"My eidolon sometimes wants me to decorate the places I come by."
],
[
6,
"My eidolon sometimes gives me ideas, on how I could compliment people."
]
]
},
{
"type": "table",
"caption": "Influence (Wonder Eidolon)",
"colLabels": [
"{@dice d6}",
"Influence"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
1,
"My eidolon challenges me to do unusual things."
],
[
2,
"When I feel bored my Eidolon lets me hear the cry of a bird in the distance as a call to get out of the situation."
],
[
3,
"My eidolon shows me new and unnecessarily complicated ways to do mundane tasks."
],
[
4,
"There is a specific plant or animal only I can see because it is an illusion created for me by my eidolon."
],
[
5,
"My eidolon sometimes encourages me to look behind locked doors."
],
[
6,
"My eidolon sometimes narrates my life as if it were a great tale."
]
]
}
]
},
{
"type": "entries",
"name": "Mythical Explanation",
"entries": [
"Manifesting an eidolon's features turns a dream shifter into something strange and unique. People who have encountered one might have a hard time identifying what they have seen. It's not unusual that a dream shifter who spends some time around the same area leaves behind a myth that explains their appearance. One such myth might have stuck around and seems to follow you wherever you go.",
"What is this myth that has grown around you and how did it come to be? This choice might help you decide for a subclass.",
{
"type": "table",
"caption": "Myth (Nightmare Eidolon)",
"colLabels": [
"{@dice d6}",
"Influence"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
1,
"That I am the cursed soul of a local noble who can't pass on to the afterlife."
],
[
2,
"That I am an evil fey who eats children who don't respect their parents."
],
[
3,
"That I am an ill omen and bestow a curse on anyone who sees me."
],
[
4,
"That I am a creature from another world stranded on this plane of existence."
],
[
5,
"That I am a living weapon created by an evil wizard."
],
[
6,
"That I am the embodiment of a certain god's judgment."
]
]
},
{
"type": "table",
"caption": "Myth (Harmony Eidolon)",
"colLabels": [
"{@dice d6}",
"Influence"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
1,
"That I bring peaceful dreams to children across the land."
],
[
2,
"That I am a fey who brings gifts to selfless people."
],
[
3,
"That seeing me is a sign of coming fortune and luck."
],
[
4,
"That I am the guardian of a certain natural formation."
],
[
5,
"That I am a piece of art that came alive."
],
[
6,
"That I am the embodiment of a certain god's mercy."
]
]
},
{
"type": "table",
"caption": "Myth (Wonder Eidolon)",
"colLabels": [
"{@dice d6}",
"Influence"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
1,
"That I am a Djinn that can make wishes come true if they are formulated correctly."
],
[
2,
"That I am a fey who plays pranks on the high and haughty."
],
[
3,
"That I am the herald of coming change."
],
[
4,
"That I am an anomaly in the magical weave of the world."
],
[
5,
"That I was created in a magical accident."
],
[
6,
"That I am the embodiment of a certain god's mischief."
]
]
}
]
},
{
"type": "entries",
"name": "Creating a Dream Shifter",
"entries": [
"When creating a dream shifter, think about the process you went through between connecting to your eidolon and setting out on your adventure.",
"Dream shifters are neither born nor trained. Their creation is always random and unexpected. How did you start exploring your newfound abilities? Did you tiy to keep them a secret or did you openly use them? Did your transformation end up leading you to a life of adventure or was there another cause?",
"How is your relationship with your eidolon? Do you regard it as a friend or as a source of power you have to sub- jugate? How easy or difficult is the communication between the two of you? In what ways do you feel like you are similar and in what ways different?",
"How do you interpret the dream that connected you to your eidolon? Are there parts you don't understand? What experience might have caused that initial dream?",
{
"type": "entries",
"name": "Quick Build",
"entries": [
"You can make a dream shifter quickly by following these suggestions. First, Wisdom should be your highest ability score, followed by Strength and Constitution. Second, choose the hermit background. Third, choose Nightmare eidolon as your Eidolon Form."
]
}
]
}
]
}
]
}
],
"classFeature": [
{
"name": "Dream Shape",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 1,
"entries": [
"Starting at 1st level you can magically assume the physical features of your eidolon. The appearance of these features is determined by your Subclass.",
{
"type": "entries",
"name": "Dream Points",
"entries": [
"As the link to your eidolon grows stronger, so does your Dream Shape. The power of your Dream Shape is represented by Dream Points.",
"{@bold Number of Dream Points =} Dream shifter level + Wisdom modifier (minimum of 1)"
]
},
{
"type": "entries",
"name": "Manifestations and Anomalies",
"entries": [
"Manifestations and Anomalies are a set of features that are part of your Dream Shape. While your Dream Shape is active, each Manifestation and Anomaly provides benefits depending on the number of Dream Points assigned to it. Manifestations provide benefits at 1,3 and 6 Dream Points, Anomalies at 1 Dream Point. You find all Manifestations, Anomalies, and their descriptions in the \"Manifestations and Anomalies\" sections at the end of the class's description. It is advised to use a Manifestation Sheet to keep track of your Dream Points, Manifestations, and Anomalies."
]
},
{
"type": "entries",
"name": "Assigning Dream Points",
"entries": [
"Your Dream Shape is defined by both, your will and the unpredictable influence of your eidolon. As a consequence, your Dream Points are sometimes assigned freely and sometimes randomly. When you gain this feature, assign half of your Dream Points (rounded down) freely and the rest randomly.",
"When assigning a Dream Point freely, choose a Manifestation from among results 1-7 on the Manifestations table, and assign the Dream Point to it.",
"When assigning a Dream Point randomly, roll on the Manifestations table, and assign the Dream Point to the resulting Manifestation. When rolling an 8 on the Manifestations table, roll on the Anomalies table and assign the Dream Point to the resulting Anomaly instead."
]
},
{
"type": "entries",
"name": "Restoring your Dream Points",
"entries": [
"You can restore your Dream Points while sleeping or meditating.",
"Whenever you finish a long rest, you can restore your Dream Points. To do so, unassign all of your Dream Points. Then assign half of your Dream Points (rounded down) freely. Then assign the rest randomly."
]
},
{
"type": "entries",
"name": "Assuming the Dream Shape",
"entries": [
"You can unassign a Dream Point to assume your Dream Shape as a bonus action.",
"Your Dream Shape lasts for 10 minutes. It ends early if you are knocked unconscious. You can also end your Dream Shape on your turn as a bonus action.",
"When you assume your Dream Shape, your game statistics and features stay the same and you gain the benefits of your manifestations. You choose whether your equipment falls to the ground in your space, merges into your Dream Shape, or is worn by you. Worn equipment functions as normal but its appearance changes to match your Dream Shape until your Dream Shape ends or the equipment is not worn at the end of your turn. Equipment that merges with the Dream Shape has no effect until the Dream Shape ends.",
{
"type": "table",
"caption": "Manifestations",
"colLabels": [
"{@dice d8}",
"Manifestation"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
1,
"{@optfeature Floating Step|DreamS}"
],
[
2,
"{@optfeature Phantasmal Weapons|DreamS}"
],
[
3,
"{@optfeature Elemental Assault|DreamS}"
],
[
4,
"{@optfeature Hardened Surface|DreamS}"
],
[
5,
"{@optfeature Elusive Body|DreamS}"
],
[
6,
"(See Subclass)"
],
[
7,
"(See Subclass)"
],
[
8,
"{@optfeature Emerging Anomaly|DreamS}"
]
]
},
{
"type": "table",
"caption": "Anomalies",
"colLabels": [
"{@dice d20}",
"Anomaly"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
1,
"{@optfeature Abstract|DreamS}"
],
[
2,
"{@optfeature Camouflage|DreamS}"
],
[
3,
"{@optfeature Crackling|DreamS}"
],
[
4,
"{@optfeature Deflecting|DreamS}"
],
[
5,
"{@optfeature Distorting|DreamS}"
],
[
6,
"{@optfeature Elastic|DreamS}"
],
[
7,
"{@optfeature Fluid|DreamS}"
],
[
8,
"{@optfeature Focused|DreamS}"
],
[
9,
"{@optfeature Glowing|DreamS}"
],
[
10,
"{@optfeature Indomitable|DreamS}"
],
[
11,
"{@optfeature Irritating|DreamS}"
],
[
12,
"{@optfeature Nimble|DreamS}"
],
[
13,
"{@optfeature Propelled|DreamS}"
],
[
14,
"{@optfeature Padded|DreamS}"
],
[
15,
"{@optfeature Pure|DreamS}"
],
[
16,
"{@optfeature Slippery|DreamS}"
],
[
17,
"{@optfeature Symbiotic|DreamS}"
],
[
18,
"{@optfeature Tenacious|DreamS}"
],
[
19,
"{@optfeature Versatile|DreamS}"
],
[
20,
"{@optfeature Weightless|DreamS}"
]
]
}
]
}
]
},
{
"name": "Eidolon Form",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 1,
"entries": [
"At 1st level, choose what form your eidolon has taken: Nightmare Eidolon, Harmony Eidolon, or Wonder Eidolon, all detailed at the end of the class description."
]
},
{
"name": "Lucid Rest",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 2,
"entries": [
"Beginning at 2nd level, your eidolon guides your dreams and improves your rate of recovery. When you finish a Long Rest, you regain all hit dice associated with your dream shifter level (You still only gain half of the hit dice associated with levels you have taken in other classes).",
"Additionally, finishing a Long Rest reduces your exhaustion level by 2 instead of 1."
]
},
{
"name": "Reveries",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 2,
"entries": [
"Starting at 2nd level your eidolon grants you access to your own subconscious. Whenever you activate your Dream Shape, you can use Transformation, Respite, or Epiphany.",
"You can also use a bonus action and unassign a Dream Point to use this feature. If you do so while your Dream Shape is active, the remaining duration of your Dream Shape increases by 10 minutes.",
{
"type": "entries",
"name": "Transformation",
"entries": [
"Unassign an assigned Dream Point, then assign it freely. You can assign the Dream Point to the same Manifestation to re-choose all choices within that Manifestation such as damage types or Abilities."
]
},
{
"type": "entries",
"name": "Respite",
"entries": [
"You can spend one Hit Die. If you do, roll it and add your Constitution modifier to the result. You regain hit points equal to the total."
]
},
{
"type": "entries",
"name": "Epiphany",
"entries": [
"You learn a cantrip from the {@filter dream shifter cantrip list|spells|level=0|class=Dream Shifter (DreamS)}. You forget it at the end of your next Long Rest.",
"Wisdom is your Spellcasting ability for dream shifter spells. You use your Wisdom whenever a spell refers to your Spellcasting ability. In addition, use your Wisdom modifier when setting the saving throw DC for a dream shifter spell you cast and when making an attack roll with one.",
{
"type": "abilityDc",
"name": "Spell",
"attributes": [
"wis"
]
},
{
"type": "abilityAttackMod",
"name": "Spell",
"attributes": [
"wis"
]
},
{
"type": "entries",
"name": "Spellcasting Focus",
"entries": [
"While your Dream Shape is active, it serves as a Spellcasting focus."
]
}
]
}
]
},
{
"name": "Ability Score Improvement",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 4,
"entries": [
"When you reach 4th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.",
"Using the optional feats rule, you can forgo taking this feature to take a feat of your choice instead."
]
},
{
"name": "Ability Score Improvement",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 19,
"entries": [
"When you reach 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.",
"Using the optional feats rule, you can forgo taking this feature to take a feat of your choice instead."
]
},
{
"name": "Ability Score Improvement",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 8,
"entries": [
"When you reach 8th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.",
"Using the optional feats rule, you can forgo taking this feature to take a feat of your choice instead."
]
},
{
"name": "Ability Score Improvement",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 12,
"entries": [
"When you reach 12th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.",
"Using the optional feats rule, you can forgo taking this feature to take a feat of your choice instead."
]
},
{
"name": "Ability Score Improvement",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 16,
"entries": [
"When you reach 16th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.",
"Using the optional feats rule, you can forgo taking this feature to take a feat of your choice instead."
]
},
{
"name": "Extra Attack",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 5,
"entries": [
"Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn."
]
},
{
"name": "Backdoor",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 7,
"entries": [
"At 7th level you can spend 10 minutes to dive into a creature's memories. Choose a creature within 10 feet of you that is either sleeping or unconscious. The creature must make a Wisdom saving throw against your spell save DC. On a failed save you can ask the target a number of questions equal to your Wisdom modifier (at least one) and the target has to answer truthfully.",
"For the duration of this feature, the target creature cannot wake up through natural means. On a successful save this feature does nothing. When the targeted creature wakes up it is aware of your attempt to gain information from it and whether you succeeded.",
"Once you use this feature, you can't use it again until you finish a Long Rest. Starting at 14th level, you can use it twice before a Long Rest."
]
},
{
"name": "Intertwined Mind",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 15,
"entries": [
"At 15th level the bond to your eidolon allows you to draw wisdom from its otherworldly memories. Your Wisdom score increases by 2 and your maximum for Wisdom is now 22.",
"Additionally, you are resistant to psychic damage."
]
},
{
"name": "Dream Realized",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 20,
"entries": [
"At 20th level the fusion of you and your eidolon is complete. This might cause slight changes in your personality. You gain the following features:",
{
"type": "list",
"items": [
"When restoring your Dream Points, you can assign all of your Dream Points freely.",
"Your Dream Shape only ends when you choose to end it."
]
}
]
},
{
"name": "Eidolon Form Feature",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 3,
"entries": [
"The Eidolon Form you choose grants you features at 3rd level."
]
},
{
"name": "Eidolon Form Feature",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 6,
"entries": [
"The Eidolon Form you choose grants you features at 6th level."
]
},
{
"name": "Eidolon Form Feature",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 10,
"entries": [
"The Eidolon Form you choose grants you features at 10th level."
]
},
{
"name": "Eidolon Form Feature",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 14,
"entries": [
"The Eidolon Form you choose grants you features at 14th level."
]
},
{
"name": "Reveries (improvement)",
"source": "DreamS",
"className": "Dream Shifter",
"classSource": "DreamS",
"level": 5,
"entries": [
"At 5th level you gain the following improvements to the Transformation and Respite effect of the Reveries feature:",
{
"type": "list",
"items": [
{
"type": "item",
"name": "Transformation",
"entry": "You can unassign and freely assign an additional assigned Dream Point."
},
{
"type": "item",
"name": "Respite",
"entry": "You may spend an additional Hit Die."
}
]
}
]
},
{
"name": "Reveries (improvement)",