-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path5e_Monster_Builder.json
2697 lines (2697 loc) · 160 KB
/
5e_Monster_Builder.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": "3.0.0",
"sections": [
{
"id": "index",
"title": "The Lazy GM's 5e Monster Builder Resource Document",
"intro": "Scott Fitzgerald Gray, Teos Abadía, Michael E. Shea.\n\nUpdated 18 January 2024\n\nThis document includes tools and material for building, modifying, and running monsters for your 5th edition fantasy roleplaying games.\n\nThe material in this document is copyright 2023 Scott Fitzgerald Gray, Teos Abadía, and Michael E. Shea and is licensed under a [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/). You are free to use this content in any manner permitted by that license as long as you include the following attribution statement in your own work:",
"subsections": [
{
"id": "default",
"title": "",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "> This work includes material taken from the [Lazy GM's 5e Monster Builder Resource Document](https://slyflourish.com/lazy_5e_monster_building_resource_document.html) written by Teos Abadía of [Alphastream.org](https://alphastream.org), Scott Fitzgerald Gray of [Insaneangel.com](https://insaneangel.com), and Michael E. Shea of [SlyFlourish.com](https://slyflourish.com), available under a [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/).\n\nThis work includes material taken from the System Reference Document 5.1 (\"SRD 5.1\") by Wizards of the Coast LLC and available at <https://dnd.wizards.com/resources/systems-reference-document>. The SRD 5.1 is licensed under the Creative Commons Attribution 4.0 International License available at <https://creativecommons.org/licenses/by/4.0/legalcode>.\n\nThis document is a single self-contained HTML file. To save an offline local copy, \"save as\" either the page source or HTML in your browser. Use tools such as [Calibre](https://calibre-ebook.com) and [Pandoc](https://pandoc.org) to convert this document to markdown, PDF, ePub or another format of your choice. Use [Send to Kindle](https://www.amazon.com/sendtokindle) to send a version to your Kindle.\n\nYou can find several versions of this document including EPUB, Markdown, and JSON on [Crit.Tech's LGMRD Github Repo](https://github.com/crit-tech/LGMRD).\n\n### Table of Contents"
},
{
"type": "table",
"order": 1,
"data": [
{
"item": "Building a Quick Monster"
},
{
"item": "General-Use Combat Stat Blocks"
},
{
"item": "Lazy Tricks for Running Monsters"
},
{
"item": "Lightning Rods"
},
{
"item": "Monster Roles"
},
{
"item": "Bosses and Minions"
},
{
"item": "The Combat Encounter Checklist"
},
{
"item": "Monster Combinations for a Hard Challenge"
},
{
"item": "The Lazy Encounter Benchmark"
},
{
"item": "Monsters by Adventure Location"
},
{
"item": "Monsters and the Tiers of Play"
}
]
}
],
"order": 0
}
]
},
{
"id": "buildingaquickmonster",
"title": "Building a Quick Monster",
"intro": "Sometimes you need a monster right now but you don't have the right one handy. Maybe the creature you're imagining doesn't exist in any given book of published monsters, or you simply don't have the time to look it up. Maybe you're in the middle of your game and want some quick statistics for a creature you didn't think you'd need. For all these problems, this section offers solutions.\n\nThe core tool for building a quick monster for a 5e game is the Monster Statistics by Challenge Rating table, which offers you a set of statistics that can be used to build and run a quick monster of any challenge rating (CR). You then have two paths for customizing a monster built from these baseline statistics—with flavor and description during the game, or with a refinement of the creature's mechanics.\n\nIt's worth your time to review and understand how this table works before you start using it in your game. Read the column descriptions. Understand the relationship between a monster's challenge rating and equivalent character level. Once you've internalized how this table works, you can use it in seconds to build a monster and throw that foe into your game.",
"subsections": [
{
"id": "columndescriptions",
"title": "Column Descriptions",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "The table includes the following columns, which will become more familiar to you as you build your monsters.\n\n***Monster CR.*** The challenge ratings presented in the CR column are the baseline measure to determine the relative difficulty of a monster in combat. You'll almost always reference this column first when building a quick monster.\n\n***Equivalent Character Level.*** This column describes the roughly equivalent level of a single character facing a single monster of this challenge rating in a hard encounter. This gives you a quick way to determine how difficult this monster will be when facing characters of a particular level.\n\nAs you can see from the table, matching character level to challenge rating isn't a simple mathematical process. There are a number of character levels missing from the table where certain challenge ratings represent a large jump in how tough a monster is.\n\n***AC/DC.*** This column indicates the typical Armor Class of a monster of the indicated challenge rating. It also describes the typical Difficulty Class if this monster uses a DC for any of their attacks or other features.\n\n***Hit Points.*** This column offers the baseline hit points of a monster of a given challenge rating. Feel free to add or subtract hit points within the suggested range based on the monster's in-world features or physiology, or the pacing you want to maintain during a battle.\n\n***Proficient Ability Bonus.*** This column gives the expected bonus for abilities with which the monster is proficient, adding the monster's ability score modifier and proficiency bonus together. This number can be used as an attack bonus, or as a bonus for proficient saving throws and ability checks. (Ability-based modifiers without proficiency are fixed values between −2 and +4, based on the monster's story.)\n\n***Damage per Round.*** This column contains the total expected damage that a monster can deal in a round. Higher-CR monsters typically split this total damage among a number of attacks, instead of doing one big attack that either deals a tremendous amount of damage or misses completely. If a single effect targets two or more characters, such as a fiery breath weapon, the damage for that effect should be half the indicated number.\n\n***Number of Attacks.*** This column notes the number of attacks a monster of a particular challenge rating typically makes per round. The damage per round from the previous column is divided among these multiple attacks in the following column.\n\n***Damage per Attack.*** This column shows the baseline amount of damage a monster deals per attack when using the default number of attacks in the previous column. It includes both average damage and a dice equation.\n\n***Example Monsters.*** This column offers example monsters for each challenge rating. This can help you gauge where your monster fits among a sampling of existing 5e monsters."
}
],
"order": 0
},
{
"id": "buildingamonster",
"title": "Building a Monster",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "With the Monster Statistics by Challenge Rating table at hand, you can use the following quick steps to build a custom monster from scratch. The first four steps alone let you easily create a monster ready to run in your game. The optional steps that follow then let you fill out the monster's details and custom mechanics as desired.\n\n### Step 1: Determine Challenge Rating\n\nBegin by determining the challenge rating for your quick monster based on that creature's fiction in the world. When considering the challenge rating of a custom monster, you might compare them to existing creatures on the table. If the in-world power of your monster compares well to a skeleton, the monster might have a challenge rating of 1/4. If they're more like a fire giant, they might have a challenge rating of 9. Look at the list of example monsters and ask yourself which monster makes the best comparison to yours. Then assign your creature that monster's challenge rating.\n\n### Alternatively, What Challenge Rating Do You Need?\n\nYou might also want to choose a challenge rating based on the level of the characters, using the Equivalent Character Level column of the table. If you want an encounter with four monsters who are roughly equal in power to four characters, this column lets you figure out those monsters' statistics. It also helps you build NPCs—knights, mages, thieves, and so forth—intended to be a match for characters of a particular level.\n\n### Step 2: Write Down the Baseline Statistics\n\nOnce you've determined a challenge rating for your monster, write down their statistics. You might jot them on an index card, in a text editor on your computer, or wherever you keep notes for your adventures and campaigns. You might end up customizing those statistics, though, so be ready to change them.\n\n### Step 3: Determine Proficient Abilities\n\nNext, determine which abilities—Strength, Dexterity, Constitution, Intelligence, Wisdom, or Charisma—a monster is proficient in, using the Proficient Ability Bonus column on the table. This sets up the bonus a monster has when using any ability with which they're proficient, and is largely based on the monster's story. A big, beefy monster might be proficient in skills or saving throws involving Strength and Constitution. A mastermind monster might be proficient in Wisdom- and Intelligence-based skills and saving throws. A fast monster might be proficient in Dexterity (Acrobatics) checks and Dexterity saving throws, while an otherworldly monster might be proficient in Charisma-based skills and saves.\n\nThe bonus indicated in the table is what the monster uses to make saving throws and ability checks with those proficient abilities. Just remember that the number on the table already includes a monster's proficiency bonus, in addition to their ability score modifier.\n\n### Step 4: Determine Remaining Abilities\n\nNext, you can determine the modifier (either a penalty or a bonus) that a monster uses for their nonproficient abilities. This is for all the ability checks and saving throws a monster isn't great at, and can be determined by asking yourself how strong a monster feels in those abilities. The bonus can range anywhere from −2 to +4, and is independent of a monster's challenge rating. Even a high-challenge monster might have a lousy Dexterity saving throw. When in doubt, or to speed things up, use a modifier of +0 for these nonproficient abilities. You can always change this during the game if a higher or lower number makes sense.\n\nA creature's Dexterity modifier is also used to determine their initiative modifier. Or you can skip your improvised creature's initiative roll and use a static initiative of 12.\n\n### You're Ready to Go\n\nAt this point, you have enough information on hand to run your monster in a game, with little else needed. However, you can also continue with a few more quick steps to further customize your monster, making them more distinct."
}
],
"order": 1
},
{
"id": "monsterstatisticsbychallengerating",
"title": "Monster Statistics by Challenge Rating",
"content": [
{
"type": "table",
"order": 0,
"headers": {
"cr": "CR",
"eqv_char_lvl": "Eqv Char Lvl",
"acdc": "AC/DC",
"hp": "HP",
"prof_bonus": "Prof Bonus",
"damage_per_round": "Damage per Round",
"num_attacks": "# Attacks",
"damage": "Damage",
"example_monster": "Example Monster"
},
"data": [
{
"cr": "0",
"eqv_char_lvl": "< 1",
"acdc": "10",
"hp": "3 (2-4)",
"prof_bonus": "+2",
"damage_per_round": "2",
"num_attacks": "1",
"damage": "2 (1d4)",
"example_monster": "Commoner, rat, spider"
},
{
"cr": "1/8",
"eqv_char_lvl": "< 1",
"acdc": "11",
"hp": "9 (7-11)",
"prof_bonus": "+3",
"damage_per_round": "3",
"num_attacks": "1",
"damage": "4 (1d6 + 1)",
"example_monster": "Bandit, cultist, giant rat"
},
{
"cr": "1/4",
"eqv_char_lvl": "1",
"acdc": "11",
"hp": "13 (10-16)",
"prof_bonus": "+3",
"damage_per_round": "5",
"num_attacks": "1",
"damage": "5 (1d6 + 2)",
"example_monster": "Acolyte, skeleton, wolf"
},
{
"cr": "1/2",
"eqv_char_lvl": "2",
"acdc": "12",
"hp": "22 (17-28)",
"prof_bonus": "+4",
"damage_per_round": "8",
"num_attacks": "2",
"damage": "4 (1d4 + 2)",
"example_monster": "Black bear, scout, shadow"
},
{
"cr": "1",
"eqv_char_lvl": "3",
"acdc": "12",
"hp": "33 (25-41)",
"prof_bonus": "+5",
"damage_per_round": "12",
"num_attacks": "2",
"damage": "6 (1d8 + 2)",
"example_monster": "Dire wolf, specter, spy"
},
{
"cr": "2",
"eqv_char_lvl": "5",
"acdc": "13",
"hp": "45 (34-56)",
"prof_bonus": "+5",
"damage_per_round": "17",
"num_attacks": "2",
"damage": "9 (2d6 + 2)",
"example_monster": "Ghast, ogre, priest"
},
{
"cr": "3",
"eqv_char_lvl": "7",
"acdc": "13",
"hp": "65 (49-81)",
"prof_bonus": "+5",
"damage_per_round": "23",
"num_attacks": "2",
"damage": "12 (2d8 + 3)",
"example_monster": "Knight, mummy, werewolf"
},
{
"cr": "4",
"eqv_char_lvl": "9",
"acdc": "14",
"hp": "84 (64-106)",
"prof_bonus": "+6",
"damage_per_round": "28",
"num_attacks": "2",
"damage": "14 (3d8 + 1)",
"example_monster": "Ettin, ghost"
},
{
"cr": "5",
"eqv_char_lvl": "10",
"acdc": "15",
"hp": "95 (71-119)",
"prof_bonus": "+7",
"damage_per_round": "35",
"num_attacks": "3",
"damage": "12 (3d6 + 2)",
"example_monster": "Elemental, gladiator, vampire spawn"
},
{
"cr": "6",
"eqv_char_lvl": "11",
"acdc": "15",
"hp": "112 (84-140)",
"prof_bonus": "+7",
"damage_per_round": "41",
"num_attacks": "3",
"damage": "14 (3d6 + 4)",
"example_monster": "Mage, medusa, wyvern"
},
{
"cr": "7",
"eqv_char_lvl": "12",
"acdc": "15",
"hp": "130 (98-162)",
"prof_bonus": "+7",
"damage_per_round": "47",
"num_attacks": "3",
"damage": "16 (3d8 + 3)",
"example_monster": "Stone giant, young black dragon"
},
{
"cr": "8",
"eqv_char_lvl": "13",
"acdc": "15",
"hp": "136 (102-170)",
"prof_bonus": "+7",
"damage_per_round": "53",
"num_attacks": "3",
"damage": "18 (3d10 + 2)",
"example_monster": "Assassin, frost giant"
},
{
"cr": "9",
"eqv_char_lvl": "15",
"acdc": "16",
"hp": "145 (109-181)",
"prof_bonus": "+8",
"damage_per_round": "59",
"num_attacks": "3",
"damage": "19 (3d10 + 3)",
"example_monster": "Bone devil, fire giant, young blue dragon"
},
{
"cr": "10",
"eqv_char_lvl": "16",
"acdc": "17",
"hp": "155 (116-194)",
"prof_bonus": "+9",
"damage_per_round": "65",
"num_attacks": "4",
"damage": "16 (3d8 + 3)",
"example_monster": "Stone golem, young red dragon"
},
{
"cr": "11",
"eqv_char_lvl": "17",
"acdc": "17",
"hp": "165 (124-206)",
"prof_bonus": "+9",
"damage_per_round": "71",
"num_attacks": "4",
"damage": "18 (3d10 + 2)",
"example_monster": "Djinni, efreeti, horned devil"
},
{
"cr": "12",
"eqv_char_lvl": "18",
"acdc": "17",
"hp": "175 (131-219)",
"prof_bonus": "+9",
"damage_per_round": "77",
"num_attacks": "4",
"damage": "19 (3d10 + 3)",
"example_monster": "Archmage, erinyes"
},
{
"cr": "13",
"eqv_char_lvl": "19",
"acdc": "18",
"hp": "184 (138-230)",
"prof_bonus": "+10",
"damage_per_round": "83",
"num_attacks": "4",
"damage": "21 (4d8 + 3)",
"example_monster": "Adult white dragon, storm giant, vampire"
},
{
"cr": "14",
"eqv_char_lvl": "20",
"acdc": "19",
"hp": "196 (147-245)",
"prof_bonus": "+11",
"damage_per_round": "89",
"num_attacks": "4",
"damage": "22 (4d10)",
"example_monster": "Adult black dragon, ice devil"
},
{
"cr": "15",
"eqv_char_lvl": "> 20",
"acdc": "19",
"hp": "210 (158-263)",
"prof_bonus": "+11",
"damage_per_round": "95",
"num_attacks": "5",
"damage": "19 (3d10 + 3)",
"example_monster": "Adult green dragon, mummy lord, purple worm"
},
{
"cr": "16",
"eqv_char_lvl": "> 20",
"acdc": "19",
"hp": "229 (172-286)",
"prof_bonus": "+11",
"damage_per_round": "101",
"num_attacks": "5",
"damage": "21 (4d8 + 3)",
"example_monster": "Adult blue dragon, iron golem, marilith"
},
{
"cr": "17",
"eqv_char_lvl": "> 20",
"acdc": "20",
"hp": "246 (185-308)",
"prof_bonus": "+12",
"damage_per_round": "107",
"num_attacks": "5",
"damage": "22 (3d12 + 3)",
"example_monster": "Adult red dragon"
},
{
"cr": "18",
"eqv_char_lvl": "> 20",
"acdc": "21",
"hp": "266 (200-333)",
"prof_bonus": "+13",
"damage_per_round": "113",
"num_attacks": "5",
"damage": "23 (4d10 + 1)",
"example_monster": "Demilich"
},
{
"cr": "19",
"eqv_char_lvl": "> 20",
"acdc": "21",
"hp": "285 (214-356)",
"prof_bonus": "+13",
"damage_per_round": "119",
"num_attacks": "5",
"damage": "24 (4d10 + 2)",
"example_monster": "Balor"
},
{
"cr": "20",
"eqv_char_lvl": "> 20",
"acdc": "21",
"hp": "300 (225-375)",
"prof_bonus": "+13",
"damage_per_round": "132",
"num_attacks": "5",
"damage": "26 (4d12)",
"example_monster": "Ancient white dragon, pit fiend"
},
{
"cr": "21",
"eqv_char_lvl": "> 20",
"acdc": "22",
"hp": "325 (244-406)",
"prof_bonus": "+14",
"damage_per_round": "150",
"num_attacks": "5",
"damage": "30 (4d12 + 4)",
"example_monster": "Ancient black dragon, lich, solar"
},
{
"cr": "22",
"eqv_char_lvl": "> 20",
"acdc": "23",
"hp": "350 (263-438)",
"prof_bonus": "+15",
"damage_per_round": "168",
"num_attacks": "5",
"damage": "34 (4d12 + 8)",
"example_monster": "Ancient green dragon"
},
{
"cr": "23",
"eqv_char_lvl": "> 20",
"acdc": "23",
"hp": "375 (281-469)",
"prof_bonus": "+15",
"damage_per_round": "186",
"num_attacks": "5",
"damage": "37 (6d10 + 4)",
"example_monster": "Ancient blue dragon, kraken"
},
{
"cr": "24",
"eqv_char_lvl": "> 20",
"acdc": "23",
"hp": "400 (300-500)",
"prof_bonus": "+15",
"damage_per_round": "204",
"num_attacks": "5",
"damage": "41 (6d10 + 8)",
"example_monster": "Ancient red dragon"
},
{
"cr": "25",
"eqv_char_lvl": "> 20",
"acdc": "24",
"hp": "430 (323-538)",
"prof_bonus": "+16",
"damage_per_round": "222",
"num_attacks": "5",
"damage": "44 (6d10 + 11)",
"example_monster": ""
},
{
"cr": "26",
"eqv_char_lvl": "> 20",
"acdc": "25",
"hp": "460 (345-575)",
"prof_bonus": "+17",
"damage_per_round": "240",
"num_attacks": "5",
"damage": "48 (6d10 + 15)",
"example_monster": ""
},
{
"cr": "27",
"eqv_char_lvl": "> 20",
"acdc": "25",
"hp": "490 (368-613)",
"prof_bonus": "+17",
"damage_per_round": "258",
"num_attacks": "5",
"damage": "52 (6d10 + 19)",
"example_monster": ""
},
{
"cr": "28",
"eqv_char_lvl": "> 20",
"acdc": "25",
"hp": "540 (405-675)",
"prof_bonus": "+17",
"damage_per_round": "276",
"num_attacks": "5",
"damage": "55 (6d10 + 22)",
"example_monster": ""
},
{
"cr": "29",
"eqv_char_lvl": "> 20",
"acdc": "26",
"hp": "600 (450-750)",
"prof_bonus": "+18",
"damage_per_round": "294",
"num_attacks": "5",
"damage": "59 (6d10 + 26)",
"example_monster": ""
},
{
"cr": "30",
"eqv_char_lvl": "> 20",
"acdc": "27",
"hp": "666 (500-833)",
"prof_bonus": "+19",
"damage_per_round": "312",
"num_attacks": "5",
"damage": "62 (6d10 + 29)",
"example_monster": "Tarrasque"
}
]
},
{
"type": "paragraph",
"order": 0,
"markdown": "### Optional Step: Consider Armor Class\n\nThough the Monster Statistics by Challenge Rating table offers a value for Armor Class that increases with challenge rating, you can modify a monster's Armor Class further based on their story. A big beefy titan set up as a CR 16 monster might still be easy to hit—maybe with an Armor Class of 14.\n\nIt's easiest to think of Armor Class on a scale of 10 to 20, with 10 being the equivalent of an unarmored opponent with no Dexterity bonus, and 20 being an opponent wearing plate armor with a shield. (Armor Class can go above 20 or below 10, though.)\n\nKeep in mind that missing an opponent isn't much fun for a player. Lower-AC opponents, even those with more hit points, are often more fun to fight than high-AC opponents with fewer hit points.\n\n### Optional Step: Customize Attacks\n\nThe table includes a recommended number of attacks for a monster, an attack bonus, and the amount of damage those attacks should deal. If desired, tailor this damage to fit the monster's story. Choose a creature's damage type, such as fire for a flaming Greatsword attack, or necrotic for a Death Blast attack. You can also mix up multiple damage types, so that a CR 10 hell knight might have a Longsword attack dealing both slashing and fire damage.\n\nConsider the ranged attacks a monster might have as well. You can use the same attack bonus, number of attacks, and damage. Or you could give a creature weaker ranged attacks (attacking once instead of twice, for example). Depending on the creature's story, the flavor of those attacks might be physical (hurling javelins or rocks) or arcane (firing energy blasts).\n\nTo further customize a monster, you can divide up their total damage per round into a different number of attacks than indicated on the table, if that makes sense for the monster's story. (As noted above, for attacks that target two or more opponents, use half the indicated damage.)\n\n### Optional Step: Further Modify Statistics\n\nDepending on the story of your monster, you can make general adjustments to their baseline statistics however you see fit. For example, you might lower a monster's hit points and increase the damage they deal to create a dangerous foe who drops out of the fight quickly. However, always consider whether such changes make a combat encounter more fun to play. It might make sense to create a monster with high hit points and a higher Armor Class who deals less damage, thinking that those two things balance out. But fighting such a monster can easily become a slog. Likewise, a monster with significantly fewer hit points that deals high damage might end up being inadvertently deadly if too many characters roll low on attacks, or could feel pointless if the monster is killed too quickly.\n\n### Optional Step: Add Monster Types and Features\n\nTo further flesh out your monster, add monster types and features found for monsters similar to the one you're building such as extra weapon damage types, breath weapons, auras, damage shields, and other traits and features that better define your monster in the story and situation."
}
],
"order": 2
},
{
"id": "usingthetablewithpublishedmonsters",
"title": "Using the Table with Published Monsters",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "While the Monster Statistics by Challenge Rating table is intended to let you build monsters from scratch, it can easily be used as a reference to better understand how a published monster might act in combat. If a published CR 4 monster has 30 hit points but deals 35 damage per round, you can see from the table that their hit points are low but their damage is high compared to the creature's baseline challenge rating. Such a monster hits hard for their challenge rating, but when they're hit in turn, they go down fast."
}
],
"order": 3
}
]
},
{
"id": "generalusestatblocks",
"title": "General-Use Combat Stat Blocks",
"intro": "This section contains several general-use stat blocks specifically built for reskinning into whatever monsters you need for your combat encounters.\n\nEach stat block uses d8 Hit Dice, but can be used for creatures in a range of sizes. Each focuses on a primary ability score, but you can shift abilities as needed to better fit the story of the creature the stat block represents. Swap Strength and Intelligence to run a spellcaster instead of a melee combatant, or switch Dexterity and Strength to turn a shifty rogue into a powerful fighter.\n\nA stat block's attack lets you choose the most appropriate type of damage for a creature, and you can easily increase an attack's reach or range. Ranges for attacks are given as a single number indicating maximum range, but you can modify that range or replace it with the normal and long range of a specific weapon as you wish.\n\nThe spread of challenge ratings of these stat blocks provides options for weak, moderate, and strong foes at any character level. Each stat block description includes comparisons between the stat block and characters of different levels, providing guidelines for when a stat block can serve as a boss, an elite foe (suitable for two characters against one creature), or a one-on-one combatant, or in larger groups of two to four monsters per character. All these setups are geared toward a hard encounter, but one that the characters should definitely be able to win.",
"subsections": [
{
"id": "minion",
"title": "Minion (CR 1/8)",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "The low-CR minions represented by this stat block might include ravenous rats, weak skeletons, shifty bandits, or low-ranking cultists. A minion can serve as a one-on-one combatant against 1st-level characters, or can be deployed in large groups at 4th level or above. This stat block focuses on Dexterity as its primary ability.\n\n**MINION**\n\nSmall or Medium Creature\n\n**Armor Class** 11\n\n**Hit Points** 9 (2d8)\n\n**Speed** 30 ft.\n\n**Senses** passive Perception 11\n\n**Challenge** 1/8 (25 XP) **Proficiency Bonus** +2\n\n**ACTIONS**\n\n***Attack.*** *Melee or Ranged Weapon Attack:* +3 to hit, reach 5 ft. or range 60 ft., one target. *Hit:* 4 (1d6 + 1) damage."
},
{
"type": "table",
"order": 1,
"headers": {
"str": "STR",
"dex": "DEX",
"con": "CON",
"int": "INT",
"wis": "WIS",
"cha": "CHA"
},
"data": [
{
"str": "10 (+0)",
"dex": "12 (+1)",
"con": "10 (+0)",
"int": "10 (+0)",
"wis": "12 (+1)",
"cha": "10 (+0)"
}
]
}
],
"order": 0
},
{
"id": "soldier",
"title": "Soldier (CR 1/2)",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Representing seasoned guards, trained soldiers, powerful bandits, murderous humanoids, or armed undead, the soldier stat block works well as a boss at 1st level, an elite foe for two 2nd-level characters, or one-on-one combatants at 4th level, or in large groups at 6th level and above. Strength is this stat block's primary ability.\n\n**SOLDIER**\n\nMedium Creature\n\n**Armor Class** 12 (leather armor or natural armor)\n\n**Hit Points** 22 (4d8 + 4)\n\n**Speed** 30 ft.\n\n**Senses** passive Perception 10\n\n**Challenge** 1/2 (100 XP) **Proficiency Bonus** +2\n\n**ACTIONS**\n\n***Attack.*** *Melee or Ranged Weapon Attack:* +4 to hit, reach 5 ft. or range 60 ft., one target. *Hit:* 8 (1d12 + 2) damage."
},
{
"type": "table",
"order": 1,
"headers": {
"str": "STR",
"dex": "DEX",
"con": "CON",
"int": "INT",
"wis": "WIS",
"cha": "CHA"
},
"data": [
{
"str": "14 (+2)",
"dex": "12 (+1)",
"con": "12 (+1)",
"int": "10 (+0)",
"wis": "10 (+0)",
"cha": "10 (+0)"
}
]
}
],
"order": 1
},
{
"id": "brute",
"title": "Brute (CR 2)",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Heavy-hitting veterans, capable bodyguards, low-ranking demons or devils, dangerous monsters in the wild, and powerful humanoids can all be represented by this stat block. A brute can serve as a boss against 2nd-level characters, an elite foe against two 4th-level characters, or a one-on-one opponent at 5th level, or in large groups at 10th level. This stat block relies on Strength.\n\n**BRUTE**\n\nMedium or Large Creature\n\n**Armor Class** 13 (studded leather or natural armor)\n\n**Hit Points** 45 (7d8 + 14)\n\n**Speed** 30 ft.\n\n**Saving Throws** Con +4\n\n**Skills** Athletics +5\n\n**Senses** passive Perception 10\n\n**Challenge** 2 (450 XP) **Proficiency Bonus** +2\n\n**ACTIONS**\n\n***Multiattack.*** The brute makes two attacks.\n\n***Attack.*** *Melee or Ranged Weapon Attack:* +5 to hit, reach 5 ft. or range 60 ft., one target. *Hit:* 9 (1d12 + 3) damage."
},
{
"type": "table",
"order": 1,
"headers": {
"str": "STR",
"dex": "DEX",
"con": "CON",
"int": "INT",
"wis": "WIS",
"cha": "CHA"
},
"data": [
{
"str": "16 (+3)",
"dex": "12 (+1)",
"con": "14 (+2)",
"int": "10 (+0)",
"wis": "10 (+0)",
"cha": "8 (−1)"
}
]
}
],
"order": 2
},
{
"id": "specialist",
"title": "Specialist (CR 4)",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "This stat block can represent spies, assassins, hunters, and trained elite forces. The specialist serves as a boss for 4th-level characters, an elite opponent versus two 5th-level characters, or a one-on-one combatant for 10th-level characters, or in large groups against 16th-level characters. Dexterity is this stat block's primary ability.\n\n**SPECIALIST**\n\nMedium Creature\n\n**Armor Class** 14\n\n**Hit Points** 84 (13d8 + 26)\n\n**Speed** 30 ft.\n\n**Saving Throws** Dex +6, Wis +4\n\n**Skills** Acrobatics +6, Perception +4, Stealth +6\n\n**Senses** passive Perception 14\n\n**Challenge** 4 (1,100 XP) **Proficiency Bonus** +2\n\n**ACTIONS**\n\n***Multiattack.*** The specialist makes two attacks.\n\n***Attack.*** *Melee or Ranged Weapon Attack:* +6 to hit, reach 5 ft. or range 60 ft., one target. *Hit:* 14 (3d6 + 4) damage."
},
{
"type": "table",
"order": 1,
"headers": {
"str": "STR",
"dex": "DEX",
"con": "CON",
"int": "INT",
"wis": "WIS",
"cha": "CHA"
},
"data": [
{
"str": "12 (+1)",
"dex": "18 (+4)",
"con": "14 (+2)",
"int": "10 (+0)",
"wis": "14 (+2)",
"cha": "12 (+1)"
}
]
}
],
"order": 3
},
{
"id": "myrmidon",
"title": "Myrmidon (CR 7)",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Powerful elite bodyguards, high priests, wizards, warlocks, sorcerers, demons, and devils can all be represented by this stat block. A myrmidon can serve as a boss monster for 5th-level characters, an elite combatant against two characters of 7th level, or a one-on-one combatant against 14th-level characters, or in large groups against 20th-level characters. This stat block focuses on Intelligence.\n\n**MYRMIDON**\n\nMedium or Large creature\n\n**Armor Class** 15 (chain shirt or natural armor)\n\n**Hit Points** 130 (20d8 + 40)\n\n**Speed** 30 ft.\n\n**Saving Throws** Dex +5, Wis +5\n\n**Skills** Perception +5\n\n**Senses** passive Perception 15\n\n**Challenge** 7 (2,900 XP) **Proficiency Bonus** +3\n\n**ACTIONS**\n\n***Multiattack.*** The myrmidon makes three attacks.\n\n***Attack.*** *Melee or Ranged Weapon Attack:* +7 to hit, reach 5 ft. or range 60 ft., one target. *Hit:* 17 (3d8 + 4) damage."
},
{
"type": "table",
"order": 1,
"headers": {
"str": "STR",
"dex": "DEX",
"con": "CON",
"int": "INT",
"wis": "WIS",
"cha": "CHA"
},
"data": [
{
"str": "10 (+0)",
"dex": "14 (+2)",
"con": "14 (+2)",
"int": "18 (+4)",
"wis": "14 (+2)",
"cha": "10 (+0)"
}
]
}
],
"order": 4
},
{
"id": "sentinel",
"title": "Sentinel (CR 11)",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "This stat block is a good fit for strong, often-otherworldly creatures such as demons, devils, impressive beings of the Outer Planes, guardian constructs, or powerful undead. The sentinel can serve as a boss for 7th-level characters, an elite foe against two 12th-level characters, or can stand one-on-one against 16th-level characters. This stat block focuses on Strength.\n\n**SENTINEL**\n\nMedium, Large, or Huge Creature\n\n**Armor Class** 17 (natural armor or magical protection)\n\n**Hit Points** 165 (22d8 + 66)\n\n**Speed** 30 ft.\n\n**Saving Throws** Str +9, Dex +7\n\n**Skills** Perception +6\n\n**Senses** passive Perception 16\n\n**Challenge** 11 (7,200 XP) **Proficiency Bonus** +4\n\n**ACTIONS**\n\n***Multiattack.*** The sentinel makes four attacks.\n\n***Attack.*** *Melee or Ranged Weapon Attack:* +9 to hit, reach 5 ft. or range 60 ft., one target. *Hit:* 18 (3d8 + 5) damage."
},
{
"type": "table",
"order": 1,
"headers": {
"str": "STR",
"dex": "DEX",
"con": "CON",
"int": "INT",
"wis": "WIS",
"cha": "CHA"
},
"data": [
{
"str": "20 (+5)",
"dex": "16 (+3)",
"con": "16 (+3)",
"int": "10 (+0)",
"wis": "14 (+2)",
"cha": "10 (+0)"
}
]
}
],
"order": 5
},
{
"id": "champion",
"title": "Champion (CR 15)",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Representing greater demons, devils, vampires, liches, or powerful spellcasters, the champion serves as a boss for 11th-level characters, an elite foe for two 15th-level characters, or a one-on-one challenge against 17th-level characters. This stat block focuses on Charisma.\n\n**CHAMPION**\n\nMedium, Large, or Huge Creature\n\n**Armor Class** 19 (natural armor or magical protection)\n\n**Hit Points** 212 (25d8 + 100)\n\n**Speed** 30 ft.\n\n**Saving Throws** Wis +8, Cha +11\n\n**Skills** Perception +8\n\n**Senses** passive Perception 18\n\n**Challenge** 15 (13,000 XP) **Proficiency Bonus** +5\n\n**ACTIONS**\n\n***Multiattack.*** The champion makes four attacks.\n\n***Attack.*** *Melee or Ranged Weapon Attack:* +11 to hit, reach 5 ft. or range 60 ft., one target. *Hit:* 24 (4d8 + 6) damage."
},
{
"type": "table",
"order": 1,
"headers": {
"str": "STR",
"dex": "DEX",
"con": "CON",
"int": "INT",
"wis": "WIS",
"cha": "CHA"
},
"data": [
{
"str": "10 (+0)",
"dex": "12 (+1)",
"con": "18 (+4)",
"int": "12 (+1)",
"wis": "16 (+3)",
"cha": "22 (+6)"
}
]
}
],
"order": 6
}
]
},
{
"id": "lightingrods",
"title": "Lightning Rods",
"intro": "When characters rise above 4th level, their ability to deal with powerful foes makes a huge jump. But challenging characters of 5th level and higher isn't just about making things hard. It's easy for GMs to fall into the trap of thwarting the coolest things the heroes can do, by giving monsters immunities to certain conditions, increasing their hit points to offset the high damage a character can deal, or running monsters with tactics clearly built to bypass the characters' best attacks. But thwarting the characters' best features can be frustrating to the players, for obvious reasons.\n\nSo instead of shutting down the characters, build your encounters around monsters specifically designed to show off—by eating up—the characters' cool new capabilities as they rise in level. You can think of these monsters as \"lightning rods\"—intended victims ready to take the full effect of a character's most powerful attacks and features.",
"subsections": [
{
"id": "watchwhatthecharactersbring",
"title": "Watch What the Characters Bring",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "When running encounters challenging enough for the characters to use their top-tier features and attacks, pay attention to what they do. Does the wizard blast enemies with high-damage spells like *fireball*? Does the cleric make liberal use of Turn Undead when faced with those monsters? Do spells like *polymorph* or *banishment* come into play to get rid of bosses and elite threats?\n\nNote which features the players enjoy having their characters use, and think about how to build for those features in your next big battle. If you aren't sure what features the characters have, ask the players. Each time the characters level, start the session by having the players talk about what new attacks, spells, and special abilities they've picked up. Then build encounters to show off those features, not avoid them.\n\nFor example, at higher levels, a monk gains the ability to stun creatures with a single strike, effectively taking a monster out of the fight for a round or more. So when you know a player's monk has this feature, add monsters into big battles that you specifically want the monk to stun. A smack-talking spellcaster with a low Constitution saving throw, and who only a monk can reach with their enhanced movement, is just begging to have a hero leap up and punch them in the face.\n\n### Run Hordes for Area Effects\n\nAt 5th level and above, characters get access to spells and class features with large areas of effect, including *hypnotic pattern*, *fireball*, and Destroy Undead. When you know the characters have such features at their disposal, add hordes of low-CR creatures who can charge at them, all grouped up and ready to be blasted away.\n\nIgnore the fact that it might be more tactically appropriate for such creatures to spread out, instead thinking of yourself as the director of an action movie. What's the coolest outcome for the scene—a group of careful zombies staying 20 feet away from one another, or a huge mob of undead in perfect position to be turned to ash or blown to pieces with a well-placed *fireball*?\n\n### Expendable Lieutenants\n\nMany legendary monsters can use Legendary Resistance to avoid being taken out with a single casting of *banishment* or *polymorph*, but their lieutenants have no such advantage. When the characters have access to such spells, add powerful monsters into your encounters specifically designed to be banished, polymorphed, or otherwise controlled or incapacitated. Monsters with the bruiser or defender role are often perfect targets for such spells (see \"Monster Roles\"), especially those with terrible Wisdom and Charisma saving throws.\n\nKeep in mind, though, that if you add one or two hard-hitting foes to an encounter who don't get controlled, things can go south for the characters quickly.\n\n### Fragile Damage-Dealers\n\nFor stunning-strike monks, hard-hitting paladins, sharpshooter rangers, or great-weapon fighters, fragile foes who deal a ton of damage make fantastic targets. These are creatures with a low Armor Class, low hit points, and a low Constitution save, but who are deadly until taken out. (Creatures with the artillery or skirmisher role are great choices; see \"Monster Roles.\") It's always rewarding for a character to reach such a foe and cut them down with a single powerful attack.\n\n### Play to the Characters' Strengths\n\nPlayers and their characters love to outsmart their foes. You can help with this by placing artillery in locations that the foes assume will be hard to reach, but which you know present just a minor challenge to characters who can climb, fly, or short-range teleport. Likewise, add hidden ambushers when you know that some of the characters will be able to easily perceive them. These sorts of setups let the characters show off, and reward the players for choosing those specific tactical capabilities."
}
],
"order": 0
},
{
"id": "telegraphinglightningrods",
"title": "Telegraphing Lightning Rods",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Less tactically minded players might need help, or even direct advice, to recognize the danger of not dealing with lightning rods. If you intend for a fire giant bodyguard of the hobgoblin king to be banished and the characters don't pick up on that, they might be in trouble when the giant starts pounding them into the ground like tent pegs. If the characters are focused on the boss while getting pelted by the fiery rays of flameskulls just begging to be stunned, blasted, or turned, be prepared to project or reveal outright to the players the dangers their characters face, and how they might deal with them."
}
],
"order": 1
}
]
},
{
"id": "lazytricksforrunningmonsters",
"title": "Lazy Tricks for Running Monsters",
"intro": "This section presents a number of tricks and tips that can help you more easily prepare and run monsters during your games. We call them \"lazy tricks\" not because they're about cheating or doing less work overall, but because they're meant to let you quickly accomplish things when your game is in progress and you don't have a lot of extra time.",
"subsections": [
{
"id": "quickmonsterstatistics",
"title": "Quick Monster Statistics",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "\"Building a Quick Monster\" provides great guidelines for creating a foe for your game in just a few minutes. But you can come up with an even quicker set of monster statistics using the following steps.\n\nFirst, choose a challenge rating for your monster, based on their perceived power in the encounter. When needed, compare your monster to existing monsters to find a suitable challenge rating. Then use the following guidelines to craft their baseline statistics:\n\nStart your monster out with one attack, then add one additional attack at CR 2, CR 7, CR 11, and CR 15. Split the total damage noted above across all attacks.\n\nWith a solid set of combat statistics at hand, you can then use narrative descriptions to make your monster unique, interesting, and evocative."
},
{
"type": "table",
"order": 1,
"data": [
{
"item": "Armor Class = 12 + 1/2 CR"
},
{
"item": "Hit points = (15 × CR) + 15"
},
{
"item": "Proficient saving throws and skills = 4 + 1/2 CR"
},
{
"item": "Nonproficient saving throws and abilities = −2 to +2, based on the monster's story"
},
{
"item": "Attack bonus = 4 + 1/2 CR"
},
{
"item": "DC for saving throws = 12 + 1/2 CR"
},
{
"item": "Total damage per round = (7 × CR) + 5"
}
]
}
],
"order": 0
},
{
"id": "tenusefulmonsterfeatures",
"title": "Ten Useful Monster Features",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Give any custom monster impactful features and attacks that make sense for their place in the game. When a monster feature deals damage, choose a damage type appropriate to the creature's physiology, theme, or story. A creature channeling magical power might deal acid, cold, fire, lightning, force, poison, psychic, necrotic, radiant, or thunder damage. A creature making use of spines, spikes, or projectiles might deal bludgeoning, piercing, or slashing damage.\n\n***Damaging Blast.*** This creature has one or more single-target ranged attacks using the attack bonus and damage calculated above, and which deal damage of an appropriate type.\n\n***Damage Reflection.*** Whenever a creature within 5 feet of this creature hits them with a melee attack, the attacker takes damage in return of a type appropriate to the creature. The damage dealt is equal to half the damage of one of this creature's attacks. If you give a creature this feature, give them one less attack than normal.\n\n***Misty Step.*** As a bonus action, this creature can teleport up to 30 feet to an unoccupied space they can see.\n\n***Knockdown.*** When this creature hits a target with a melee attack, the target must succeed on a Strength saving throw or be knocked prone.\n\n***Restraining Grab.*** When this creature hits a target with a melee attack, the target is grappled (escape DC based on this creature's Strength or Dexterity modifier). While grappled, the target is restrained.\n\n***Damaging Burst.*** As an action, this creature can create a burst of energy, magic, spines, or some other effect in a 10-foot-radius sphere, either around themself or at a point within 120 feet. Each creature in that area must make a Dexterity, Constitution, or Wisdom saving throw (your choice, based on the type of burst). On a failure, a target takes damage of an appropriate type equal to half this creature's total damage per round. On a success, a target takes half as much damage.\n\n***Cunning Action***. On each of their turns, this creature can use a bonus action to take the Dash, Disengage, or Hide action.\n\n***Damaging Aura.*** Each creature who starts their turn within 10 feet of this creature takes damage of a type appropriate to the creature. The damage dealt is equal to half the damage of one of this creature's attacks. If you give a creature this feature, give them one less attack than normal.\n\n***Energy Weapons.*** The creature's weapon attacks deal extra damage of an appropriate type. You can add this damage on top of the creature's regular damage output to give them a combat boost, or you can replace some of the creature's normal weapon damage with this energy damage.\n\n***Damage Transference.*** When this creature takes damage, they can transfer half or all of that damage (your choice) to a willing creature within 30 or 60 feet of them. This feature is particularly good for boss monsters."
}
],
"order": 1
},
{
"id": "usingaverages",
"title": "Using Averages",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "By default, 5e monster stat blocks calculate the average damage for any attack's dice expression, as with \"13 (2d8 + 4) bludgeoning damage\" for an ogre's Greatclub attack. Using average damage for a monster's attacks is one of the best ways to speed up combat.\n\nSometimes, though, you need to roll damage for effects that aren't in a stat block. When you do, you can use the following table to quickly look up the average value of various dice equations. Simply find the number of dice in the leftmost column, then go across to the appropriate die type. As can be seen in the table, you can add up averages to get an average value for higher numbers of dice—for example, adding the average of 2d10 and 6d10 to get the average of 8d10. You can use this approach to find the average for rolling more than twelve dice, so that if you need an average for 24d10, you can simply look at the 12d10 average and double it.\n\nYou can also compute averages for dice expressions with simple equations you can keep in your head. The average of two dice is the maximum value of one of those dice + 1, so that the average of 2d12 is 13. Then double that number for multiples of two, so that the average of 2d8 is 9, the average of 4d8 is 18, and so forth. Likewise, the average of a single die is half the size of the die, so add that number to a two-dice average to get odd numbers. For example, the average of 4d6 is 14, so the average of 5d6 is 17. (The average of one die is actually half the size of the die plus 0.5, which is why the average of two dice is the maximum value of the die +1.)"
},
{
"type": "table",
"order": 1,
"headers": {
"num_of_dice": "# of dice",
"d4": "d4",
"d6": "d6",
"d8": "d8",
"d10": "d10",
"d12": "d12"
},
"data": [
{
"num_of_dice": "1",
"d4": "2",
"d6": "3",
"d8": "4",
"d10": "5",
"d12": "6"
},
{
"num_of_dice": "2",
"d4": "5",
"d6": "7",
"d8": "9",
"d10": "11",
"d12": "13"
},
{
"num_of_dice": "3",
"d4": "7",
"d6": "10",
"d8": "13",
"d10": "16",
"d12": "19"
},
{
"num_of_dice": "4",
"d4": "10",
"d6": "14",
"d8": "18",
"d10": "22",
"d12": "26"
},
{
"num_of_dice": "5",
"d4": "12",
"d6": "17",
"d8": "22",
"d10": "27",
"d12": "32"
},
{
"num_of_dice": "6",
"d4": "15",
"d6": "21",
"d8": "27",
"d10": "33",
"d12": "39"
},
{
"num_of_dice": "7",
"d4": "17",
"d6": "24",
"d8": "31",
"d10": "38",
"d12": "45"
},
{
"num_of_dice": "8",
"d4": "20",
"d6": "28",
"d8": "36",
"d10": "44",
"d12": "52"
},
{
"num_of_dice": "9",
"d4": "22",
"d6": "31",
"d8": "40",
"d10": "49",
"d12": "58"
},
{
"num_of_dice": "10",
"d4": "25",
"d6": "35",
"d8": "45",
"d10": "55",
"d12": "65"
},
{
"num_of_dice": "11",
"d4": "27",
"d6": "38",
"d8": "49",
"d10": "60",
"d12": "71"
},
{
"num_of_dice": "12",
"d4": "30",
"d6": "42",
"d8": "54",
"d10": "66",
"d12": "78"
}
]
}
],
"order": 2
},
{
"id": "otherlazymonstertricks",
"title": "Other Lazy Monster Tricks",
"content": [
{
"type": "paragraph",
"order": 0,
"markdown": "Once you're in the middle of an encounter, you can make use of a number of other quick tricks to make running monsters easier, with more flexibility and greater speed. Try any of the following options at your table, and make use of any trick that helps your game:\n\nInclude creatures designed to eat \"save or suck\" attacks such as *banishment* or *polymorph*."
},
{
"type": "table",
"order": 1,
"data": [
{
"item": "Use fixed initiative for monsters equal to 10 + each monster's Dexterity bonus. Even faster? Just have all monsters act on initiative count 12."
},
{
"item": "Reduce hit points on the fly to allow monsters to drop or surrender more quickly, or increase a monster's number of attacks or damage if the characters are having too easy a time."
},
{
"item": "Have foes flee or surrender when it makes sense to move the game forward."
},
{
"item": "Have constructs and undead be destroyed when the creature controlling them dies."
},
{
"item": "Run multiple waves of monsters for big battles."
}
]
}
],
"order": 3
}
]
},
{
"id": "monsterroles",
"title": "Monster Roles",
"intro": "Thinking about the roles that creatures play in combat helps to create better encounters. A monster who has tons of hit points can stand up front, soaking up damage while the more vulnerable evil wizard launches devastating spells from behind cover. Skirmisher monsters can dart in from the sides and back away, forcing the characters to spread out and leaving them open to an ambusher. Foes of different roles complement each other, creating an effective team.\n\nMonsters in 5e don't have defined roles with connections to specific mechanics and tactics, as the creatures in some fantasy RPGs do. However, many 5e foes either already fit a specific role or are flexible enough to allow us to assign roles to them. For example, a harpy is a highly effective controller, and a spy is an excellent skirmisher or ambusher. We can also modify monsters to enable them to play a role. By assigning a role to a foe, you enable a specific set of tactics that allow you to challenge the characters more effectively.",