-
Notifications
You must be signed in to change notification settings - Fork 0
/
bayt-al-azif.html
1530 lines (1485 loc) · 36.5 KB
/
bayt-al-azif.html
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
<html>
<head>
<meta name="description" content="Bayt al Azif magazine index.">
<meta name="keywords" content="bayt al azif,cthulhu,lovecraft,magazine,index">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>The Bayt al Azif Index</title>
<LINK rel="stylesheet" TYPE="text/css" HREF="../css/general.css">
<LINK rel="stylesheet" TYPE="text/css" HREF="../css/index.css">
<LINK rel="stylesheet" TYPE="text/css" HREF="../css/index-cthulhu.css">
<LINK rel="stylesheet" TYPE="text/css" HREF="../css/toc-cthulhu.css">
</head>
<body bgcolor="#000000" link="#ff0000" vlink="#ff0000">
<div class="box">
<div class="row">
<div class="cover"><a href="../images/covers/baa01.jpg"><img src="../images/covers/baa01.jpg"></a></div>
<div class="cover"><a href="../images/covers/baa02.jpg"><img src="../images/covers/baa02.jpg"></a></div>
<div class="cover"><a href="../images/covers/baa03.jpg"><img src="../images/covers/baa03.jpg"></a></div>
<div class="cover"><a href="../images/covers/baa04.jpg"><img src="../images/covers/baa04.jpg"></a></div>
<div class="cover"><a href="../images/covers/baa05.jpg"><img src="../images/covers/baa05.jpg"></a></div>
</div>
</div>
<div w3-include-html="../includes/navbar-index.html"></div>
<center>
<h1>The Bayt al Azif Index</h1>
<h2 class="nounderline">Version 1.10: Issues 1-5</h2>
<h3>by <a href="mailto:[email protected]">Shannon Appelcline</a></h3>
</center>
<h1>Overview</h1>
<h2>History: 2018-Present</h2>
<div id="ToC"></div>
<p>Jared Smith, publisher of <i>Bayt al Azif</i>, began roleplaying
when he and his younger brother were run through <i>B2: The Keep on
the Borderlands</I> (1980) by a babysitter. Their characters both
died, which would be excellent practice for a future <i>Call of
Cthulhu</I> (1981) aficionado. Despite some Lovecraft reading in High
School, Smith wouldn't meet the famous horror game until college, when
he played in "The Haunting". No word of who survived that adventure,
though apparently at least one character went out a window!
<p>One other bit of knowledge was needed on the road to <I>Bayt al
Azif</I>: publishing experience. That also began in college, where
Smith edited and produced an anthology. However, he gained even more
experience starting in 2013 when he began publishing comics through
his comic store, Big Planet Comics, alongside the small-press Retrofit
Comics.
<p>The past is prologue: the actual inciting incident leading
to <i>Bayt Al Azif</I> occurred when Smith picked up a book from
Kobold Press and recognized it as print-on-demand (POD). When Smith
realized that anything could be printed POD in the modern day, and
that he wouldn't have to deal with subscriptions, warehousing, or
shipping, a new magazine was born. He settled on a Cthulhu Mythos RPG
mag because of his enjoyment of the games, and because he knew there
was a dedicated fanbase.
<p> <i>Bayt Al Azif</I> was also inspired in part by <i>The
Unspeakable Oath</I> (1990-2001, 2010-2018), likely the most famous of
the Cthulhu RPG magazines. It supports <i>Call of Cthulhu</i>, published
under the Chaosium Small Publisher Limited License, which is a
royalty-free license for products whose gross revenues don't exceed
$2000 a year. However, it also supports <i>Trail of Cthulhu</i>
(2008), courtesy of the GUMSHOE SRD, made available under both the OGL
and a Creative Commons license.
<p>Like the second incarnation of <i>The Unspeakable Oath</I> and
other Cthulhu RPG mags of the '10s such as <i>The Arkham Gazette</I>
(2013-Present) and <I>The Blasphemous Tome</I> (2016-Present), <i>Bayt
Al Azif</I> was (as planned) built using PDF and POD
technology. Ingram manages the on-demand printing and also makes the
magazine available to book stores; it's also possible for Smith to
send the magazine on from Ingram to gaming distributors such as IPR
(provided that the printing costs and the discounted price offered to
distributors line up and Smith makes sure they do!).
<p><I>Bayt Al Azif</I> has published about once a year since its
October 2018 debut. The magazine is almost like a yearbook, thanks in
part to Dean Engelhardt's looks at the annual publications for Cthulhu
RPGs. It also tends to include history and interviews, plus a number
of adventures for a scattering of eras in each issue.
<h2 class="nounderline">Obtaining the Magazines</h2>
Besides being available through distribution, <i>Bayt Al Azif</I> can
also be found as a PDF or POD
at <a href="https://www.drivethrurpg.com/browse/pub/12365/Bayt-al-Azif">DTRPG</a>. (DTRPG
also does their printing at Ingram, but uses a more limited version of
the technology, so the cover is matte instead of gloss, and there is
no artwork on the inside of those covers.)
<h2 class="nounderline">About the Game Systems</h2>
<i>Bayt Al Azif</I> primarily supports the BRP and GUMSHOE Cthulhu
Games, which primarily means <I>Call of Cthulhu 7e</I> (2014)
and <i>Trail of Cthulhu</I>. All the adventures are double-statted for
both systems. They're mostly labeled "GUMSHOE / 7e" or alternatively
"GUMSHOE / PC", for adventures instead compatible with <i>Pulp
Cthulhu</I> (2016).
<p><i>This index is © Copyright 2023 by Shannon Appelcline. It is
released under
a <a href="https://creativecommons.org/licenses/by/4.0/"><font color="white">cc-by-4.0</font></a>
license, allowing reuse with
attribution. <a href="https://www.freepik.com/free-vector/angry-red-octopus-vector-logo_16628682.htm#query=cthulhu&position=1&from_view=search&track=sph">Background
Image by inksyndromeartwork</a> on Freepik</i> and is available under
separate license there.</i>
<h1>Main Index</h1>
<h2>🏚️️ Adventures: Misc</h2>
<table class="index" width="100%">
<tr>
<td class="indent legend"></td>
<td class="title7 legend">Title</td>
<td class="system7 legend">System</td>
<td class="era7 legend">Era</td>
<td class="author7 legend">Author</td>
<td class="issue7 legend">#</td>
<td class="pages7 legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=8 class="indexcat">Misc, Campaigns, Germany Sequence</td>
</tr>
<tr>
<td class="spacer"></td>
<td>False Friends<sup>1</sup></td>
<td>GUMSHOE / 7e</td>
<td>1920s</td>
<td>Philipp Christophel & Ralf Sandfuchs</td>
<td>2</td>
<td>23-33</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Murders of Mr. S<sup>2</sup></td>
<td>GUMSHOE / 7e</td>
<td>1925</td>
<td>Ralf Sandfuchs</td>
<td>3</td>
<td>25-44</td>
</tr>
<tr>
<td colspan=8 class="indexcat">Misc, Solo</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Overdue</td>
<td></td>
<td>1920s</td>
<td>Jared Smith</td>
<td>1</td>
<td>47-52</td>
</tr>
<tr>
<td colspan=8 class="indexcat">College</td>
</tr>
<tr>
<td class="spacer"></td>
<td>False Friends</td>
<td>GUMSHOE / 7e</td>
<td>1920s</td>
<td>Philipp Christophel & Ralf Sandfuchs</td>
<td>2</td>
<td>23-33</td>
</tr>
<tr>
<td colspan=8 class="indexcat">Kids</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Double Dare</td>
<td>GUMSHOE / 7e</td>
<td>Now</td>
<td>Jared Smith</td>
<td>1</td>
<td>33-34</td>
</tr>
<tr>
<td colspan=8 class="indexcat">War</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Easier to Fill the Ocean with Stones</td>
<td>GUMSHOE / 7e</td>
<td>1968</td>
<td>Rich McKee</td>
<td>1</td>
<td>65-76</td>
</tr>
</table>
<ol class="index">
<li>Translated from the German in CTHULHUS RUF #1 (2012).
<li>Translated from the German in CTHULHUS RUF #3 (2013).
</ol>
<h2>🏡️️ Adventures: Geographic</h2>
<table class="index" width="100%">
<tr>
<td class="indent legend"></td>
<td class="title7 legend">Title</td>
<td class="system7 legend">System</td>
<td class="era7 legend">Era</td>
<td class="author7 legend">Author</td>
<td class="issue7 legend">#</td>
<td class="pages7 legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=8 class="indexcat">Arctic</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Operation Ice Dragon
<td>GUMSHOE / PC</td>
<td>1960</td>
<td>Rich McKee</td>
<td>3</td>
<td>89-103</td>
</tr>
<tr>
<td colspan=8 class="indexcat">Asia, Vietnam</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Easier to Fill the Ocean with Stones</td>
<td>GUMSHOE / 7e</td>
<td>1968</td>
<td>Rich McKee</td>
<td>1</td>
<td>65-76</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Europe, France</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Beasts of Gévaudan</td>
<td>GUMSHOE / 7e</td>
<td>1760s</td>
<td>Bridgett Jeffries</td>
<td>2</td>
<td>79-90</td>
</tr>
<tr>
<td class="spacer"></td>
<td>They Are Real<sup>1</sup></td>
<td>GUMSHOE / 7e</td>
<td>1931</td>
<td>Guillaume Agostini</td>
<td>4</td>
<td>55-69</td>
</tr>
<tr>
<td colspan=8 class="indexcat">Europe, Germany</td>
</tr>
<tr>
<td class="spacer"></td>
<td>False Friends<sup>2</sup></td>
<td>GUMSHOE / 7e</td>
<td>1920s</td>
<td>Philipp Christophel & Ralf Sandfuchs</td>
<td>2</td>
<td>23-33</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Murders of Mr. S<sup>3</sup></td>
<td>GUMSHOE / 7e</td>
<td>1925</td>
<td>Ralf Sandfuchs</td>
<td>3</td>
<td>25-44</td>
</tr>
<tr>
<td colspan=8 class="indexcat">Lovecraft Country, Arkham</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Overdue</td>
<td></td>
<td>1920s</td>
<td>Jared Smith</td>
<td>1</td>
<td>47-52</td>
</tr>
<tr>
<td colspan=8 class="indexcat">Lovecraft Country, Boston</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Box of Sathla<sup>4</sup>
<td>GUMSHOE / 7e</td>
<td>1926</td>
<td>Sami Koskinen</td>
<td>4</td>
<td>87-101</td>
</tr>
<tr>
<td colspan=8 class="indexcat">Middle East, Damascus</td>
</tr>
<tr>
<td class="spacer"></td>
<td>A Conspiracy in Damascus</td>
<td>GUMSHOE / 7e</td>
<td>Dark Ages</td>
<td>Jared Smith</td>
<td>1</td>
<td>13-27</td>
</tr>
<tr>
<td colspan=8 class="indexcat">Middle East, Troy</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Die Not Ingloriously</td>
<td>Cthulhu Dark / 7e</td>
<td>Ancient World</td>
<td>Rina Haenze</td>
<td>5</td>
<td>27-41</td>
</tr>
</table>
<ol class="index">
<li>Translated from the French in DI6DENT #7 (2013).
<li>Translated from the German in CTHULHUS RUF #1 (2012).
<li>Translated from the German in CTHULHUS RUF #3 (2013).
<li>Translated from the Finnish in SEIKKAILIJA #8 (1991).
</ol>
<h2>🕰️️️ Adventures: Historic</h2>
<table class="index" width="100%">
<tr>
<td class="indent legend"></td>
<td class="title7 legend">Title</td>
<td class="system7 legend">System</td>
<td class="era7 legend">Era</td>
<td class="author7 legend">Author</td>
<td class="issue7 legend">#</td>
<td class="pages7 legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=8 class="indexcat">Misc, Events, Hindenburg Explosion</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Ultima Ratio<sup>1</sup></td>
<td>GUMSHOE / 7e</td>
<td>1937</td>
<td>Carsten Pohl</td>
<td>4</td>
<td>33-42</td>
</tr>
<tr>
<td colspan=8 class="indexcat">Ancient World, Ancient Greece, Trojan War</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Die Not Ingloriously</td>
<td>Cthulhu Dark / 7e</td>
<td>Ancient World</td>
<td>Rina Haenze</td>
<td>5</td>
<td>27-41</td>
</tr>
<tr>
<td colspan=8 class="indexcat">Dark Ages</td>
</tr>
<tr>
<td class="spacer"></td>
<td>A Conspiracy in Damascus</td>
<td>GUMSHOE / 7e</td>
<td>Dark Ages</td>
<td>Jared Smith</td>
<td>1</td>
<td>13-27</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Golden Age of Piracy</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Dead Man's Chest<sup>3</sup></td>
<td>Pirate Borg / 7e</td>
<td>1650s-1730s</td>
<td>Stefan Droste</td>
<td>5</td>
<td>95-115</td>
</tr>
<tr>
<td colspan=7 class="indexcat">1700s</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Beasts of Gévaudan</td>
<td>GUMSHOE / 7e</td>
<td>1760s</td>
<td>Bridgett Jeffries</td>
<td>2</td>
<td>79-90</td>
</tr>
<tr>
<td colspan=8 class="indexcat">Gaslight</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Nighted</td>
<td>GUMSHOE / 7e</td>
<td>1899</td>
<td>Ash DelVillan</td>
<td>2</td>
<td>49-65</td>
</tr>
<tr>
<td colspan=8 class="indexcat">1920s</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Box of Sathla<sup>2</sup>
<td>GUMSHOE / 7e</td>
<td>1926</td>
<td>Sami Koskinen</td>
<td>4</td>
<td>87-101</td>
</tr>
<tr>
<td class="spacer"></td>
<td>False Friends<sup>3</sup></td>
<td>GUMSHOE / 7e</td>
<td>1920s</td>
<td>Philipp Christophel & Ralf Sandfuchs</td>
<td>2</td>
<td>23-33</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Murders of Mr. S<sup>4</sup></td>
<td>GUMSHOE / 7e</td>
<td>1925</td>
<td>Ralf Sandfuchs</td>
<td>3</td>
<td>25-44</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Overdue</td>
<td></td>
<td>1920s</td>
<td>Jared Smith</td>
<td>1</td>
<td>47-52</td>
</tr>
<tr>
<td colspan=8 class="indexcat">1930s</td>
</tr>
<tr>
<td class="spacer"></td>
<td>They Are Real<sup>5</sup></td>
<td>GUMSHOE / 7e</td>
<td>1931</td>
<td>Guillaume Agostini</td>
<td>4</td>
<td>55-69</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Ultima Ratio<sup>1</sup></td>
<td>GUMSHOE / 7e</td>
<td>1937</td>
<td>Carsten Pohl</td>
<td>4</td>
<td>33-42</td>
</tr>
<tr>
<td colspan=8 class="indexcat">Cold War</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Easier to Fill the Ocean with Stones</td>
<td>GUMSHOE / 7e</td>
<td>1968</td>
<td>Rich McKee</td>
<td>1</td>
<td>65-76</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Operation Ice Dragon
<td>GUMSHOE / PC</td>
<td>1960</td>
<td>Rich McKee</td>
<td>3</td>
<td>89-103</td>
</tr>
<tr>
<td colspan=8 class="indexcat">Now</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Double Dare</td>
<td>GUMSHOE / 7e</td>
<td>Now</td>
<td>Jared Smith</td>
<td>1</td>
<td>33-34</td>
</tr>
<tr>
<td class="spacer"></td>
<td>In the House of Glass</td>
<td>GUMSHOE / 7e</td>
<td>Now</td>
<td>Gail Clendenin</td>
<td>3</td>
<td>53-71</td>
</tr>
</table>
<ol class="index">
<li>Translated from the German in CTHULHUS RUF #6 (2014).
<li>Translated from the Finnish in SEIKKAILIJA #8 (1991).
<li>Translated from the German in CTHULHUS RUF #1 (2012).
<li>Translated from the German in CTHULHUS RUF #3 (2013).
<li>Translated from the French in DI6DENT #7 (2013).
</ol>
<h2>🦉 Advice</h2>
<table class="index" width="100%"> <tr>
<td class="indent legend"></td>
<td class="title7 legend">Title</td>
<td class="system7 legend">System</td>
<td class="era7 legend">Era</td>
<td class="author7 legend">Author</td>
<td class="issue7 legend">#</td>
<td class="pages7 legend">Pgs</td>
<td class="indent legend"></td>
</tr></td>
</tr>
<tr>
<td colspan=7 class="indexcat">Game Masters, Misc, Introduction</td>
</tr>
<tr>
<td class="spacer"></td>
<td>How to Play</td>
<td></td>
<td></td>
<td>Jared Smith</td>
<td>1</td>
<td>6</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Game Masters, Misc</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Mythos and Technology</td>
<td></td>
<td></td>
<td>Tyler Omichinski</td>
<td>3</td>
<td>87-88</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Rebooting Campaigns with a Modern Sensibility</td>
<td></td>
<td></td>
<td>Catherine Ramen</td>
<td>1</td>
<td>31-32</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Game Masters, Adventures, Adaptations</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Adapting a Scenario: Our Ladies of Sorrow<sup>1</sup></td>
<td>GUMSHOE</td>
<td>1960s</td>
<td>Lisa Padol</td>
<td>2</td>
<td>67-78</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Human Element: Good Starter Scenarios</td>
<td></td>
<td></td>
<td>Lisa Padol</td>
<td>5</td>
<td>89-90</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Simplicity: Good Starter Scenarios</td>
<td>CoC 7e</td>
<td></td>
<td>Paul Fricker</td>
<td>5</td>
<td>91-92</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Game Masters, Mystery</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Three Clue Rule</td>
<td></td>
<td></td>
<td>Justin Alexander</td>
<td>5</td>
<td>73-78</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Game Masters, Sanity</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Best People Usually Are</td>
<td>Various</td>
<td></td>
<td>Jared Smith</td>
<td>3</td>
<td>113-115</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Game Masters, Setting</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Who needs Lovecraft Country?</td>
<td></td>
<td>1920s</td>
<td>Ralf Sandfuchs</td>
<td>2</td>
<td>21-22</td>
</tr>
</table>
<ol class="index">
<li>A discussion of adapting OUR LADIES OF SORROW (Miskatonic River Press, 2009).
</ol>
<h2>🎨 Background: Misc</h2>
<table class="index" width="100%">
<tr>
<td class="indent legend"></td>
<td class="title7 legend">Title</td>
<td class="system7 legend">System</td>
<td class="era7 legend">Era</td>
<td class="author7 legend">Author</td>
<td class="issue7 legend">#</td>
<td class="pages7 legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=7 class="indexcat">Society</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Mythos and Modernity: Deep Ones at the DMV</td>
<td></td>
<td></td>
<td>Tyler Omichinski</td>
<td>4</td>
<td>53-54</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Technology</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Mythos and Modernity: Deep Ones at the DMV</td>
<td></td>
<td></td>
<td>Tyler Omichinski</td>
<td>4</td>
<td>53-54</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Mythos and Technology</td>
<td></td>
<td></td>
<td>Tyler Omichinski</td>
<td>3</td>
<td>87-88</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Weather</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Mythos and Modernity: Climate Change</td>
<td></td>
<td></td>
<td>Tyler Omichinski</td>
<td>5</td>
<td>26</td>
</tr>
</table>
<h2>🗺️️ Background: Geographic, Earth</h2>
<table class="index" width="100%"> <tr>
<td class="indent legend"></td>
<td class="title7 legend">Title</td>
<td class="system7 legend">System</td>
<td class="era7 legend">Era</td>
<td class="author7 legend">Author</td>
<td class="issue7 legend">#</td>
<td class="pages7 legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=7 class="indexcat">Europe, Germany</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Who Needs Lovecraft Country?</td>
<td></td>
<td>1920s</td>
<td>Ralf Sandfuchs</td>
<td>2</td>
<td>21-22</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Middle East, Syria</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Sites of Antiquity: Husn Suleiman</td>
<td></td>
<td></td>
<td>Jared Smith</td>
<td>1</td>
<td>29-30</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Sites of Antiquity: Temple of Melqart at Marat</td>
<td></td>
<td></td>
<td>Jared Smith</td>
<td>2</td>
<td>47-48</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Middle East, Turkey</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Sites of Antiquity: Cappadocia</td>
<td></td>
<td></td>
<td>Jason Smith</td>
<td>3</td>
<td>45-46</td>
</tr>
</table>
<h2>⌛ Background: Historic, Misc</h2>
<table class="index" width="100%">
<tr>
<td class="indent legend"></td>
<td class="title7 legend">Title</td>
<td class="system7 legend">System</td>
<td class="era7 legend">Era</td>
<td class="author7 legend">Author</td>
<td class="issue7 legend">#</td>
<td class="pages7 legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=8 class="indexcat">Ancient World, Ancient Rome</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Why Should You Be Playing Cthulhu Invictus?</td>
<td>CoC 7e</td>
<td>Ancient World</td>
<td>Oscar Rios</td>
<td>5</td>
<td>43-45</td>
</tr>
</table>
<h2>💀 Creatures</h2>
<table class="index" width="100%"> <tr>
<td class="indent legend"></td>
<td class="title7 legend">Title</td>
<td class="system7 legend">System</td>
<td class="era7 legend">Era</td>
<td class="author7 legend">Author</td>
<td class="issue7 legend">#</td>
<td class="pages7 legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=7 class="indexcat">Undead, Vampires</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Call of the Fang</td>
<td></td>
<td></td>
<td>Jo Kreil</td>
<td>5</td>
<td>65-72</td>
</tr>
</table>
<h2>📚️ Equipment: Books</h2>
<table class="index" width="100%">
<tr>
<td class="indent legend"></td>
<td class="title7 legend">Title</td>
<td class="system7 legend">System</td>
<td class="era7 legend">Era</td>
<td class="author7 legend">Author</td>
<td class="issue7 legend">#</td>
<td class="pages7 legend">Pgs</td>
<td class="indent legend"></td>
</tr></td>
</tr>
<tr>
<td colspan=7 class="indexcat">Misc, History</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Houses of the Unholy</td>
<td></td>
<td></td>
<td>Jared Smith</td>
<td>1</td>
<td>2</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Misc, Scanning</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Mythos and Technology</td>
<td></td>
<td></td>
<td>Tyler Omichinski</td>
<td>3</td>
<td>87-88</td>
</tr>
</table>
<h2>🧶️ Fiction</h2>
<table class="index" width="100%"> <tr>
<td class="indent legend"></td>
<td class="title7 legend">Title</td>
<td class="system7 legend">System</td>
<td class="era7 legend">Era</td>
<td class="author7 legend">Author</td>
<td class="issue7 legend">#</td>
<td class="pages7 legend">Pgs</td>
<td class="indent legend"></td>
</tr></td>
</tr>
<tr>
<td colspan=7 class="indexcat">Misc, Comic Strips</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Character Creation</td>
<td></td>
<td></td>
<td>Jensine Eckwall</td>
<td>1</td>
<td>58</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Misc, Comic Strips, Grave Spirits</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Grave Spirits</td>
<td></td>
<td>1930s</td>
<td>Evan Johnston</td>
<td>1</td>
<td>77-78</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Grave Spirits</td>
<td></td>
<td>1930s</td>
<td>Evan Johnston</td>
<td>2</td>
<td>98-101</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Grave Spirits</td>
<td></td>
<td>1930s</td>
<td>Evan Johnston</td>
<td>3</td>
<td>81-85</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Grave Spirits</td>
<td></td>
<td>1930s</td>
<td>Evan Johnston</td>
<td>4</td>
<td>80-84</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Grave Spirits</td>
<td></td>
<td>1930s</td>
<td>Evan Johnston</td>
<td>5</td>
<td>46-50</td>
</tr>
</table>
<h2>📣 Interviews, Memoirs & Notes</h2>
<table class="index" width="100%">
<tr>
<td class="indent legend"></td>
<td class="title7 legend">Title</td>
<td class="system7 legend">System</td>
<td class="era7 legend">Era</td>
<td class="author7 legend">Author</td>
<td class="issue7 legend">#</td>
<td class="pages7 legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=8 class="indexcat">Interviews, Books</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Consent in Gaming</td>
<td></td>
<td></td>
<td>Jared Smith</td>
<td>5</td>
<td>79-84</td>
</tr>
<tr>
<td colspan=8 class="indexcat">Interviews, Conventions</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Rogue Cthulhu</td>
<td></td>
<td></td>
<td>Jared Smith</td>
<td>1</td>
<td>53-57</td>
</tr>
<tr>
<td colspan=8 class="indexcat">Interviews, Designers</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Germain, Shanna</td>
<td></td>
<td></td>
<td>Jared Smith</td>
<td>5</td>
<td>79-84</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Hardy, Lynne</td>
<td></td>
<td></td>
<td>Jared Smith</td>
<td>2</td>
<td>91-94</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Ivey, Shane</td>
<td></td>
<td></td>
<td>Jared Smith</td>
<td>5</td>
<td>62-63</td>
</tr>