forked from TheGiddyLimit/homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mal_Elemental; The Commoner.json
1050 lines (1050 loc) · 43.2 KB
/
Mal_Elemental; The Commoner.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": "TCC",
"abbreviation": "TCC",
"full": "The Commoner",
"authors": [
"/u/Mal_Elemental"
],
"convertedBy": [
"Lxran#2292"
],
"version": "1.0",
"color": "ff8a00",
"url": "https://www.gmbinder.com/share/-MHaQlmoTafaSfvvHI-9/-MHoYRqXClbqP6QwstFF",
"targetSchema": "1.2"
}
],
"dateAdded": 1602762840,
"dateLastModified": 1602762840
},
"class": [
{
"name": "Commoner",
"source": "TCC",
"page": 2,
"hd": {
"number": 1,
"faces": 6
},
"proficiency": [
"con"
],
"startingProficiencies": {
"armor": [
"light"
],
"weapons": [
"{@item club|phb|clubs}",
"{@item dagger|phb|daggers}",
"{@item handaxe|phb|handaxes}",
"{@item light hammer|phb|light hammers}",
"{@item quarterstaff|phb|quarterstaffs}",
"{@item sickle|phb|sickles}",
"{@item sling|phb|slings}",
"{@item shortbow|phb|shortbows}",
"torches",
"pitchforks"
],
"tools": [
"Choose any one artisan tool, and gain expertise with it"
],
"skills": [
{
"choose": {
"from": [
"Animal Handling",
"Athletics",
"Persuasion",
"Insight",
"Survival"
],
"count": 1
}
}
]
},
"startingEquipment": {
"additionalFromBackground": true,
"default": [
"One {@filter simple weapon|items|source=phb|category=basic|type=simple weapon} of your choice",
"One set of {@item artisan's tools|PHB|tools} with which you are proficient",
"One equipment pack depending on your cohice of subclass: either an {@item explorer's pack|phb} for farmer, a {@item diplomat's pack|PHB} for merchant, a {@item scholar's pack|PHB} for clerk, or a {@item burglar's pack|PHB} for vagabond",
"{@dice 10d6} copper coins"
],
"defaultData": [
{
"_": [
{
"equipmentType": "weaponSimple"
}
]
},
{
"_": [
"artisan's tools|phb"
]
},
{
"a": [
"explorer's pack|phb"
],
"b": [
"diplomat's pack|phb"
],
"c": [
"scholar's pack|phb"
],
"d": [
"burglar's pack|phb"
]
},
{
"_": []
}
]
},
"multiclassing": {
"entries": [
"There are not prerequisites for multiclassing into the commoner class - it's a class open to everyone!"
]
},
"classFeatures": [
"Just A Simple Fellow|Commoner|TCC|1",
"Use What You Got|Commoner|TCC|1",
{
"classFeature": "Livelihood|Commoner|TCC|1",
"gainSubclassFeature": true
},
"Skin Of Your Teeth|Commoner|TCC|2",
"Helping Hand|Commoner|TCC|3",
"Rough and Ready|Commoner|TCC|3",
"Learn Feat|Commoner|TCC|4",
"Look, I'm Helping!|Commoner|TCC|5",
{
"classFeature": "Livelihood Feature|Commoner|TCC|5",
"gainSubclassFeature": true
},
"Learn It From Others|Commoner|TCC|6",
"Close Shave|Commoner|TCC|7",
"Learn Feat|Commoner|TCC|8",
{
"classFeature": "Livelihood Feature|Commoner|TCC|9",
"gainSubclassFeature": true
},
"Teamwork Gets It Done|Commoner|TCC|10",
"Can't Believe That Worked!|Commoner|TCC|11",
"Learn Feat|Commoner|TCC|12",
"Watch Out For That|Commoner|TCC|13",
{
"classFeature": "Livelihood Feature|Commoner|TCC|14",
"gainSubclassFeature": true
},
"Look At Us Go!|Commoner|TCC|15",
"Learn Feat|Commoner|TCC|16",
"Learned It From The Best|Commoner|TCC|17",
"Put to Good Use|Commoner|TCC|18",
"Learn Feat|Commoner|TCC|19",
"Learn It From Me|Commoner|TCC|20"
],
"subclassTitle": "Livelihood",
"fluff": [
{
"type": "section",
"name": "Commoner",
"page": 2,
"entries": [
"A rugged farmer toils the land, wiping the sweat of his brow as harvests his fields\u2013he works from dawn to dusk, a basket of corn over his back. A hardy peddler travels the road, selling pots and pans through small village for pittance. An overworked clerk sits over a desk, chewing the end of her quill as she feverishly works through a pile of letters.",
"It ain't much, but it's honest work. Commoners have never had any sort of special learning, but they make do through grit, long hours and hard work. They've earned what little they have. They work hard, they do their jobs\u2013no one ever taught them how to swing a battleaxe or throw magic bolts around.",
"But even so, even commoners sometimes have adventures of their own. Because why should those arrogant knights and snotty wizards get to hog the limelight all the time?",
{
"type": "entries",
"name": "Stay Alive and Work Together",
"page": 2,
"entries": [
"Commoners know to stick together. They don't possess any remarkable skills, but they help out where possible. When a regular person goes up against a rampaging dragon, or faces a savage goblin horde, they learn one lesson above all others; stay with the group or you're dead.",
"In that theme, commoners support others rather than handling problems alone. They will stay behind the big barbarian when the fighting starts, and they'll let the mages handle the fireballs. Commoners form teams, and they confront problems with friends by their side."
]
},
{
"type": "entries",
"name": "Creating a Commoner",
"page": 2,
"entries": [
"Commoners make for uncommon adventurers, but it's not unheard of for a farmer to leave his home and go adventuring, or for a clerk to pick up a sword instead of a quill. Think about what reason an average worker might have to go on an adventure; they may be seeking fortune and fame, or have been forced to by necessity, or maybe they are just tired of living a mundane life.",
"Commoners are defined largely by their professions - their jobs that they work. Commoners can take on wildly different roles depending on their livelihoods. Four subclasses are provided\u2013a hardy farmer, an enterprising merchant, an erudite clerk, or a self-reliant vagabond."
]
},
{
"type": "entries",
"name": "Creating a Commoner",
"page": 2,
"entries": [
"You can make a commoner quickly by following these suggestions. First, Constitution should be your highest ability score. Your second highest ability score depends on what subclass you choose; if playing a farmer choose Strength, if playing a merchant choose Charisma, if playing a clerk choose Intelligence, and if playing a vagabond choose Dexterity. Finally, pick whatever background appeals most to you.",
{
"type": "inset",
"name": "Variant Rule: Mediocre in Everything",
"entries": [
"Commoners make for a strange class in that they are meant ot be unremarkable, and slightly less than average in everything. That doesn't mean they are {@i useless} (they do have a few unique skills), but commoner is a class intended to encourage more role-playing opportunities rather than direct combat capability.",
"For a more challenging experience, you can chose to lean into this playstyle by making yourself truly average, and set all of your ability scores equal to 10 or 12. Good luck!"
]
}
]
}
]
}
]
}
],
"classFeature": [
{
"name": "Just A Simple Fellow",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 3,
"level": 1,
"entries": [
"From 1st level, you gain appreciation of the struggles of the common man. People look at you and they recognize you as a steady, down-to-earth person - they can tell by the dirt under your fingernails or the weary gaze in your eyes. This has the following effects, dependent on who you are interacting with:",
{
"type": "list",
"items": [
"You have advantage on Charisma ({@skill Persuasion}) rolls made when interacting with everyday workers. Common folk look out for each other; bartenders become more likely to share scandalous gossip with you, farmers are more likely to shelter you in their homes for a night, and common townsfolk are more likely to warn you when trouble is afoot.",
"You have advantage on Wisdom ({@skill Insight}) rolls made towards any merchants or swindlers who may be trying to take advantage of your hard-earned money.",
"You have advantage on Charisma ({@skill Deception}) rolls made when you are attempting to convince any sort of authority that you didn't do something. Arrogant nobility is biased to assume that all common people are lazy and unremarkable, and they will naturally disbelieve you if you claim any great accomplishment."
]
},
"In addition, you understand 'trader talk'\u2013a heavy mix of dialect and jargon that is popular among tradesmen and travelers. Trader talk sounds very rough and uses a great deal of obscure slang (often referring to mundane objects through weird names) which allows traders to recognize and communicate exclusively between themselves. It varies greatly depending on location and dialect, but commoners know how to translate heavily-accented voices and you can decipher any profession-specific slang.",
"Merchants will often treat anybody who understands trader talk differently; unscrupulous merchants that might otherwise attempt to take advantage will do not do so, while other tradesmen may even offer favors or advice."
]
},
{
"name": "Use What You Got",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 3,
"level": 1,
"entries": [
"From 1st level, you are proficient with improvised weapons. Specifically, you can use your artisan's tools as makeshift melee weapons, and you add your expertise bonus when making attack rolls with them. They deal {@dice 1d4} of whatever damage type is appropriate for them."
]
},
{
"name": "Livelihood",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 3,
"level": 1,
"entries": [
"Commoners work many different jobs, and take different approaches to life. Your livelihood determines your job, your experiences, and forms a major part of your character.",
"Your Livelihood grant additional class features at 1st, 5th, 9th and 14th level."
]
},
{
"name": "Skin Of Your Teeth",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 3,
"level": 2,
"entries": [
"Adventuring is dangerous work, but you manage to get by. Barely. From 2nd level, whenever an effect or attack would kill or reduce you to 0 hp, you fall prone and survive with 1 hp instead.",
"Afterwards, any hostile creatures in the area are faced with a Perception check with DC equal to 12 + your proficiency bonus, and on a failed check they will assume that you are dead and move onwards to another target. This effect lasts until you either move or make an action, at which point they will realize that you somehow survived.",
"You regain use of this feature when you finish a long or short rest."
]
},
{
"name": "Helping Hand",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 4,
"level": 3,
"entries": [
"At 3rd level, you can use the {@action Help} action as a bonus action."
]
},
{
"name": "Rough and Ready",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 4,
"level": 3,
"entries": [
"When faced with an unfamiliar challenge, you roll your sleeves up and get it done. At 3rd level, you can spend ten minutes practicing using a set of tools and gain a temporary proficiency bonus. This temporary proficiency will last until your next long rest, it doesn't stack with any other, and you can only have one at a time.",
"This temporary proficiency bonus can be applied towards any tool, mount, or vehicle - so you long as you have an object in hand that you can use to practice. You cannot gain any skill proficiency in this manner.",
"During this practice period, you may fall several times - for example, if you are practicing at disabling a tripwire to gain proficiency in thieves' tools then you will likely trigger the trap, or if you practicing at mounting a horse then the horse may buckle. It is at the DM's discretion whether there will be any consequences from mistakes made during this practice period.",
"At 6th level, this temporary proficiency bonus doubles."
]
},
{
"name": "Learn Feat",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 4,
"level": 4,
"entries": [
"When you reach 4th level, you can learn one feat of your choice.",
{
"type": "inset",
"name": "Why No Ability Score Improvements?",
"entries": [
"Learning a feat better suits the commoner's theme rather than taking ability score improvements. In this class, it is better to have a variety of different skills, rather than trying to master any ability."
]
}
]
},
{
"name": "Look, I'm Helping!",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 4,
"level": 5,
"entries": [
"You may not be the strongest, the toughest, the fastest or the smartest, but you can still assist! At 5th level, when you apply the {@action Help} action to aid an ally attacking an enemy in combat, then that ally may add your proficiency bonus to their own attack roll.",
"If your ally's attack is successful, then you may also make a single attack targeted at that enemy immediately at the end of your ally's turn (no reaction required)."
]
},
{
"name": "Livelihood Feature",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 4,
"level": 5,
"entries": [
"At 5th level, you gain a feature granted by your Commoner Livelihood."
]
},
{
"name": "Learn It From Others",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 4,
"level": 6,
"entries": [
"From 6th level, you realize that you can do it just like the others can. Select an ally that you have known for at least a week, and then copy the following traits from them:",
{
"type": "list",
"items": [
"Gain one skill or tool proficiency that they possess.",
"If the ally can cast spells, then you can learn 3 of their cantrips (using the same Spellcasting ability as they use). Otherwise, you gain one armor class proficiency and two weapon proficiencies that they possess."
]
},
"This feature can be used a maximum of once a week. If you lose contact with that ally, you may keep the traits that you have copied from them indefinitely. If you later wish to copy from a different ally, then their new traits will replace the traits you copied previously."
]
},
{
"name": "Close Shave",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 4,
"level": 7,
"entries": [
"At 7th level, you're getting the hang of this now. Whenever an effect or attack would inflict damage more than half your current hp, you can choose to intervene such that it inflicts only half your current hp instead (rounded up).",
"This feature can be used a number of times equal to your proficiency bonus, and refreshes when you finish a long rest."
]
},
{
"name": "Learn Feat",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 4,
"level": 8,
"entries": [
"When you reach 8th level, you can learn one feat of your choice."
]
},
{
"name": "Livelihood Feature",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 4,
"level": 9,
"entries": [
"At 9th level, you gain a feature granted by your Commoner Livelihood."
]
},
{
"name": "Teamwork Gets It Done",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 4,
"level": 10,
"entries": [
"You aren't the sort to fight alone. By 10th level you've learned how to coordinate with others - you are like the glue that holds a group together. At the end of a long rest, you can pick three willing allies and form a team with them. Up until the next long rest, so long as those allies remain within both earshot and line of sight of you and each other, then the team has the following benefits:",
{
"type": "list",
"items": [
"When any member of the team makes an ability check, they may choose to use the relevant ability modifier of another member instead of their own.",
"In combat, so long as one member of the team is within 5 foot of an enemy, then all other members of the team may attack that enemy with advantage.",
"When you use the Help action to assist in attacking an enemy, then the benefit of your Help action applies equally to all members of your team. If multiple allies hit the target, you may make multiple attacks from your ‘Look, I'm Helping!' feature."
]
}
]
},
{
"name": "Can't Believe That Worked!",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 4,
"level": 11,
"entries": [
"At 11th level, whenever you score a critical attack against an opponent during an {@action Attack} action, then you can then make a second action immediately afterwards. In addition, that opponent must pass a Constitution saving throw of DC 14 + your proficiency bonus, or become {@condition stunned} until its next turn. This can only apply once per round of combat."
]
},
{
"name": "Learn Feat",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 4,
"level": 12,
"entries": [
"When you reach 12th level, you can learn one feat of your choice."
]
},
{
"name": "Watch Out For That",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 4,
"level": 13,
"entries": [
"By 13th level, others in your party look to you for the prompt on when to run. You can apply your ‘Close Shave' feature to all others within your team.",
"When you or a team member within your line of sight suffers an effect or attack would inflict damage more than half of their current hp, then you can choose to intervene such that it inflicts only half of their current hp instead (rounded up).",
"This replaces your ‘Close Shave' feature. This feature can be used a number of times equal to your proficiency bonus, and refreshes when you finish a long or short rest."
]
},
{
"name": "Livelihood Feature",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 4,
"level": 14,
"entries": [
"At 14th level, you gain a feature granted by your Commoner Livelihood."
]
},
{
"name": "Look At Us Go!",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 5,
"level": 15,
"entries": [
"At 15th level, your 'Can't Believe That Worked!' feature applies to all members of your current team. Whenever any team member scores a critical attack against an opponent during an {@action Attack} action, then that team member may then take an additional action immediately afterwards. In addition, that opponent must pass a Constitution saving throw of DC 14 + your proficiency bonus, or become {@condition stunned} until its next turn. This can only apply once per person per round of combat."
]
},
{
"name": "Learn Feat",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 4,
"level": 16,
"entries": [
"When you reach 16th level, you can learn one feat of your choice."
]
},
{
"name": "Learned It From The Best",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 5,
"level": 17,
"entries": [
"At 17th level, you realize that this hero'ing stuff ain't so hard! Select an ally of an equivalent or lower level that you have known for at least a week, and then copy the following traits from them:",
{
"type": "list",
"items": [
"Raise any one of your ability scores (except for Constitution) to match theirs.",
"Gain expertise in one skill or tool they possess."
]
},
"This feature can be used a maximum of once a week. If you lose contact with that ally, you may keep the traits that you have copied from them indefinitely. If you later wish to copy from a different ally, then their new traits will replace the traits you copied previously."
]
},
{
"name": "Put to Good Use",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 5,
"level": 18,
"entries": [
"At 18th level, your chosen artisan tools receive an additional +3 bonus to all attack and damage rolls made with them."
]
},
{
"name": "Learn Feat",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 4,
"level": 19,
"entries": [
"When you reach 19th level, you can learn one feat of your choice."
]
},
{
"name": "Learn It From Me",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"page": 5,
"level": 20,
"entries": [
"At 20th level, man, you've got this. You're an inspiration to them all. You can share the benefits of two feats that you know with all members of your current team."
]
}
],
"subclassFeature": [
{
"name": "Farmer",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Farmer",
"page": 5,
"level": 1,
"entries": [
"A farmer\u2013could there be any more noble of a profession? Well, yes, probably\u2013but, even so, those people would all starve if you didn't do what you do. Farmers are hardy folk. They work the fields, you herd livestock, they do all of the dirty, back-breaking work just so others can eat. That type labor builds muscle, and responsibility.",
"Farmers tackle their problems head-on, and they look after their fellows.",
{
"type": "refSubclassFeature",
"subclassFeature": "Skills of the Field|Commoner|TCC|Farmer|TCC|1"
},
{
"type": "refSubclassFeature",
"subclassFeature": "Long Hours, Heavy Work|Commoner|TCC|Farmer|TCC|1"
}
]
},
{
"name": "Skills of the Field",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Farmer",
"page": 5,
"level": 1,
"header": 1,
"entries": [
"From 1st level, you gain the following:",
{
"type": "list",
"items": [
"Skill proficiency in two of: either {@skill Survival}, {@skill Nature} or {@skill Animal Handling}. If you already have proficiency, gain expertise.",
"Tool proficiency with {@item herbalism kit|phb}. If you already have this tool proficiency, pick another of your choice.",
"Proficiency with Strength saving throws."
]
},
"{@note {@b This feature applies only if commoner is your first class (i.e. you do not gain this feature if you choose farmer as a multiclass)}}"
]
},
{
"name": "Long Hours, Heavy Work",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Farmer",
"page": 6,
"level": 1,
"header": 1,
"entries": [
"From 1st level, you are accustomed to moving heavy loads. You count as one size larger when it comes to determining your carrying capacity and the weight you can push or drag.",
"In addition, you can use an action to remove a single point of an exhaustion. You regain use of this feature when you finish a long rest."
]
},
{
"name": "Farmer's Grit",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Farmer",
"page": 6,
"level": 5,
"header": 2,
"entries": [
"At 5th level, whether you're up against a stubborn bull or ploughing tough earth, you know how to grit your teeth and force your way through. As a bonus action, you can receive the following benefits:",
{
"type": "list",
"items": [
"You gain resistance to slashing, bludgeoning, and piercing damage.",
"You gain advantage on all attempts made to grapple.",
"You gain temporary hit points equal to your Commoner level.",
"You gain a bonus to your base Strength modifier equal to your Constitution modifier."
]
},
"These effect ends after a duration of ten minutes. You regain use of this feature when you finish a long or short rest."
]
},
{
"name": "Homecooked Grub",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Farmer",
"page": 6,
"level": 9,
"header": 2,
"entries": [
"A good meal braces you for the day. At level 9, during a short rest you can use ingredients of the earth to cook a hale and hearty meal for you and your companions. Yourself and up to ten companions gain temporary hit points equal to {@dice 2d6} plus your Commoner level. After you use this feature you cannot use it again until you finish a long rest.",
"At levels 13 and 17, the temporary hit points provided increases to {@dice 4d6} and {@dice 6d6} respectively."
]
},
{
"name": "All Together Now",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Farmer",
"page": 6,
"level": 14,
"header": 2,
"entries": [
"At 14th level, you weather any hardships side by side with your fellow farmhands. When you use your ‘Farmer's Grit' ability, then your whole team receives the benefits as listed."
]
},
{
"name": "Merchant",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Merchant",
"page": 6,
"level": 1,
"entries": [
"You are a merchant at heart. This whole adventuring business is a neat side hustle, but a merchant's true purpose is to buy, sell and make a profit. Merchants are clever and persuasive, they survive by bartering with others, finding the right goods for the job, and\u2013most importantly\u2013by earning money.",
"Merchants look out for their companions from the back lines. They provide money and goods to keep the party going.",
{
"type": "refSubclassFeature",
"subclassFeature": "Skills of the Trade|Commoner|TCC|Merchant|TCC|1"
},
{
"type": "refSubclassFeature",
"subclassFeature": "Coin Wherever You Go|Commoner|TCC|Merchant|TCC|1"
}
]
},
{
"name": "Skills of the Trade",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Merchant",
"page": 6,
"level": 1,
"header": 1,
"entries": [
"From 1st level, you gain the following:",
{
"type": "list",
"items": [
"Skill proficiency in two of: either {@skill Insight}, {@skill Deception} or {@skill Persuasion}. If you already have proficiency, gain expertise.",
"Tool proficiency with {@item forgery kit|PHB}. If you already have this tool proficiency, pick another of your choice.",
"Proficiency with Charisma saving throws."
]
},
"{@note {@b Note: This feature applies only if commoner is your first class (i.e. you do not gain this feature if you choose merchant as a multiclass)}}"
]
},
{
"name": "Coin Wherever You Go",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Merchant",
"page": 6,
"level": 1,
"header": 1,
"entries": [
"From 1st level, you're in the habit of picking up bits and pieces during your travels. Every day while journeying, you automatically earn 1 silver coin per Commoner level. This money could come from investments you made previously, or from selling to travelers you meet on the road, or even just from scrounging fallen coppers on the roadside.",
"In addition, you know the average selling prices of any items you have encountered before, and you instantly become aware if another merchant is overcharging you for familiar goods.",
{
"type": "inset",
"name": "Regarding Coin Value",
"entries": [
"The 'Coin Wherever You Go' feature is intended to provide a merchant with a small but consistent source of income, which increases gradually with level. 1 silver per commoner level is a suggested amount, but different worlds may use different coinages and values. The DM may adjust the value as they see fit."
]
}
]
},
{
"name": "Everything's For Sale",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Merchant",
"page": 6,
"level": 5,
"header": 2,
"entries": [
"At 5th level, you understand that money dictates all. This has the following benefits:",
{
"type": "list",
"items": [
"Any {@skill Persuasion} roll less than a 9 is considered a 9 instead.",
"You gain advantage on any Charisma ({@skill Persuasion}) checks made to bribe."
]
},
"Additionally, If combat begins against any enemy that has reason to care about such things (e.g. if bandits ambushes you, or if you encounter goblins hoarding gold) then you can use an action to interrupt initiative order and offer up payment instead of fighting. The DM will inform you immediately whether or not your attempt was successful. If successful, the enemies will name a price\u2013the exact sum dependent on the situation\u2013and if you can pay that price then those enemy will abandon hostilities so long as your party does the same."
]
},
{
"name": "Nothing But the Best",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Merchant",
"page": 6,
"level": 9,
"header": 2,
"entries": [
"You piece together bits and pieces, and slowly but surely enough your wares expand. At 9th level, you acquire an uncommon magic item of your choice\u2013preferably an item related to your backstory or journey, and must be subject to the DM's approval. You can do with this item what you will. At 13th level, you acquire an additional rare magic item through this feature. At 17th level, you acquire an additional very rare magic item."
]
},
{
"name": "Company Trading",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Merchant",
"page": 7,
"level": 14,
"header": 2,
"entries": [
"By 14th level, you've learnt how to work as part of a team in more ways than just combat. When you are part of a team, there are the following benefits:",
{
"type": "list",
"items": [
"Downtime activities become twice as productive for each member when done so as a group.",
"You receive a 25% discount to all goods bought from merchants when the team purchases them together.",
"Once each day, any member of the team can give a magic item to another member of the team, and the magic item will attune instantly to its new wearer. This can occur once per person per long rest."
]
}
]
},
{
"name": "Clerk",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Clerk",
"page": 7,
"level": 1,
"entries": [
"Clerks may appear humble and unassuming, but they are not to be underestimated. A clerk may work as a teller in a bank, or as a lord's scribe, or as a receptionist in an adventurer's guild\u2013but the purpose is the same. They run the ship. They deal with people, paperwork and more paperwork. The clerks see everything that ever happens more clearly than the people in charge, and nothing gets done unless the clerk does it.",
"Clerks prefer to apply their mind rather than might. They learn fast, and bring lots of useful little skills to the party.",
{
"type": "refSubclassFeature",
"subclassFeature": "Skills of the Office|Commoner|TCC|Clerk|TCC|1"
},
{
"type": "refSubclassFeature",
"subclassFeature": "Eye For Detail|Commoner|TCC|Clerk|TCC|1"
}
]
},
{
"name": "Skills of the Office",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Clerk",
"page": 7,
"level": 1,
"header": 1,
"entries": [
"From 1st level, you gain the following:",
{
"type": "list",
"items": [
"Skill proficiency in two of: either {@skill Perception}, {@skill Investigation} or {@skill History}. If you already have proficiency in a skill, gain expertise.",
"Tool proficiency with {@item calligrapher's supplies|PHB}. If you already have this tool proficiency, pick another of your choice.",
"Proficiency with Intelligence saving throws"
]
},
"{@note {@b Note: This feature applies only if commoner is your first class (i.e. you do not gain this feature if you choose clerk as a multiclass)}}"
]
},
{
"name": "Eye For Detail",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Clerk",
"page": 7,
"level": 1,
"header": 1,
"entries": [
"At 1st level, if you spend at least 1 minute observing or interacting with another creature outside of combat, then you can learn certain details about it and the threat it poses. The DM will tell you one of the following information:",
{
"type": "list",
"items": [
"The creature's CR or level.",
"Whether the creature has less than your current hitpoints, more than your current hitpoints, or more than twice your current hitpoints.",
"Any resistances or immunities that the creature possesses."
]
}
]
},
{
"name": "It's All Just Paper",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Clerk",
"page": 7,
"level": 5,
"header": 2,
"entries": [
"You know, magic isn't really that difficult. Wizards overcomplicate everything, but at the end of the day it's just reading from a fancy book. You know how to read.",
"At 5th level, you gain the ability to write up spells into your own spellbook. You do not possess any spell slots, but you can still cast spells as a ritual when your book is in hand. Upon acquiring this ability, you can choose {@filter two 1st level spells and one 2nd level spell that has the ritual tag|spells|level=1|level=2|components & miscellaneous= Ritual}, from any spell list. Regardless of the spell, for you the spellcasting ability is always Intelligence.",
"If you come across a spell in written form during your travels, you might be able to add them into your spell book. The spell's level can be no higher than half your level (rounded up), and it must have the ritual tag. The process of copying the spell into your book takes two hours per level of the spell, and costs 50gp per level.",
"In addition, you can now use your {@action Help} action to assist spellcasters as they are casting a spell. While you are helping an ally, that ally can add your Intelligence modifier onto their own spell attack roll."
]
},
{
"name": "Arcane Receptionist",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Clerk",
"page": 8,
"level": 9,
"header": 2,
"entries": [
"By 9th level, you're practically a mage yourself! You instantly acquire {@filter two ritual spells from any spell list, of any level up to 4th|spells|level=1|level=2|level=3|level=4|components & miscmiscellaneous=ritual}.",
"At 13th level, you acquire an additional {@filter two ritual spells of any level up to 5th|spells|level=1|level=2|level=3|level=4|level=5|components & miscmiscellaneous=ritual}. At 17th level, you acquire an additional {@filter two ritual spells of any level up to 6th|spells|level=1|level=2|level=3|level=4|level=5|level=6|components & miscmiscellaneous=ritual}.",
"You can also now share your spell book with other spellcasters, and likewise you can read from your allies' spell books if they have one. You can only cast ritual spells through the Commoner class, but any other spellcasters may expend one of their own spell slots to cast a spell from your book (even if the spell in question is not on their list) so long as you are standing beside them and performing the {@action Help} action.",
"In addition, the time required for you to cast ritual spells is halved."
]
},
{
"name": "Master Scribe",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Clerk",
"page": 8,
"level": 14,
"header": 2,
"entries": [
"At 14th level, you apply your keen knowledge to assist your team. Whenever a member of your team casts a spell and you use the {@action Help} action, they can receive the following benefits:",
{
"type": "list",
"items": [
"You can take over a verbal or somatic component of the spell; if required, you perform the actions on their behalf as they cast the spell.",
"Your contribution reinforces the spell. As they are casting, you can choose to increase the spell level of your ally's spell by a single level (to a maximum of 9th level). This can be done a number of times equal to twice your Intelligence modifier, and you regain all uses when you finish a long rest."
]
}
]
},
{
"name": "Vagabond",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Vagabond",
"page": 8,
"level": 1,
"entries": [
"The life of a vagabond is a rough one. Vagabonds are homeless, constantly on the move, and always restless. Guardsmen will often chase vagabibds out of town, or monsters might ambush them on the road - yet vagabonds are survivors. Sometimes they take on odd jobs, sometimes they will beg on corners, and sometimes they will even resort to crime - but they will do whatever it takes.",
"Vagabonds are self-reliant, and look out for themselves above all others.",
{
"type": "refSubclassFeature",
"subclassFeature": "Skills of the Road|Commoner|TCC|Vagabond|TCC|1"
},
{
"type": "refSubclassFeature",
"subclassFeature": "Didn't Do Nothin'|Commoner|TCC|Vagabond|TCC|1"
}
]
},
{
"name": "Skills of the Road",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Vagabond",
"page": 8,
"level": 1,
"header": 1,
"entries": [
"From 1st level, you gain the following:",
{
"type": "list",
"items": [
"Skill proficiency in two of: either {@skill Survival}, {@skill Stealth} or {@skill Sleight of Hand}. If you already have proficiency in a skill, gain expertise.",
"Tool proficiency with {@item thieves' tools|PHB}. If you already have this tool proficiency, pick another of your choice.",
"Proficiency with Dexterity saving throws"
]
},
"{@note {@b Note: This feature applies only if commoner is your first class (i.e. you do not gain this feature if you choose vagabond as a multiclass)}}"
]
},
{
"name": "Didn't Do Nothin'",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Vagabond",
"page": 8,
"level": 1,
"header": 1,
"entries": [
"People look down at the beggar on the street, and you know how to fade into the shadows. From 1st level, while you remain motionless in a crowd or in a dimly-lit environment, you are considered {@condition invisible} for all intents and purposes. This effect ends if you make an aggressive action or draw attention to yourself."
]
},
{
"name": "Wasn't Me",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Vagabond",
"page": 8,
"level": 5,
"header": 2,
"entries": [
"From 5th level, you have perfected the art of staying safe by blaming others. If you make an attack roll against an enemy when an ally is within melee range, then you can automatically make a {@skill Stealth} check against their passive perception. On a successful check, the enemy will blame your ally for the attack and not you. If you also prompt an opportunity attack or a reaction attack during your turn, then that attack will be targeted at your ally, and not at you.",
"If you are successful in avoiding blame after making your attack, then you can remain unnoticed as per your 'Didn't Do Nothin' feature."
]
},
{
"name": "Stick 'Em In The Back",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Vagabond",
"page": 8,
"level": 9,
"header": 2,
"entries": [
"By 9th level, you know how to exploit an opportunity. When you are attacking an enemy with advantage, a successful hit will deal {@dice 3d6} extra damage.",
"At levels 13 and 17, the damage increases to {@dice 5d6} and {@dice 7d6}, respectively."
]
},
{
"name": "Go For The Other Guy",
"source": "TCC",
"className": "Commoner",
"classSource": "TCC",
"subclassSource": "TCC",
"subclassShortName": "Vagabond",
"page": 9,
"level": 14,
"header": 2,
"entries": [
"The best thing about being a part of a team is that the other people can serve as distractions. At level 14, you gain the ability to divert an opponent's attention away from yourself and to somebody else. When you are being targeted by a specific enemy, you can use your action to roll a {@dice d4}:",
{
"type": "list",
"items": [
"On a 1, the enemy will continue to target you.",
"On any other result, the enemy will ignore you and move to target a different, randomly selected member of your team."
]
},
"On its next turn, that enemy must target the team member as chosen by the {@dice d4} roll. In any later rounds, the enemy may resume attacking whomever it chooses.",
"You regain use of this feature when you finish a long or short rest."
]
}
],
"subclass": [
{
"name": "Farmer",
"source": "TCC",
"shortName": "Farmer",
"page": 5,
"subclassFeatures": [
"Farmer|Commoner|TCC|Farmer|TCC|1",
"Farmer's Grit|Commoner|TCC|Farmer|TCC|5",