forked from TheGiddyLimit/homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Alex Tanner; Tarocchi.json
1513 lines (1513 loc) · 58.1 KB
/
Alex Tanner; Tarocchi.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": "ATannerTarocchi",
"abbreviation": "ATT",
"full": "The Tarocchi and expanded card magic",
"version": "1.0.0",
"url": "https://www.dmsguild.com/product/194065/Tarocchi-Class",
"authors": [
"Alex Tanner"
],
"convertedBy": [
"MilesEdgeworth7948"
]
}
],
"dateAdded": 1593553915,
"dateLastModified": 1593572654
},
"class": [
{
"name": "Tarocchi",
"source": "ATannerTarocchi",
"fluff": [
{
"name": "Tarocchi",
"type": "section",
"entries": [
"A cloaked man sits in a seedy tavern, a billow of smoke pouring from the folds of his robe, his booted feet rested upon a chairacross from him. A fair maiden enter the room. Immediately, he tosses his hood back, and kicks the chair out from his table. He invites her to sit, gesturing to the seat before beginning to lightly shuffle a deck of cards. He draws three, and places them on the table. She nods, and immediately moves to sit with him. ",
"A party of adventurers stand at the feet of a mighty slain dragon. It was a hard fought battle, and even harder won. They look to their leader, who also lay fallen, gasping ragged breaths. A woman in loose robes approaches him, kneeling quietly and smiling. Wordlessly, she pulls a playing card out of her sleeve and presses it against the fallen warrior. His vitality returns, and the group breathes a sigh of relief. ",
"A slight, older man sits in an ornate chair to the side of a great king. The kingdom has fallen into chaos, and there is talk of rebellion. The king turns to his advisor and asks how he can stop this problem before it gets worse. The old man smiles, adjusts his glasses, and pulls out a deck of cards. He begins laying them on a table in an indecipherable pattern. Finally, he places a single card into the middle of the pattern. He hesitates for just a moment before drawing the card. He smiles, and convinces the king that his rule can be assured. ",
"Tarocchi are mysterious wielders of magic, not using simple wands or staves, but drawing power from decks of cards. The luck of the draw, and the irony of not having a card you need, is never lost on a tarocchi, who is able to see the long term goal, and make use of what hand of cards they are dealt, both from their power packs, and from life itself. ",
{
"type": "entries",
"name": "Power Pack",
"entries": [
"A tarocchi's most powerful weapon is their power pack, a deck of cards infused with magical abilities that only they can wield. Sometimes these power packs are legendary artifacts, with intricate artwork on the back, and court cards depicting powerful rulers and tyrants, signifying these decks as special. ",
"Often, however, these decks simply appear as ordinary playing cards, allowing a tarocchi to feign innocence of their magical abilities. Indeed, power packs can be used as an ordinary deck of cards, and even if the cards are lost or destroyed, they will reform in the tarocchi's pack by the light of the next morning, as arcane magic binds the two together. "
]
},
{
"type": "entries",
"name": "Living As Tarocchi",
"entries": [
"Unfortunatley for tarocchi, their magical abilities do not often lend themselves to finding steady work. The unreliability of their powers make others reluctant to employ them, or to rely on them. For this reason, tarocchi often regard their magical abilities as a sort of hobby, one which they must practice and hone in their free time, while finding work elsewhere.",
"The exception to this are tarocchi who are charismatic enough to find themselves in the employ of a thieves' guild, and who can convince the criminals with which they would work that their skills are valuable and reliable, so long as everyone else can be flexible. But to those who can be, a tarocchi is a powerful ally, capable of drawing new hope from their deck, even when all seems lost."
]
},
{
"type": "entries",
"name": "Creating A Tarocchi",
"entries": [
"As you create your tarocchi character, think about your personal deck of cards. Where did they come from? Were they a gift, given to you by a family member or trusted friend who knew the secrets? Did you happen upon them, tossed away by someone afraid of their power? Did you purchase them from a mysterious merchant, whom no one else remembers? ",
"You must also decide where your magical powers came from, as it is the blending of magic and a power pack that makes a tarocchi. Do you have an ancestral bloodline of magic users, whose arcane abilities have been born in you? Have you bonded with an otherworldly being, granting you powerful magic abilities? Or did you find your deck of cards and determine to learn more, poring over and studying ancienct texts to determine the true power of the cards?"
]
},
{
"type": "entries",
"name": "Quick Build",
"entries": [
"You can make a tarocchi quickly by following these suggestions. First, make Charisma your highest ability score, followed by Constitution. Second, choose the {@background charlatan} backgrond. Third, choose the {@spell light}, {@spell prestidigitation}, {@spell ray of frost}, and {@spell shocking grasp} cantrips, along with the 1st-level spells {@spell charm person} and {@spell magic missile}."
]
},
{
"type": "entries",
"name": "Language of the Tarocchi",
"entries": [
"There are several terms that are unique to the tarocchi.",
{
"type": "entries",
"name": "Rank",
"entries": [
"The <b>rank</b> of a card is its numerical value. So a card can have a rank of \"3,\" which includes the 3 card in all four suits, or a rank of \"9,\" or \"king,\" and so on. "
]
},
{
"type": "entries",
"name": "Discard",
"entries": [
"You can <b>discard</b> cards from your hand without playing them. These cards go to your discard pile, but do not activate any kind of magical effect."
]
},
{
"type": "entries",
"name": "Play",
"entries": [
"When you <b>play</b> a card, you are activating its magic and (usually) casting a spell as you do so. "
]
}
]
},
{
"type": "entries",
"name": "Your Power Pack",
"entries": [
"Like a wizard with a spellbook, your power pack is a physical object which can be lost or destroyed. ",
{
"type": "entries",
"name": "Replacing the Pack",
"entries": [
"Your power pack is typically a box, but it can also be some kind of special leather case or wrapping that keeps your cards together. So long as this housing is intact and complete, all of your cards will return to it when you finish a long rest. This includes situations where cards are lost or destroyed; they will still reform in your power pack. ",
"If the pack itself is destroyed, however, the magic of the cards ceases to exist. Your pack is a powerful magical item, and so is more resilient than it may appear. If the pack is destroyed, you will need to replace it. It takes 2 hours and 50 gp per spell level that you have access to. Once you have forged a new pack to hold your cards, they reform normally when you finish your next long rest. "
]
},
{
"type": "entries",
"name": "The Pack's Appearance",
"entries": [
"Each power pack is unique, and are only typically recognized as special by other tarocchi. It may be a plain, functional set of leather straps which hold your cards together, or it may be an ornate magical box, inlaid with gold and intricate designs. ",
"Your cards, like your power pack, are also highly variable. They may be very simple cards with plain backs and bare markings, or they may be incredibly detailed, with flourishes of artistic skill on the backs, and beautifully calligraphed symbols on the fronts."
]
}
]
}
]
}
],
"hd": {
"faces": 8,
"number": 1
},
"proficiency": [
"wis",
"cha"
],
"casterProgression": "full",
"srd": false,
"isReprinted": false,
"classTableGroups": [
{
"colLabels": [
"Hand Size",
"Cantrips Known",
"Spells Known",
"Spell Level"
],
"rows": [
[
5,
4,
2,
"{@filter 1st|spells|level=1|class=Tarocchi (ATT)}"
],
[
5,
4,
3,
"{@filter 1st|spells|level=1|class=Tarocchi (ATT)}"
],
[
5,
4,
4,
"{@filter 2nd|spells|level=2|class=Tarocchi (ATT)}"
],
[
5,
5,
5,
"{@filter 2nd|spells|level=2|class=Tarocchi (ATT)}"
],
[
5,
5,
6,
"{@filter 3rd|spells|level=3|class=Tarocchi (ATT)}"
],
[
5,
5,
7,
"{@filter 3rd|spells|level=3|class=Tarocchi (ATT)}"
],
[
6,
5,
8,
"{@filter 4th|spells|level=4|class=Tarocchi (ATT)}"
],
[
6,
5,
9,
"{@filter 4th|spells|level=4|class=Tarocchi (ATT)}"
],
[
6,
5,
10,
"{@filter 5th|spells|level=5|class=Tarocchi (ATT)}"
],
[
6,
6,
11,
"{@filter 5th|spells|level=5|class=Tarocchi (ATT)}"
],
[
6,
6,
12,
"{@filter 6th|spells|level=6|class=Tarocchi (ATT)}"
],
[
6,
6,
12,
"{@filter 6th|spells|level=6|class=Tarocchi (ATT)}"
],
[
6,
6,
13,
"{@filter 7th|spells|level=7|class=Tarocchi (ATT)}"
],
[
7,
6,
13,
"{@filter 7th|spells|level=7|class=Tarocchi (ATT)}"
],
[
7,
6,
14,
"{@filter 8th|spells|level=8|class=Tarocchi (ATT)}"
],
[
7,
6,
14,
"{@filter 8th|spells|level=8|class=Tarocchi (ATT)}"
],
[
7,
6,
15,
"{@filter 9th|spells|level=9|class=Tarocchi (ATT)}"
],
[
7,
6,
15,
"{@filter 9th|spells|level=9|class=Tarocchi (ATT)}"
],
[
7,
6,
15,
"{@filter 9th|spells|level=9|class=Tarocchi (ATT)}"
],
[
7,
6,
15,
"{@filter 9th|spells|level=9|class=Tarocchi (ATT)}"
]
],
"subclasses": [
{
"name": "Blackjack",
"source": "ATannerTarocchi"
},
{
"name": "Euchre",
"source": "ATannerTarocchi"
},
{
"name": "Mau",
"source": "ATannerTarocchi"
},
{
"name": "Poker",
"source": "ATannerTarocchi"
},
{
"name": "Spades",
"source": "ATannerTarocchi"
}
]
}
],
"multiclassing": {
"proficienciesGained": {
"skills": [
{
"choose": {
"from": [
"Arcana",
"Deception",
"History",
"Insight",
"Intimidation",
"Performance",
"Persuasion",
"Slight of Hand"
],
"count": 1
}
}
],
"tools": [
"Gaming Set (Playing Cards)"
]
},
"requirements": {
"cha": 13
}
},
"classFeatures": [
"Card Shark|Tarocchi|ATannerTarocchi|1",
"Force A Card|Tarocchi|ATannerTarocchi|1",
"Misdirection|Tarocchi|ATannerTarocchi|2",
"Stack The Deck|Tarocchi|ATannerTarocchi|2",
{
"classFeature": "Game Of Choice|Tarocchi|ATannerTarocchi|3",
"gainSubclassFeature": true
},
"Equivocation|Tarocchi|ATannerTarocchi|3",
"Ability Score Improvement|Tarocchi|ATannerTarocchi|4",
"Ace In The Hole|Tarocchi|ATannerTarocchi|5",
{
"classFeature": "Game of Choice feature|Tarocchi|ATannerTarocchi|6",
"gainSubclassFeature": true
},
"Ability Score Improvement|Tarocchi|ATannerTarocchi|8",
"Cold Reading|Tarocchi|ATannerTarocchi|10",
{
"classFeature": "Game of Choice feature|Tarocchi|ATannerTarocchi|10",
"gainSubclassFeature": true
},
"Ability Score Improvement|Tarocchi|ATannerTarocchi|12",
{
"classFeature": "Game of Choice feature|Tarocchi|ATannerTarocchi|14",
"gainSubclassFeature": true
},
"Ability Score Improvement|Tarocchi|ATannerTarocchi|16",
"Ace in the Hole (two cards)|Tarocchi|ATannerTarocchi|18",
"Ability Score Improvement|Tarocchi|ATannerTarocchi|19",
"Bottom Dealing|Tarocchi|ATannerTarocchi|20"
],
"page": 0,
"startingProficiencies": {
"armor": [
"Light"
],
"tools": [
"Gaming Set (Playing Cards)"
],
"weapons": [
"Simple Weapons"
],
"skills": [
{
"choose": {
"from": [
"Arcana",
"Deception",
"History",
"Insight",
"Intimidation",
"Performance",
"Persuasion",
"Slight of Hand"
],
"count": 2
}
}
]
},
"startingEquipment": {
"additionalFromBackground": true,
"default": [
"(a) a {@item light crossbow|phb} and {@item crossbow bolts (20)|phb|20 bolts} or (b) any {@filter simple weapon|items|source=phb|category=basic|type=simple weapon}",
"(a) a {@item burglar's pack|phb} or (b) an {@item explorer's pack|phb}",
"A set of {@item leather armor|phb}",
"A {@item playing card set|phb}"
],
"goldAlternative": "{@dice 5d4×10|4d4 × 10|Starting Gold}",
"defaultData": [
{
"a": [
"light crossbow|phb",
"crossbow bolts (20)|phb"
],
"b": [
{
"equipmentType": "weaponSimple"
}
]
},
{
"a": [
"burglar's pack|phb"
],
"b": [
"explorer's pack|phb"
]
},
{
"_": [
"leather armor|phb"
]
},
{
"_": [
"playing card set|phb"
]
}
]
},
"spellcastingAbility": "cha",
"subclassTitle": "Game of Choice",
"classSpells": [
{
"name": "Absorb elements",
"source": "XGE"
},
"Alter Self",
"Animal Friendship",
"Animate Dead",
"Antimagic Field",
"Arcane Lock",
"Augury",
"Bestow Curse",
"Bigby's Hand",
{
"name": "Catapult",
"source": "XGE"
},
{
"name": "Catnap",
"source": "XGE"
},
{
"name": "Cause Fear",
"source": "XGE"
},
{
"name": "Chaos Bolt",
"source": "XGE"
},
{
"name": "Charm Monster",
"source": "XGE"
},
"Charm Person",
"Chill Touch",
"Chromatic Orb",
"Circle of Death",
"Clairvoyance",
"Color Spray",
"Command",
"Compulsion",
"Contagion",
"Contingency",
"Control Weather",
"Counterspell",
{
"name": "Create Bonfire",
"source": "XGE"
},
"Create or Destroy Water",
"Create Undead",
"Creation",
"Cure Wounds",
"Dancing Lights",
{
"name": "Danse Macabre",
"source": "XGE"
},
"Death Ward",
"Delayed Blast Fireball",
"Detect Magic",
"Detect Thoughts",
"Dimension Door",
"Disguise Self",
"Dispel Magic",
"Dominate Person",
"Dream",
"Earthquake",
"Enhance Ability",
"Enlarge/Reduce",
"Fabricate",
"Feather Fall",
"Feeblemind",
"Find the Path",
"Fireball",
"Fly",
"Fog Cloud",
"Foresight",
"Friends",
"Geas",
"Glibness",
"Globe of Invulnerability",
"Glyph of Warding",
"Greater Restoration",
"Guards and Wards",
{
"name": "Healing Spirit",
"source": "XGE"
},
"Heroism",
"Hypnotic Pattern",
"Identify",
{
"name": "Illusory Dragon",
"source": "XGE"
},
"Illusory Script",
{
"name": "Immolation",
"source": "XGE"
},
"Invisibility",
{
"name": "Invulnerability",
"source": "XGE"
},
"Knock",
"Legend Lore",
"Lesser Restoration",
"Levitate",
"Light",
"Lightning Bolt",
"Locate Creature",
"Locate Object",
{
"name": "Maddening Darkness",
"source": "XGE"
},
"Mage Hand",
"Magic Missile",
"Mending",
{
"name": "Mental Prison",
"source": "XGE"
},
"Message",
"Mind Blank",
"Minor Illusion",
"Mirage Arcane",
"Mirror Image",
"Mislead",
"Misty Step",
"Modify Memory",
"Otto's Irresistible Dance",
"Phantasmal Killer",
"Planar Ally",
"Polymorph",
"Power Word Stun",
"Power Word Kill",
"Prestidigitation",
"Prismatic Spray",
"Produce Flame",
"Programmed Illusion",
"Project Image",
{
"name": "Pyrotechnics",
"source": "XGE"
},
"Raise Dead",
"Ray of Frost",
"Ray of Sickness",
"Ray of Enfeeblement",
"Regenerate",
"Remove Curse",
"Resistance",
"Resurrection",
"Revivify",
"Rope Trick",
"Scorching Ray",
"Scrying",
"Seeming",
"See Invisibility",
"Sending",
"Shield",
"Shocking Grasp",
"Silent Image",
"Sleep",
{
"name": "Snare",
"source": "XGE"
},
"Spare the Dying",
"Speak with Dead",
"Spiritual Weapon",
"Suggestion",
"Symbol",
"Telekinesis",
{
"name": "Thunderclap",
"source": "XGE"
},
{
"name": "Thunder Step",
"source": "XGE"
},
"Thunderwave",
"Time Stop",
"True Seeing",
"Vampiric Touch",
{
"name": "Vitriolic Sphere",
"source": "XGE"
},
"Weird",
"Witch Bolt",
"Wish"
],
"cantripProgression": [
4,
4,
4,
5,
5,
5,
5,
5,
5,
6,
6,
6,
6,
6,
6,
6,
6,
6,
6,
6
],
"spellsKnownProgression": [
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
12,
13,
13,
14,
14,
15,
15,
15,
15
]
}
],
"classFeature": [
{
"name": "Card Shark",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"level": 1,
"entries": [
"Some event in your past, whether it be through blood or study or making a pact with an otherworldly being, has left the indelible mark of arcane magic upon you. Along with a magical deck of cards that you have come into possession of, you are able to create powerful magical effects, so long as you draw the right card.",
"Unlike other magic users, you use your cards to fund your arcane abilities directly, meaning that you cast magic spells in a unique way.",
{
"type": "entries",
"name": "Hand Size",
"entries": [
"Each card in your deck represents one spell slot. However, tarocchi spell slots work differently than those of others.",
"At 1st level, your hand size is 5. You can draw up to your maximum hand size (as shown in the Hand Size column of the Tarocchi table) as a bonus action on your turn. Your hand persists until you finish a long rest. To cast a tarocchi spell, you must <b>play</b> a card of the appropriate spell slot from your hand. Any card in the deck can be cast as a cantrip. To <b>play</b> a card as anything other than a cantrip, you must be of an appropriate level, as shown on the Card Slots table. Once you cast a spell, the card is <b>discarded</b> until you finish a long rest.",
"Your hand size increases as you gain levels, as shown in the Hand Size column of the Tarocchi table. You can discard cards from your hand at any time without an action. Once a card is <b>discarded</b>, it is lost until you finish a long rest, at which point all cards return to your deck. This includes cards which may have been left in other areas or even destroyed.",
"To cast a spell at a higher level, you must <b>play</b> a card of a higher rank when you cast the spell. When you do so, the spell is cast at the level of the higher card, to a maximum of your highest spell level known as shown on the Spell Level column of the Tarocchi table.",
"For example, if you are a 1st-level tarocchi and know the 1st-level spell {@spell cure wounds}, and your hand includes a 10, Jack, Queen, King, and an Ace, you can <b>play</b> the 10 to cast {@spell cure wounds} as a 1st-level spell. Your higher cards (the Jack, Queen, King, and Ace) can only be cast as cantrips until you reach the appropriate levels of the Card Slots table."
]
},
{
"type": "entries",
"name": "Cantrips",
"entries": [
"At 1st level, you know four cantrips of your choice from the {@filter tarocchi spell list|spells|class=Tarocchi (ATT)}}. You learn additional tarocchi cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Tarocchi table."
]
},
{
"type": "entries",
"name": "Spells Known of 1st Level and Higher",
"entries": [
"You know two 1st-level spells of your choice from the {@filter tarocchi spell list|spells|class=Tarocchi (ATT)}}.",
"The Spells Known column of the Tarocchi table shows when you learn more tarocchi spells of your choice. Each of these spells can be no higher than the highest spell level you know, as shown in the Spell Level column of the Tarocchi table. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level. ",
"Additionally, when you gain a level in this class, you can choose one of the tarocchi spells you know and replace it with another spell from the {@filter tarocchi spell list|spells|class=Tarocchi (ATT)}}, which also must be no higher than your highest spell level known. "
]
},
{
"type": "table",
"caption": "Card Slots",
"colLabels": [
"Tarocchi Level",
"Rank",
"Suit",
"Spell Slot"
],
"rows": [
[
"1st",
"2 - 9 (any suit)",
"♦️, ♥, ♣, ♠",
"{@filter Cantrip|spells|level=0|class=Tarocchi (ATT)}"
],
[
"1st",
"10 (any suit)",
"♦, ♥, ♣, ♠",
"{@filter 1st|spells|level=1|class=Tarocchi (ATT)}"
],
[
"3rd",
"Jack (any suit)",
"♦, ♥, ♣, ♠",
"{@filter 2nd|spells|level=2|class=Tarocchi (ATT)}"
],
[
"5th",
"Queen (any suit)",
"♦, ♥, ♣, ♠",
"{@filter 3rd|spells|level=3|class=Tarocchi (ATT)}"
],
[
"7th",
"King of Hearts or Diamonds",
"♦, ♥",
"{@filter 4th|spells|level=4|class=Tarocchi (ATT)}"
],
[
"9th",
"King of Clubs or Spades",
"♣, ♠",
"{@filter 5th|spells|level=5|class=Tarocchi (ATT)}"
],
[
"11th",
"Ace of Diamonds",
"♦",
"{@filter 6th|spells|level=6|class=Tarocchi (ATT)}"
],
[
"13th",
"Ace of Hearts",
"♥",
"{@filter 7th|spells|level=7|class=Tarocchi (ATT)}"
],
[
"15th",
"Ace of Clubs",
"♣",
"{@filter 8th|spells|level=8|class=Tarocchi (ATT)}"
],
[
"17th",
"Ace of Spades",
"♠",
"{@filter 9th|spells|level=9|class=Tarocchi (ATT)}"
]
]
},
{
"type": "entries",
"name": "Spellcasting Ability",
"entries": [
"Charisma is your spellcasting ability for your {@filter tarocchi spells|spells|class=Tarocchi (ATT)}}. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a tarocchi spell you cast and when making an attack roll with one.",
{
"type": "abilityDc",
"name": "Spell",
"attributes": [
"cha"
]
},
{
"type": "abilityAttackMod",
"name": "Spell",
"attributes": [
"cha"
]
},
{
"type": "entries",
"name": "Alternative Modifier",
"entries": [
"The tarocchi is written with a charismatic, charlatan type of character in mind. However, there are other kinds of card players as well such as the intellectual, calculating card counter. If it better fits your chosen flavor, you can use Intelligence as your spellcasting ability (as well as your saving throw proficiency) instead of Charisma."
]
}
]
},
{
"type": "entries",
"name": "Spellcasting Focus",
"entries": [
"The cards you <b>play</b> when you cast a spell count as a spellcasting focus for your {@filter tarocchi spells|spells|class=Tarocchi (ATT)}}."
]
},
{
"type": "entries",
"name": "Running Out of Cards",
"entries": [
"When you have no cards remaining in your deck or your hand, you can take a bonus action to draw two magical jokers into your hand. These cards can only be used to cast cantrips, and disappear immediately once they are used to cast spells. When you finish a long rest, any jokers in your hand disappear."
]
}
]
},
{
"name": "Force A Card",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"level": 1,
"entries": [
"As a tarocchi, you are the master of getting the cards you need in order to turn a situation in your favor. At 1st level, you can take an action to search your deck for a single card and add it to your hand, so long as you are not already at your hand limit. After you take this action, shuffle your deck.",
"You can use this feature a number of times equal to 1 + your Charisma modifier. When you finish a long rest, you regain all expended uses."
]
},
{
"name": "Misdirection",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"level": 2,
"entries": [
"Beginning at 2nd level, your quick wit and dexterous hands allow you to surprise and beguile your opponents. Choose one of your skill proficiencies. Your proficiency bonus is doubled for any ability check you make that uses that skill proficiency or your proficiency with your {@item playing card set|phb}.",
"Additionally, you can make a Charisma (Deception) or Dexterity (Sleight of Hand) skill check as a bonus action on your turn. "
]
},
{
"name": "Stack The Deck",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"level": 2,
"entries": [
"Starting at 2nd level, you've learned to regain your most potent magics. Once per day when you finish a short rest, you can take any amount of a single rank card in your discard pile and shuffle them into your deck. This includes court cards, but not aces. The rank of \"king\" is split in half according to your spell slots. The king of diamonds (♦) and hearts (♥) count as a single rank, while the king of clubs (♣) and spades (♠) count as a separate rank for the purposes of this ability."
]
},
{
"name": "Game Of Choice",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"level": 3,
"entries": [
"While tarocchi are fond of any game of chance, each has one which they excel in. At 3rd level, choose Blackjack, Euchre, Mau, Poker, or Spades. Each choice affects your abilities and the way you are able to <b>play</b> your cards. ",
"Your choice grants you features when you choose it at 3rd level, and again at 6th, 10th, and 14th level. "
]
},
{
"name": "Equivocation",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"level": 3,
"entries": [
"By 3rd level, your magical prowess with cards offers you supernatural luck over all games of chance. When you receive randomized results from a game of chance or a magic item, including drawing a card from your power pack, you can instantly take one additional result and choose between the two. The result you do not choose is placed back into its source at random if possible. This happens magically, and creatures without truesight can't notice you replacing a result. Once you use this feature, you must finish a short or long rest before you can use it again. "
]
},
{
"name": "Ability Score Improvement",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"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.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
},
{
"name": "Ace In The Hole",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"level": 5,
"entries": [
"Beginning at 5th level, you have the ability to have a spell prepared even when your card is not ready. You can use an action to designate one card which remains in your power pack and cast a spell which has a casting time of one action or one bonus action using that card (even though you do not have the card in hand). When you do so, search your power pack for the card and discard it, and then shuffle your deck. ",
"Once you use this feature, you must finish a long rest before you can use it again. Starting at 18th level, you can use it twice before a rest. "
]
},
{
"name": "Game of Choice feature",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"level": 6,
"entries": [
"At sixth level, you gain another feature from your Game of Choice"
]
},
{
"name": "Ability Score Improvement",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"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.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
},
{
"name": "Cold Reading",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"level": 10,
"entries": [
"Starting at 10th level, if you spend at least 1 minute observing or interacting with another creature outside combat, you can learn certain information about its capabilities compared to your own. The DM tells you if the creature is your equal, superior, or inferior in regard to two of the following characteristics of your choice:",
{
"type": "list",
"items": [
"Intelligence Score",
"Wisdom Score",
"Charisma Score",
"Passive Perception",
"Current spell slots",
"Total class levels (if any)",
"Maximum spell level (if any)"
]
}
]
},
{
"name": "Game of Choice feature",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"level": 10,
"entries": [
"At tenth level, you gain another feature from your Game of Choice"
]
},
{
"name": "Ability Score Improvement",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"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.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
},
{
"name": "Game of Choice feature",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"level": 14,
"entries": [
"At fourteenth level, you gain another feature from your Game of Choice"
]
},
{
"name": "Ability Score Improvement",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"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.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
},
{
"name": "Ace in the Hole (two cards)",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"level": 18,
"entries": [
"When you reach 18th level, you can use the Ace in the Hole feature twice before a long rest. "
]
},
{
"name": "Ability Score Improvement",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"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.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
},
{
"name": "Bottom Dealing",
"source": "ATannerTarocchi",
"className": "Tarocchi",
"classSource": "ATannerTarocchi",
"level": 20,
"entries": [
"By 20th level, you've gained complete mastery over your cards. Whenever you <b>play</b> a card with a rank of queen or lower, instead of discarding it, you can place the card on the bottom of your power pack. At any time, you can <b>play</b> that card again as though it were a card in your hand. At that point, discard the card."
]