forked from TheGiddyLimit/homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDaveParkinglot; SelerimBackgroundEdits.json
5976 lines (5976 loc) · 146 KB
/
DaveParkinglot; SelerimBackgroundEdits.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": "Selerim",
"abbreviation": "SLRM",
"color": "ff00ff",
"full": "Selerim",
"authors": [
"Jordan"
],
"version": "1.0.0"
}
],
"edition": "classic",
"dateAdded": 0,
"dateLastModified": 1731886430,
"_dateLastModifiedHash": "591cb3587a"
},
"background": [
{
"name": "Acolyte",
"source": "SLRM",
"freeRules2024": true,
"edition": "one",
"ability": [
{
"choose": {
"weighted": {
"from": [
"int",
"wis",
"cha"
],
"weights": [
2,
1
]
}
}
},
{
"choose": {
"weighted": {
"from": [
"int",
"wis",
"cha"
],
"weights": [
1,
1,
1
]
}
}
}
],
"feats": [
{
"magic initiate; cleric|xphb": true
}
],
"skillProficiencies": [
{
"insight": true,
"religion": true
}
],
"toolProficiencies": [
{
"calligrapher's supplies": true
}
],
"startingEquipment": [
{
"A": [
{
"item": "book|xphb",
"displayName": "Book (Prayers)"
},
{
"item": "calligrapher's supplies|xphb"
},
{
"item": "holy symbol|xphb"
},
{
"item": "parchment|xphb",
"quantity": 10
},
{
"item": "robe|xphb"
},
{
"value": 800
}
],
"B": [
{
"value": 5000
}
]
}
],
"entries": [
{
"type": "image",
"href": {
"type": "external",
"url": "https://raw.githubusercontent.com/5etools-mirror-2/5etools-img/main/backgrounds/XPHB/Acolyte.webp"
}
},
{
"type": "list",
"style": "list-hang-notitle",
"items": [
{
"type": "item",
"name": "Ability Scores:",
"entry": "Intelligence, Wisdom, Charisma"
},
{
"type": "item",
"name": "Feat:",
"entry": "{@feat Magic Initiate|XPHB} (Cleric)"
},
{
"type": "item",
"name": "Skill Proficiencies:",
"entry": "{@skill Insight|XPHB}, {@skill Religion|XPHB}"
},
{
"type": "item",
"name": "Tool Proficiency:",
"entry": "{@item Calligrapher's Supplies|XPHB}"
},
{
"type": "item",
"name": "Equipment:",
"entry": "Choose A or B: (A) {@item Calligrapher's Supplies|XPHB}, {@item Book|XPHB|Book (prayers)}, {@item Holy Symbol|XPHB}, {@item Parchment|XPHB} (10 sheets), {@item Robe|xphb}, 8 GP; or (B) 50 GP"
}
]
},
{
"name": "Suggested Characteristics",
"type": "entries",
"entries": [
"You devoted yourself to service in a temple, either nestled in a town or secluded in a sacred grove. There you performed rites in honor of a god or pantheon. You served under a priest and studied religion. Thanks to your priest's instruction and your own devotion, you also learned how to channel a modicum of divine power in service to your place of worship and the people who prayed there.",
"Acolytes are shaped by their experience in temples or other religious communities. Their study of the history and tenets of their faith and their relationships to temples, shrines, or hierarchies affect their mannerisms and ideals. Their flaws might be some hidden hypocrisy or heretical idea, or an ideal or bond taken to an extreme.",
{
"type": "table",
"colLabels": [
"d6",
"I became an acolyte because..."
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
"1",
"I ran away from home at an early age and found refuge in a temple."
],
[
"2",
"My family gave me to a temple, since they were unable or unwilling to care for me.."
],
[
"3",
"I grew up in a household with strong religious convictions. Entering the service of one or more gods seemed natural."
],
[
"4",
"An impassioned sermon struck a chord deep in my soul and moved me to serve the faith."
],
[
"5",
"I followed a childhood friend, a respected acquaintance, or someone I loved into religious service."
],
[
"6",
"After encountering a true servant of the gods, I was so inspired that I immediately entered the service of a religious group."
]
]
},
{
"type": "table",
"colLabels": [
"d8",
"Personality Trait"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
"1",
"I idolize a particular hero of my faith, and constantly refer to that person's deeds and example."
],
[
"2",
"I can find common ground between the fiercest enemies, empathizing with them and always working toward peace."
],
[
"3",
"I see omens in every event and action. The gods try to speak to us, we just need to listen."
],
[
"4",
"Nothing can shake my optimistic attitude."
],
[
"5",
"I quote (or misquote) sacred texts and proverbs in almost every situation."
],
[
"6",
"I am tolerant (or intolerant) of other faiths and respect (or condemn) the worship of other gods."
],
[
"7",
"I've enjoyed fine food, drink, and high society among my temple's elite. Rough living grates on me."
],
[
"8",
"I've spent so long in the temple that I have little practical experience dealing with people in the outside world."
]
]
},
{
"type": "table",
"colLabels": [
"d6",
"Ideal"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
"1",
"Tradition. The ancient traditions of worship and sacrifice must be preserved and upheld. (Lawful)"
],
[
"2",
"Charity. I always try to help those in need, no matter what the personal cost. (Good)"
],
[
"3",
"Change. We must help bring about the changes the gods are constantly working in the world. (Chaotic)"
],
[
"4",
"Power. I hope to one day rise to the top of my faith's religious hierarchy. (Lawful)"
],
[
"5",
"Faith. I trust that my deity will guide my actions. I have faith that if I work hard, things will go well. (Lawful)"
],
[
"6",
"Aspiration. I seek to prove myself worthy of my god's favor by matching my actions against his or her teachings. (Any)"
]
]
},
{
"type": "table",
"colLabels": [
"d6",
"Bond"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
"1",
"I would die to recover an ancient relic of my faith that was lost long ago."
],
[
"2",
"I will someday get revenge on the corrupt temple hierarchy who branded me a heretic."
],
[
"3",
"I owe my life to the priest who took me in when my parents died."
],
[
"4",
"Everything I do is for the common people."
],
[
"5",
"I will do anything to protect the temple where I served."
],
[
"6",
"I seek to preserve a sacred text that my enemies consider heretical and seek to destroy."
]
]
},
{
"type": "table",
"colLabels": [
"d6",
"Flaw"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
"1",
"I judge others harshly, and myself even more severely."
],
[
"2",
"I put too much trust in those who wield power within my temple's hierarchy."
],
[
"3",
"My piety sometimes leads me to blindly trust those that profess faith in my god."
],
[
"4",
"I am inflexible in my thinking."
],
[
"5",
"I am suspicious of strangers and expect the worst of them."
],
[
"6",
"Once I pick a goal, I become obsessed with it to the detriment of everything else in my life."
]
]
}
]
}
],
"hasFluff": true
},
{
"name": "Artisan",
"source": "SLRM",
"edition": "one",
"ability": [
{
"choose": {
"weighted": {
"from": [
"str",
"dex",
"int"
],
"weights": [
2,
1
]
}
}
},
{
"choose": {
"weighted": {
"from": [
"str",
"dex",
"int"
],
"weights": [
1,
1,
1
]
}
}
}
],
"feats": [
{
"crafter|xphb": true
}
],
"skillProficiencies": [
{
"investigation": true,
"persuasion": true
}
],
"toolProficiencies": [
{
"anyArtisansTool": 1
}
],
"startingEquipment": [
{
"A": [
{
"item": "artisan's tools|xphb"
},
{
"item": "pouch|xphb",
"quantity": 2
},
{
"item": "traveler's clothes|xphb"
},
{
"value": 3200
}
],
"B": [
{
"value": 5000
}
]
}
],
"entries": [
{
"type": "image",
"href": {
"type": "external",
"url": "https://raw.githubusercontent.com/5etools-mirror-2/5etools-img/main/backgrounds/XPHB/Artisan.webp"
}
},
{
"type": "list",
"style": "list-hang-notitle",
"items": [
{
"type": "item",
"name": "Ability Scores:",
"entry": "Strength, Dexterity, Intelligence"
},
{
"type": "item",
"name": "Feat:",
"entry": "{@feat Crafter|XPHB}"
},
{
"type": "item",
"name": "Skill Proficiencies:",
"entry": "{@skill Investigation|XPHB}, {@skill Persuasion|XPHB}"
},
{
"type": "item",
"name": "Tool Proficiency:",
"entry": "Choose one kind of {@item Artisan's Tools|XPHB}"
},
{
"type": "item",
"name": "Equipment:",
"entry": "Choose A or B: (A) {@item Artisan's Tools|XPHB} (same as above), 2 {@item Pouch|XPHB|Pouches}, {@item Traveler's Clothes|XPHB}, 32 GP; or (B) 50 GP"
}
]
},
{
"name": "Suggested Characteristics",
"type": "entries",
"entries": [
"You began mopping floors and scrubbing counters in an artisan's workshop for a few coppers per day as soon as you were strong enough to carry a bucket. When you were old enough to apprentice, you learned to create basic crafts of your own, as well as how to sweet-talk the occasional demanding customer. Your trade has also given you a keen eye for detail.",
"Artisans are among the most ordinary people in the world—until they set down their tools and take up an adventuring career. They understand the value of hard work and the importance of community, but they're vulnerable to sins of greed and covetousness.",
{
"type": "table",
"colLabels": [
"d6",
"I became an artisan because..."
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
"1",
"I was apprenticed to a master who taught me the guild's business."
],
[
"2",
"I helped a guild artisan keep a secret or complete a task, and in return I was taken on as an apprentice."
],
[
"3",
"One of my family members who belonged to the guild made a place for me."
],
[
"4",
"I was always good with my hands, so I took the opportunity to learn a trade."
],
[
"5",
"I wanted to get away from my home situation and start a new life."
],
[
"6",
"I learned the essentials of my craft from a mentor but had to join the guild to finish my training."
]
]
},
{
"type": "table",
"colLabels": [
"d8",
"Personality Trait"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
"1",
"I believe that anything worth doing is worth doing right. I can't help it—I'm a perfectionist."
],
[
"2",
"I'm a snob who looks down on those who can't appreciate fine art."
],
[
"3",
"I always want to know how things work and what makes people tick."
],
[
"4",
"I'm full of witty aphorisms and have a proverb for every occasion."
],
[
"5",
"I'm rude to people who lack my commitment to hard work and fair play."
],
[
"6",
"I like to talk at length about my profession."
],
[
"7",
"I don't part with my money easily and will haggle tirelessly to get the best deal possible."
],
[
"8",
"I'm well known for my work, and I want to make sure everyone appreciates it. I'm always taken aback when people haven't heard of me."
]
]
},
{
"type": "table",
"colLabels": [
"d6",
"Ideal"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
"1",
"Community. It is the duty of all civilized people to strengthen the bonds of community and the security of civilization. (Lawful)"
],
[
"2",
"Generosity. My talents were given to me so that I could use them to benefit the world. (Good)"
],
[
"3",
"Freedom. Everyone should be free to pursue his or her own livelihood. (Chaotic)"
],
[
"4",
"Greed. I'm only in it for the money. (Evil)"
],
[
"5",
"People. I'm committed to the people I care about, not to ideals. (Neutral)"
],
[
"6",
"Aspiration. I work hard to be the best there is at my craft. (Any)"
]
]
},
{
"type": "table",
"colLabels": [
"d6",
"Bond"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
"1",
"The workshop where I learned my trade is the most important place in the world to me."
],
[
"2",
"I created a great work for someone, and then found them unworthy to receive it. I'm still looking for someone worthy."
],
[
"3",
"I owe my guild a great debt for forging me into the person I am today."
],
[
"4",
"I pursue wealth to secure someone's love."
],
[
"5",
"One day I will return to my guild and prove that I am the greatest artisan of them all."
],
[
"6",
"I will get revenge on the evil forces that destroyed my place of business and ruined my livelihood."
]
]
},
{
"type": "table",
"colLabels": [
"d6",
"Flaw"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
"1",
"I'll do anything to get my hands on something rare or priceless."
],
[
"2",
"I'm quick to assume that someone is trying to cheat me."
],
[
"3",
"No one must ever learn that I once stole money from guild coffers."
],
[
"4",
"I'm never satisfied with what I have—I always want more."
],
[
"5",
"I would kill to acquire a noble title."
],
[
"6",
"I'm horribly jealous of anyone who can outshine my handiwork. Everywhere I go, I'm surrounded by rivals."
]
]
}
]
}
],
"hasFluff": true
},
{
"name": "Charlatan",
"source": "SLRM",
"edition": "one",
"ability": [
{
"choose": {
"weighted": {
"from": [
"dex",
"con",
"cha"
],
"weights": [
2,
1
]
}
}
},
{
"choose": {
"weighted": {
"from": [
"dex",
"con",
"cha"
],
"weights": [
1,
1,
1
]
}
}
}
],
"feats": [
{
"skilled|xphb": true
}
],
"skillProficiencies": [
{
"deception": true,
"sleight of hand": true
}
],
"toolProficiencies": [
{
"calligrapher's supplies": true
}
],
"startingEquipment": [
{
"A": [
{
"item": "forgery kit|xphb"
},
{
"item": "costume|xphb"
},
{
"item": "fine clothes|xphb"
},
{
"value": 1500
}
],
"B": [
{
"value": 5000
}
]
}
],
"entries": [
{
"type": "image",
"href": {
"type": "external",
"url": "https://raw.githubusercontent.com/5etools-mirror-2/5etools-img/main/backgrounds/XPHB/Charlatan.webp"
}
},
{
"type": "list",
"style": "list-hang-notitle",
"items": [
{
"type": "item",
"name": "Ability Scores:",
"entry": "Dexterity, Constitution, Charisma"
},
{
"type": "item",
"name": "Feat:",
"entry": "{@feat Skilled|XPHB}"
},
{
"type": "item",
"name": "Skill Proficiencies:",
"entry": "{@skill Deception|XPHB}, {@skill Sleight of Hand|XPHB}"
},
{
"type": "item",
"name": "Tool Proficiency:",
"entry": "{@item Forgery Kit|XPHB}"
},
{
"type": "item",
"name": "Equipment:",
"entry": "Choose A or B: (A) {@item Forgery Kit|XPHB}, {@item Costume|XPHB}, {@item Fine Clothes|XPHB}, 15 GP; or (B) 50 GP"
}
]
},
{
"name": "Favorite Schemes",
"type": "entries",
"entries": [
"Every charlatan has an angle he or she uses in preference to other schemes. Choose a favorite scam or roll on the table below.",
{
"type": "table",
"colLabels": [
"d6",
"Scam"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
"1",
"I cheat at games of chance."
],
[
"2",
"I shave coins or forge documents."
],
[
"3",
"I insinuate myself into people's lives to prey on their weakness and secure their fortunes."
],
[
"4",
"I put on new identities like clothes."
],
[
"5",
"I run sleight-of-hand cons on street corners."
],
[
"6",
"I convince people that worthless junk is worth their hard-earned money."
]
]
}
]
},
{
"name": "Suggested Characteristics",
"type": "entries",
"entries": [
"Once you were old enough to order an ale, you soon had a favorite stool in every tavern within ten miles of where you were born. As you traveled the circuit from public house to watering hole, you learned to prey on unfortunates who were in the market for a comforting lie or two—perhaps a sham potion or forged ancestry records.",
"Charlatans are colorful characters who conceal their true selves behind the masks they construct. They reflect what people want to see, what they want to believe, and how they see the world. But their true selves are sometimes plagued by an uneasy conscience, an old enemy, or deep-seated trust issues.",
{
"type": "table",
"colLabels": [
"d6",
"I became a charlatan because..."
],
"colStyles": [
"col-2 text-center",
"col-10"
],
"rows": [
[
"1",
"I was left to my own devices, and my knack for manipulating others helped me survive."
],
[
"2",
"I learned early on that people are gullible and easy to exploit."
],
[
"3",
"I often got in trouble, but I managed to talk my way out of it every time."
],
[
"4",
"I took up with a confidence artist, from whom I learned my craft."
],
[
"5",
"After a charlatan fleeced my family, I decided to learn the trade so I would never be fooled by such deception again."
],
[
"6",
"I was poor or I feared becoming poor, so I learned the tricks I needed to keep myself out of poverty."
]
]
},
{
"type": "table",
"colLabels": [
"d8",
"Personality Trait"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
"1",
"I fall in and out of love easily, and am always pursuing someone."
],
[
"2",
"I have a joke for every occasion, especially occasions where humor is inappropriate."
],
[
"3",
"Flattery is my preferred trick for getting what I want."
],
[
"4",
"I'm a born gambler who can't resist taking a risk for a potential payoff."
],
[
"5",
"I lie about almost everything, even when there's no reason to."
],
[
"6",
"Sarcasm and insults are my weapons of choice."
],
[
"7",
"I keep multiple holy symbols on me and invoke whatever deity might come in useful at any given moment."
],
[
"8",
"I pocket anything I see that might have some value."
]
]
},
{
"type": "table",
"colLabels": [
"d6",
"Ideal"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
"1",
"Independence. I am a free spirit—no one tells me what to do. (Chaotic)"
],
[
"2",
"Fairness. I never target people who can't afford to lose a few coins. (Lawful)"
],
[
"3",
"Charity. I distribute the money I acquire to the people who really need it. (Good)"
],
[
"4",
"Creativity. I never run the same con twice. (Chaotic)"
],
[
"5",
"Friendship. Material goods come and go. Bonds of friendship last forever. (Good)"
],
[
"6",
"Aspiration. I'm determined to make something of myself. (Any)"
]
]
},
{
"type": "table",
"colLabels": [
"d6",
"Bond"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [
[
"1",
"I fleeced the wrong person and must work to ensure that this individual never crosses paths with me or those I care about."
],
[
"2",
"I owe everything to my mentor—a horrible person who's probably rotting in jail somewhere."
],
[
"3",
"Somewhere out there, I have a child who doesn't know me. I'm making the world better for him or her."
],
[
"4",
"I come from a noble family, and one day I'll reclaim my lands and title from those who stole them from me."
],
[
"5",
"A powerful person killed someone I love. Some day soon, I'll have my revenge."
],
[
"6",
"I swindled and ruined a person who didn't deserve it. I seek to atone for my misdeeds but might never be able to forgive myself."
]
]
},
{
"type": "table",
"colLabels": [
"d6",
"Flaw"
],
"colStyles": [
"col-1 text-center",
"col-11"
],
"rows": [