forked from crit-tech/LGMRD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLGMRD.json
9090 lines (9090 loc) · 332 KB
/
LGMRD.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
{
"version": "2.0.0",
"sections": [
{
"id": "buildingagroup",
"title": "Building an RPG Group",
"intro": "",
"subsections": [
{
"id": "findingandmaintainingasolidgroup",
"title": "Finding and Maintaining a Solid Group",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Finding and maintaining a solid group for roleplaying gaming remains the most difficult task for many GMs. This section offers suggestions for finding players that fit well with your group, and for keeping that group going for years to come."
}
],
"order": 0
},
{
"id": "findingplayers",
"title": "Finding Players",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "The first step to building an RPG group is finding players. Some of the most common ways to find players for a group include the following:"
},
{
"type": "table",
"order": 1,
"data": [
{
"item": "Recruit friends and family"
},
{
"item": "Recruit coworkers"
},
{
"item": "Ask about putting a notice up at your local game store or library"
},
{
"item": "Join local organized play groups"
},
{
"item": "Seek LFG (Looking for Group) forums on Discord, Reddit, Meetup, Next Door, and other forums"
}
]
}
],
"order": 1
},
{
"id": "selectingplayers",
"title": "Selecting Players",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Before you invite a player to your gaming group, ensure that they're the right fit for your game and the other players. Start by asking a prospective player questions about their commitment, play style, and reaction to your style of play. Example questions might include the following:\n\nAsking questions isn't about getting right or wrong answers. Rather, questions can help you identify players who will fit well into your game. They'll also help you determine if there are things a player desires that they're not going to find in your game.\n\nTake the time to meet one-on-one with a prospective player and talk to them about what they want from your game and what experiences they've had with other groups. Go with your gut judgment on whether each player you meet will be a good fit for your group.\n\nIf they seem like a good fit, invite a player to a single-session game or a short series of games at a different time than your regularly scheduled session, ideally with one or more regular players from your group. See how they fit in during an actual game. If they don't fit, you don't have to invite them to another game. But if they do feel like a good fit, you can invite them to your regular game and see how things go."
},
{
"type": "table",
"order": 1,
"data": [
{
"item": "Do they live nearby, and can they commit to the game's schedule?"
},
{
"item": "Do they consider themselves a more story-focused or more tactics-focused player?"
},
{
"item": "Are they okay playing with theater-of-the-mind combat or playing on a battle grid?"
},
{
"item": "What do they enjoy most about RPGs?"
},
{
"item": "How do they weight their enjoyment of the following: NPC interaction, exploration, world lore, character background, character optimization, and tactical combat?"
}
]
}
],
"order": 2
},
{
"id": "flexiblenumbersofplayersandon-callplayers",
"title": "Flexible Numbers of Players and On-Call Players",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Decide on the minimum and maximum number of players for any given session. A minimum of three and maximum of six is often ideal. While seeking players, you might find some who can't commit to a regularly scheduled game, but who can come from time to time. Put these players on an \"on-call\" list so that if you have an open chair, you can ask them if they're able to fill it. Putting prospective new players on an on-call list is also a good way to see if they're a good fit for the group before they become a regular player."
}
],
"order": 3
},
{
"id": "choosearegularschedule",
"title": "Choose a Regular Schedule",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Rather than attempting to schedule games from session to session, find a set day and time to run your games and stick to it. Run games every week if possible. Otherwise, try every other week at the same day and time. Choose regular, shorter games rather than longer, more infrequent games to help with scheduling."
}
],
"order": 4
},
{
"id": "thegamemustgoon",
"title": "The Game Must Go On",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Run the game as regularly as you can. Don't cancel games if one or two players can't make it. If you're able to play with as few as three and have a regular group of six, it should take four players canceling before you have to call off a game. The more consistent the game, the more likely that the players will make it a part of their regular schedule.\n\nIf you find that certain players are regularly missing the game, ask if they would prefer to be on your on-call list, and then seek a new player with better availability."
}
],
"order": 5
},
{
"id": "letabsentcharactersfadeintothebackground",
"title": "Let Absent Characters Fade into the Background",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Don't worry about what happens to characters in-game when a player misses the session. If there is an easy way for the character to step out of the story, take it. Otherwise, just let the character fade into the background. Your players will understand why you're taking such liberties with the universe, and that in-world consistency isn't as important as making allowances for the realities of people's lives."
}
],
"order": 6
}
]
},
{
"id": "connectingcharacters",
"title": "Connecting Characters",
"intro": "During your session zero of a new campaign, or if you're running a single-session one-shot game, consider establishing connections between the characters to help build a cohesive bond between them before the game begins. This can help prevent ham-fisted and convoluted attempts to build a story that connects the characters, when all the players already know perfectly well that they're coming together simply for the adventure.\n\nThis section presents two potential approaches to connecting characters. First, all the characters can be previously connected through a single organization, faction, or patron, using ideas from the Group Connections table. Alternatively, each character can establish a connection to one or more other characters through a personal relationship and history, using ideas from the Character Connections table. Players can work together to come up with these shared histories based on the overall themes of the campaign, or the group can randomly select potential relationships and tweak the results as desired.\n\nFor individual connections, each player can roll on the Character Connections table to establish a relationship with the character of the player on their right. Going once around the game table this way means that every character will have two relationships-one with the player on their right and one with the player on their left.\n\nFor single-session games, consider establishing a single group relationship for all the characters before the game begins. This relationship can directly tie into the story of the adventure, and will speed up the game by eliminating lengthy discussions about how the characters got together.",
"subsections": [
{
"id": "groupconnections",
"title": "Group Connections",
"content": [
{
"type": "table",
"order": 0,
"data": [
{
"item_num": 1,
"item": "Mercenary company"
},
{
"item_num": 2,
"item": "Self-employed investigators"
},
{
"item_num": 3,
"item": "Official investigators"
},
{
"item_num": 4,
"item": "Royal advisors"
},
{
"item_num": 5,
"item": "Thieves' guild"
},
{
"item_num": 6,
"item": "Secret society"
},
{
"item_num": 7,
"item": "Religious investigators"
},
{
"item_num": 8,
"item": "Adventuring company"
},
{
"item_num": 9,
"item": "Business investigators"
},
{
"item_num": 10,
"item": "Assassins' guild"
},
{
"item_num": 11,
"item": "Wizarding school"
},
{
"item_num": 12,
"item": "Monastic students"
},
{
"item_num": 13,
"item": "Gladiator school"
},
{
"item_num": 14,
"item": "Military specialists"
},
{
"item_num": 15,
"item": "Spy network"
},
{
"item_num": 16,
"item": "Constabulary"
},
{
"item_num": 17,
"item": "Magically bound servants"
},
{
"item_num": 18,
"item": "Divinely inspired"
},
{
"item_num": 19,
"item": "Protectors of the common folk"
},
{
"item_num": 20,
"item": "Seekers of vengeance"
}
]
}
],
"order": 0
},
{
"id": "characterconnections",
"title": "Character Connections",
"content": [
{
"type": "table",
"order": 0,
"data": [
{
"item_num": 1,
"item": "Sibling of"
},
{
"item_num": 2,
"item": "Saved by"
},
{
"item_num": 3,
"item": "Served with"
},
{
"item_num": 4,
"item": "Protected by"
},
{
"item_num": 5,
"item": "Adventured with"
},
{
"item_num": 6,
"item": "Friendly rival of"
},
{
"item_num": 7,
"item": "Childhood friend of"
},
{
"item_num": 8,
"item": "Magically bound to"
},
{
"item_num": 9,
"item": "Survived with"
},
{
"item_num": 10,
"item": "Escaped with"
},
{
"item_num": 11,
"item": "Apprentice of"
},
{
"item_num": 12,
"item": "Acolyte of"
},
{
"item_num": 13,
"item": "Idolizes"
},
{
"item_num": 14,
"item": "Drinking buddies with"
},
{
"item_num": 15,
"item": "Business associate of"
},
{
"item_num": 16,
"item": "Lost a bet to"
},
{
"item_num": 17,
"item": "Indebted to"
},
{
"item_num": 18,
"item": "Trained by"
},
{
"item_num": 19,
"item": "Dueling partner of"
},
{
"item_num": 20,
"item": "On the run with"
}
]
}
],
"order": 1
}
]
},
{
"id": "coreadventuregenerators",
"title": "Core Adventure Generators",
"intro": "The tables in this section can help you generate a core fantasy adventure based on the traditional concept of getting hired by a patron or other NPC to take on a quest in a specific location. Often these adventures take place in small settlements surrounded by ancient ruins and monstrous lairs on the edge of civilization.\n\nUse these tables together to generate and inspire full adventures, or use individual tables to fill in the details of other adventures you create or play. This generator (and specifically, the Dungeon Monsters table and the Treasure table) is set up for characters of 1st to 4th level, but can be easily modified for higher-level adventures.",
"subsections": [
{
"id": "patronsandnpcs",
"title": "Patrons and NPCs",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Use these tables to generate a patron or NPC for your adventure, applying an NPC stat block to create villains, hirelings, rivals, or heralds."
},
{
"type": "table",
"order": 1,
"headers": {
"d20": "d20",
"behavior": "Behavior",
"ancestry": "Ancestry"
},
"data": [
{
"d20": "1",
"behavior": "Enthusiastic",
"ancestry": "Human"
},
{
"d20": "2",
"behavior": "Flighty",
"ancestry": "Elf"
},
{
"d20": "3",
"behavior": "Shifty",
"ancestry": "Dwarf"
},
{
"d20": "4",
"behavior": "Optimistic",
"ancestry": "Halfling"
},
{
"d20": "5",
"behavior": "Paranoid",
"ancestry": "Orc"
},
{
"d20": "6",
"behavior": "Well spoken",
"ancestry": "Drow"
},
{
"d20": "7",
"behavior": "Superior",
"ancestry": "Tiefling"
},
{
"d20": "8",
"behavior": "Haughty",
"ancestry": "Dragonborn"
},
{
"d20": "9",
"behavior": "Pessimistic",
"ancestry": "Fey"
},
{
"d20": "10",
"behavior": "Suspicious",
"ancestry": "Goblin"
},
{
"d20": "11",
"behavior": "Worried",
"ancestry": "Construct"
},
{
"d20": "12",
"behavior": "Greedy",
"ancestry": "Celestial"
},
{
"d20": "13",
"behavior": "Brave",
"ancestry": "Ghost"
},
{
"d20": "14",
"behavior": "Stern",
"ancestry": "Wizard's familiar"
},
{
"d20": "15",
"behavior": "Sly",
"ancestry": "Talking animal"
},
{
"d20": "16",
"behavior": "Wise",
"ancestry": "Avian"
},
{
"d20": "17",
"behavior": "Reserved",
"ancestry": "Lizardfolk"
},
{
"d20": "18",
"behavior": "Cheery",
"ancestry": "Catfolk"
},
{
"d20": "19",
"behavior": "Opportunistic",
"ancestry": "Lycanthrope"
},
{
"d20": "20",
"behavior": "Soft spoken",
"ancestry": "Artifact"
}
]
}
],
"order": 0
},
{
"id": "quests",
"title": "Quests",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Any quests the characters are asked to fulfill might be distilled down to one of the following starting points."
}
],
"order": 1
},
{
"id": "1d20quests",
"title": "1d20 Quests",
"content": [
{
"type": "table",
"order": 0,
"data": [
{
"item_num": 1,
"item": "Find an item"
},
{
"item_num": 2,
"item": "Kill a villain"
},
{
"item_num": 3,
"item": "Rescue an NPC"
},
{
"item_num": 4,
"item": "Uncover a secret"
},
{
"item_num": 5,
"item": "Clear out monsters"
},
{
"item_num": 6,
"item": "Protect a monument"
},
{
"item_num": 7,
"item": "Protect an NPC"
},
{
"item_num": 8,
"item": "Steal an item"
},
{
"item_num": 9,
"item": "Return an item"
},
{
"item_num": 10,
"item": "Close a gate"
},
{
"item_num": 11,
"item": "Open a gate"
},
{
"item_num": 12,
"item": "Activate a monument"
},
{
"item_num": 13,
"item": "Disable an artifact"
},
{
"item_num": 14,
"item": "Recover an item"
},
{
"item_num": 15,
"item": "Convince an NPC"
},
{
"item_num": 16,
"item": "Awaken a monster"
},
{
"item_num": 17,
"item": "Put a monster to sleep"
},
{
"item_num": 18,
"item": "Bury a secret"
},
{
"item_num": 19,
"item": "Discover a monument"
},
{
"item_num": 20,
"item": "Dig up an artifact"
}
]
}
],
"order": 2
},
{
"id": "locationsmonumentsanditems",
"title": "Locations, Monuments, and Items",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "The location of the quest might also contain specific monuments or items tied to the adventure's goals."
},
{
"type": "table",
"order": 1,
"headers": {
"d20": "d20",
"location": "Location",
"monument": "Monument",
"item": "Item"
},
"data": [
{
"d20": "1",
"location": "Tower",
"monument": "Sarcophagus",
"item": "Coin"
},
{
"d20": "2",
"location": "Crypts",
"monument": "Obelisk",
"item": "Figurine"
},
{
"d20": "3",
"location": "Keep",
"monument": "Orb",
"item": "Gemstone"
},
{
"d20": "4",
"location": "Cairn",
"monument": "Bone pile",
"item": "Amulet"
},
{
"d20": "5",
"location": "Giant statue",
"monument": "Skull",
"item": "Earring"
},
{
"d20": "6",
"location": "Caves",
"monument": "Megalith",
"item": "Bell"
},
{
"d20": "7",
"location": "Sewers",
"monument": "Pillars",
"item": "Bone"
},
{
"d20": "8",
"location": "Temple",
"monument": "Throne",
"item": "Bowl"
},
{
"d20": "9",
"location": "Mines",
"monument": "Statues",
"item": "Candle"
},
{
"d20": "10",
"location": "Mansion",
"monument": "Well",
"item": "Ring"
},
{
"d20": "11",
"location": "Academy",
"monument": "Orrery",
"item": "Circlet"
},
{
"d20": "12",
"location": "Dungeon",
"monument": "Effigy",
"item": "Bracelet"
},
{
"d20": "13",
"location": "Barrow",
"monument": "Arcane circle",
"item": "Dagger"
},
{
"d20": "14",
"location": "Vault",
"monument": "Spire",
"item": "Goblet"
},
{
"d20": "15",
"location": "Tomb",
"monument": "Altar",
"item": "Key"
},
{
"d20": "16",
"location": "Warren",
"monument": "Pit",
"item": "Lamp"
},
{
"d20": "17",
"location": "Ship",
"monument": "Fountain",
"item": "Brooch"
},
{
"d20": "18",
"location": "Sanctum",
"monument": "Archway",
"item": "Skull"
},
{
"d20": "19",
"location": "Cove",
"monument": "Cage",
"item": "Mask"
},
{
"d20": "20",
"location": "Castle",
"monument": "Brazier",
"item": "Necklace"
}
]
}
],
"order": 3
},
{
"id": "conditiondescriptionandorigin",
"title": "Condition, Description, and Origin",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Locations, monuments, or items can be flavored by determining their condition, description, and origin."
},
{
"type": "table",
"order": 1,
"headers": {
"d20": "d20",
"condition": "Condition",
"description": "Description",
"origin": "Origin"
},
"data": [
{
"d20": "1",
"condition": "Smoky",
"description": "Ruined",
"origin": "Human"
},
{
"d20": "2",
"condition": "Acidic",
"description": "Decrepit",
"origin": "Elven"
},
{
"d20": "3",
"condition": "Bloodied",
"description": "Obsidian",
"origin": "Dwarven"
},
{
"d20": "4",
"condition": "Burning",
"description": "Haunted",
"origin": "Halfling"
},
{
"d20": "5",
"condition": "Frozen",
"description": "Unholy",
"origin": "Gnomish"
},
{
"d20": "6",
"condition": "Poisonous",
"description": "Sunken",
"origin": "Tiefling"
},
{
"d20": "7",
"condition": "Necrotic",
"description": "Forgotten",
"origin": "Dragonborn"
},
{
"d20": "8",
"condition": "Thunderous",
"description": "Macabre",
"origin": "Orc"
},
{
"d20": "9",
"condition": "Ringing",
"description": "Ancient",
"origin": "Goblinoid"
},
{
"d20": "10",
"condition": "Lightning",
"description": "Festering",
"origin": "Undead"
},
{
"d20": "11",
"condition": "Radiant",
"description": "Monstrous",
"origin": "Celestial"
},
{
"d20": "12",
"condition": "Shadowed",
"description": "Golden",
"origin": "Fey"
},
{
"d20": "13",
"condition": "Oozing",
"description": "Spired",
"origin": "Elemental"
},
{
"d20": "14",
"condition": "Ethereal",
"description": "Towering",
"origin": "Giant"
},
{
"d20": "15",
"condition": "Whispering",
"description": "Forsaken",
"origin": "Fiendish"
},
{
"d20": "16",
"condition": "Windswept",
"description": "Gloomy",
"origin": "Unseelie"
},
{
"d20": "17",
"condition": "Drenched",
"description": "Horrific",
"origin": "Aberrant"
},
{
"d20": "18",
"condition": "Diseased",
"description": "Colossal",
"origin": "Shadow"
},
{
"d20": "19",
"condition": "Crystalline",
"description": "Overgrown",
"origin": "Ethereal"
},
{
"d20": "20",
"condition": "Silvered",
"description": "Shattered",
"origin": "Abyssal"
}
]
}
],
"order": 4
},
{
"id": "chambers",
"title": "Chambers",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Use this list when you need to define the purpose of a chamber in a dungeon, keep, or similar site. Reflavor any chamber to suit the theme of the adventure."
}
],
"order": 5
},
{
"id": "1d20chambers",
"title": "1d20 Chambers",
"content": [
{
"type": "table",
"order": 0,
"data": [
{
"item_num": 1,
"item": "Armory"
},
{
"item_num": 2,
"item": "Prison"
},
{
"item_num": 3,
"item": "Throne room"
},
{
"item_num": 4,
"item": "Crypt"
},
{
"item_num": 5,
"item": "Treasury"
},
{
"item_num": 6,
"item": "Barracks"
},
{
"item_num": 7,
"item": "Monstrous lair"
},
{
"item_num": 8,
"item": "Storeroom"
},
{
"item_num": 9,
"item": "Charnel pit"
},
{
"item_num": 10,
"item": "Museum"
},
{
"item_num": 11,
"item": "Torture chamber"
},
{
"item_num": 12,
"item": "Bedchamber"
},
{
"item_num": 13,
"item": "Gallery"
},
{
"item_num": 14,
"item": "Dining hall"
},
{
"item_num": 15,
"item": "Library"
},
{
"item_num": 16,
"item": "Pantry"
},
{
"item_num": 17,
"item": "Laboratory"
},
{
"item_num": 18,
"item": "Cesspit"
},
{
"item_num": 19,
"item": "Bone yard"
},
{
"item_num": 20,
"item": "Scrying chamber"
}
]
}
],
"order": 6
},
{
"id": "dungeondiscoveries",
"title": "Dungeon Discoveries",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Add useful discoveries such as the following to your adventure, to create upward beats in the characters' story."
}
],
"order": 7
},
{
"id": "1d20discoveries",
"title": "1d20 Discoveries",
"content": [
{
"type": "table",
"order": 0,
"data": [
{
"item_num": 1,
"item": "Helpful NPC"
},
{
"item_num": 2,
"item": "Holy fountain"
},
{
"item_num": 3,
"item": "Inspiring statue"
},
{
"item_num": 4,
"item": "Revealing mosaic"
},
{
"item_num": 5,
"item": "Radiant shrine"
},
{
"item_num": 6,
"item": "Friendly spirit"
},
{