-
Notifications
You must be signed in to change notification settings - Fork 0
/
codex.html
1056 lines (1001 loc) · 30.2 KB
/
codex.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="The Codex Magazine index.">
<meta name="keywords" content="glorantha,codex,mike dawson,magazine,index">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>The Codex 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-glorantha.css">
<LINK rel="stylesheet" TYPE="text/css" HREF="../css/toc-glorantha.css">
</head>
<body bgcolor="#ffffff" link="#ff0000" vlink="#ff0000">
<div class="box">
<div class="row">
<div class="cover"><a href="../images/covers/codex1b.jpg"><img src="../images/covers/codex1b.jpg"></a></div>
<div class="cover"><a href="../images/covers/codex1.jpg"><img src="../images/covers/codex1.jpg"></a></div>
<div class="cover"><a href="../images/covers/codex2b.jpg"><img src="../images/covers/codex2b.jpg"></a></div>
<div class="cover"><a href="../images/covers/codex2.jpg"><img src="../images/covers/codex2.jpg"></a></div>
<div class="cover"><a href="../images/covers/codex3b.jpg"><img src="../images/covers/codex3b.jpg"></a></div>
<div class="cover"><a href="../images/covers/codex3.jpg"><img src="../images/covers/codex3.jpg"></a></div>
</div>
</div>
<div w3-include-html="../includes/navbar-index.html"></div>
<center>
<h1>The Codex Index</h1>
<h2 class="nounderline">Version 1.51: Issues 1-3</h2>
<h3>by <a href="mailto:shannon.appelcline@gmail.com">Shannon Appelcline</a></h3>
<br>
</center>
<h2 class="colorbar">History, 1994-1995</h2>
<div class="white">
<div id="ToC"></div>
<p>Mike Dawson joined the roleplaying hobby in 1977 with a copy of
J. Eric Holmes' <i>Basic D&D Set</I> (1977). However, after he
introduced his friend Dan Greenberg to the game, he "abandoned" it for
a year. Fortunately by the time he was brought back into gaming, Steve
Perrin had published <i>RuneQuest</i> (1978), which Dawson bought
"when the ink was still wet on the first edition". Soon, Dawson was
designing his own RuneQuest campaign, Rimwall, set in a huge circular
valley with barrier peaks, and making adjustments to
the <i>RuneQuest</I> rules, which he wrote about in correspondence
with designer Perrin.
<p>From early on, Dawson wanted to be a member of not just the hobby,
but the industry. Around 1981, he started a mail-order business with
Dan Greenberg selling fantasy t-shirts of "The Cleric", "The Mage",
"The Thief", "The Halfling", and "The Elven Bowman". He also joined
Greenberg in the Virginia Commonwealth University (VCU) Gamemasters
Club, a crucial early roleplaying organization focused on both play
and design. Its members included not just Dawson and founder
Greenberg, but also other young game designers such as Les Brooks, Sam
Shirley, Phil Brucato, and Bill Bridges, resulting in it influencing
both Chaosium and White Wolf; members praise Dawson as an "unsung
hero" of modern RPGs, with his influential "Illuminated Champions"
game being a highlight.
<p>Meanwhile, Dawson was also participating in early fanzines such
as <i>The Necromancer</I> (1981-1982) and <I>The Oracle</I>
(1982-1983), where he revealed his increasing fandom with reviews of
Chaosium's <i>Stormbringer</I> (1981) and <i>Borderlands</I> (1982).
Dawson made the jump to professional writing a few years later with
reviews and articles for <i>Game News</i> (1985-1986) and famously
"The Ostrich Clan" for <i>RuneQuest</I>, which appeared
in <i>Heroes</I> magazine (1984-1986).
<p>When Avalon Hill began neglecting <I>RuneQuest</I> in the early
'90s, Dawson joined the fandom online and contributed to
<i><a href="totrm.html">Tales of the Reaching Moon</a></I>
(1989-2003). Simultaneously, he struggled to get Avalon Hill to commit
to guidelines for submissions. Only after Ken Rolston took over the
editing of <i>RuneQuest</I> was Dawson able to write for Avalon Hill's
supplements, becoming a member of the RuneQuest Renaissance. He
supported Oliver Jovanovic and company in working on the
never-published "RuneQuest: Adventures in Glorantha" rules and also
contributed to Avalon Hill's late <i>RQ</I> supplements, <i>Shadows on
the Borderlands</I> (1993) and <i>Strangers in Prax</I> (1994). There
should have been more, as Dawson was contracted to develop Michael
O'Brien's "Soldiers of the Red Moon", but that was one of many
projects lost as Avalon Hill collapsed once more in the late '90s.
<p>In 1993, Dawson decided to create his own <i>RuneQuest</I>
fanzine. As he wrote, "Most of us don't game as much as we used to,
pressures of the real world being what they are. We make up for that
by writing, so we can justify our time by earning a few
dollars". Unlike the second modern <i>RuneQuest</I>
'zine, <i>RuneQuest Adventures</I> (1993-1998), Dawson
intended <I>Codex</I> to be a more varied magazine, like <i>Tales</I>
itself. In fact, when asked how it would be different, Virginian Mike
Dawson's first answer was, "It will be American!" (He later
supplemented that by saying that his editorial tastes would be
different, with fewer rules, no reviews, no background written as
fiction, and less concern about being contradicted.)
<p><i>Codex #1</I> (January 1994) appeared in 200 numbered copies at
RQ-Con 1 (1994), the first US RQ-Con, held by David Cheng in
Baltimore. The success of RQ-Con encouraged Dawson to continue
publishing, though when he had to actually mail out <i>Codex #2</I>
(1994), he was shocked by the cost. A third issue (1995) would close
out the magazine.
<p>Dawson was supported in the magazine by a who's who of <i>RQ</I>
fandom at the time, drawn from online mailing lists and <i>Tales</I>
writers, most notably including Martin Crim, also from the DC/Virginia
area, who provided considerable support. Imther author Harald Smith
was another of Dawson's contributors: Dawson introduced him to the
non-electronic world in the third issue, which was an Imther
special. Dawson was also fortunate to have a very notable piece
courtesy of Greg Stafford: a map of the God Plane (redrawn by Dawson),
which appeared in <i>Codex #2</I>. At the time, it was the first look
at the home of HeroQuesting.
<p>There were plans for a fourth issue focused on the East
Isles. However it was delayed by missing cover art (a real issue, as
Dawson had focused on high graphical quality for <i>Codex</I>, but at
the same time was small enough press that he couldn't pay for art),
and "Mike's other interests in life". A LARPish scenario called the
"Galastar Peace Conference", by Martin Crim, was also planned as a
non-magazine release. <I>Codex</I> instead closed down with
that third issue.
<h2 class="nounderline">Theme Issues</h2>
<ol>
<li>Pavis Special (January 1994)
<li>West Special (Spring 1994)
<li>Imther Feature (Winter 1995)
</ol>
<h2 class="nounderline">About the Game Systems</h2>
<p><i>Codex</I> was primarily a <i>RuneQuest 3e</I> Gloranthan
magazine, with many articles being universal.
<h2 class="nounderline">Obtaining the Magazine</h2>
<p><i>Codex</I> was a small-press magazine, with the original
print-run of the initial issue only running 200 copies. There were
reprints in UK officially produced by Colin Phillips, with white
covers instead of the colored covers that Mike Dawson used, but it's
likely they existed in pretty small quantities as well.
<P>As a result, it's very hard to find <i>Codex</I> today, especially
because the title is not very search-friendly.
<hr style="border: .5px solid black">
<p><i>This index is © Copyright 1994-2024 by Shannon Appelcline. It is
released under
a <a href="https://creativecommons.org/licenses/by/4.0/"><font color="black">cc-by-4.0</font></a>
license, allowing reuse with attribution.
Map background is <a href="https://wellofdaliath.chaosium.com/home/catalogue/websites/fan-sites/gloranthan-community-map-page/">courtesy of Chaosium</a>, used per their <a href="https://www.glorantha.com/glorantha/fan-sites/fan-policy/">fan material policy</a>.
</i>
</div>
<h2>🏕️️ Adventures: Geographic, Genertela</h2>
<table class="index" width="100%"> <tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
<tr>
<td colspan=7 class="indexcat">Dorastor, Risklands</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">The Spirit of the Stream</td>
<td class="last">RuneQuest 3e</td>
<td class="last">Martin Crim</td>
<td class="last">1</td>
<td class="last">2-7</td>
</tr>
</table>
<h2>🧗Adventures: Heroquests</h2>
<table class="index" width="100%">
</td>
<tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=7 class="indexcat country">Misc, Maps</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Map of the God Plane</td>
<td class="last"></td>
<td class="last">Greg Stafford</td>
<td class="last">2</td>
<td class="last">13</td>
</tr>
</table>
<h2>🧀 Background: Misc</h2>
<table class="index" width="100%">
</td>
<tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=7 class="indexcat">Food</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Imtherian Cheeses</td>
<td class="last"></td>
<td class="last">Harald Smith</td>
<td class="last">3</td>
<td class="last">2</td>
</tr>
</table>
<h2>🖼️ Background: Geographic, Genertela, Central<sup>1</sup></h2>
<table class="index" width="100%">
<tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr>
</tr>
<td colspan=7 class="indexcat preindexcat country">Lunar Empire</td>
</tr>
</tr>
<td colspan=7 class="indexcat">Lunar Empire, Misc, Organizations</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Lunar Policy Organs<sup>1</sup></td>
<td></td>
<td>David Gadbois</td>
<td>3</td>
<td>11-12</td>
</tr>
</tr>
<td colspan=7 class="indexcat">Lunar Empire, Provinces, Imther</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Edge of Empire</td>
<td></td>
<td>Harald Smith</td>
<td>3</td>
<td>3-4</td>
</tr>
</tr>
<td colspan=7 class="indexcat">Lunar Empire, Provinces, Imther, Misc, Food</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Imtherian Cheeses</td>
<td></td>
<td>Harald Smith</td>
<td>3</td>
<td>2</td>
</tr>
</tr>
<td colspan=7 class="indexcat">Lunar Empire, Provinces, Imther, Misc, Historic</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Jannisor's Face</td>
<td></td>
<td>Harald Smith</td>
<td>3</td>
<td>10</td>
</tr>
</tr>
<td colspan=7 class="indexcat">Lunar Empire, Provinces, Imther, Towns, Hortugarth, Organizations</td>
</tr>
<tr>
<td class="spacer"></td>
<td>A Guide to Factions of Imther</td>
<td></td>
<td>Harald Smith</td>
<td>3</td>
<td>8-9</td>
</tr>
</tr>
<td colspan=7 class="indexcat country">Prax</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Praxian Culture<sup>2</sup></td>
<td></td>
<td>Sandy Petersen & Martin Crim</td>
<td>1</td>
<td>22-30</td>
</tr>
</tr>
<td colspan=7 class="indexcat">Prax, Pavis</td>
</tr>
<tr>
<td class="spacer"></td>
<td>From the Report on the Pacification of Prax, 1613 ST</td>
<td></td>
<td>Mike Dawson</td>
<td>1</td>
<td>9-10</td>
</tr>
</tr>
<td colspan=7 class="indexcat">Prax, Pavis, Misc, Government</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Seven Masks of Pavis</td>
<td>RuneQuest 3e</td>
<td>Martin Crim</td>
<td>1</td>
<td>12-14</td>
</tr>
</tr>
<td colspan=7 class="indexcat">Prax, Pavis, Misc, Language</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Pavic Experience & Language</td>
<td></td>
<td>Mike Dawson</td>
<td>1</td>
<td>21</td>
</tr>
</tr>
<td colspan=7 class="indexcat">Prax, Pavis, Big Rubble</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Old Magics of Pavis</td>
<td>RuneQuest 3e</td>
<td>Mike Dawson</td>
<td>1</td>
<td>19-20</td>
</tr>
</tr>
<td colspan=7 class="indexcat">Prax, Pavis, New City</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Why Pavis Works</td>
<td class="last"></td>
<td class="last">Bryan John Maloney</td>
<td class="last">1</td>
<td class="last">11</td>
</tr>
</table>
<ol class="index">
<li>Previously appeared in the RUNEQUEST DAILY.
<li>Parts of this previously appeared in RUNEQUEST DIGEST volume 10, number 4.
</ol>
<h2>🖼️ Background: Geographic, Genertela, Western</h2>
<table class="index" width="100%"> <tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr>
</tr>
<td colspan=7 class="indexcat">Misc, Organizations, Military</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Knighthood in Glorantha</td>
<td></td>
<td>Joerg Baumgartner</td>
<td>3</td>
<td>18</td>
</tr>
<tr>
<td colspan=7 class="indexcat country">Fronela</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Five Ancient Horrors of Fronela</td>
<td></td>
<td>Mike Dawson</td>
<td>2</td>
<td>4-5</td>
</tr>
</tr>
<td colspan=7 class="indexcat">Fronela, Misc, Historic</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Ban Stories</td>
<td></td>
<td>Martin Crim</td>
<td>2</td>
<td>2-3</td>
</tr>
<tr>
<td class="spacer"></td>
<td>A History of Fronelan Malkionism</td>
<td></td>
<td>Martin Crim</td>
<td>2</td>
<td>6-10</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Timeline for Fronela</td>
<td></td>
<td>Mark Sabulaskas</td>
<td>2</td>
<td>11-12</td>
</tr>
</tr>
<td colspan=7 class="indexcat">Fronela, Mortasor</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Tribes of Mortasor</td>
<td></td>
<td>Paul Reilly</td>
<td>2</td>
<td>26-31</td>
</tr>
</tr>
<td colspan=7 class="indexcat">Fronela, Mortasor, Towns, Galastor</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Galastar: A City Reborn</td>
<td></td>
<td>Mike Dawson</td>
<td>2</td>
<td>14-25</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Myths of Galastar</td>
<td class="last"></td>
<td class="last">Paul Reilly</td>
<td class="last">2</td>
<td class="last">32</td>
</tr>
</table>
<h2>🌌️️ Background: Geographic, The Sky</h2>
<table class="index" width="100%">
<tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=7 class="indexcat country">Red Moon</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Red Gaze of the Moon</td>
<td></td>
<td>Nick Brooke</td>
<td>1</td>
<td>8</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Why Does the Red Moon Have Phases?</td>
<td class="last"></td>
<td class="last">Joerg Baumgartner</td>
<td class="last">2</td>
<td class="last">34</td>
</tr>
</table>
<h2>⌛ Background: Historic</h2>
<table class="index" width="100%">
<tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=7 class="indexcat">Ages, Third Age, Lunar Empire</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Jannisor's Face [First Wane]</td>
<td></td>
<td>Harald Smith</td>
<td>3</td>
<td>10</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Ages, Third Age, Syndics Ban</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Ban Stories</td>
<td></td>
<td>Martin Crim</td>
<td>2</td>
<td>2-3</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Cults & Myths, Malkionism</td>
</tr>
<tr>
<td class="spacer"></td>
<td>A History of Fronelan Malkionism</td>
<td></td>
<td>Martin Crim</td>
<td>2</td>
<td>6-10</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Geographic, Genertela, Central, Lunar Empire</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Jannisor's Face</td>
<td></td>
<td>Harald Smith</td>
<td>3</td>
<td>10</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Geographic, Genertela, Western, Fronela</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Ban Stories</td>
<td></td>
<td>Martin Crim</td>
<td>2</td>
<td>2-3</td>
</tr>
<tr>
<td class="spacer"></td>
<td>A History of Fronelan Malkionism</td>
<td></td>
<td>Martin Crim</td>
<td>2</td>
<td>6-10</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Timeline for Fronela</td>
<td class="last"></td>
<td class="last">Mark Sabulaskas</td>
<td class="last">2</td>
<td class="last">11-12</td>
</tr>
</table>
<h2>🐾 Creatures</h2>
<table class="index" width="100%"> <tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=7 class="indexcat">Geographic, Genertela, Western, Fronela</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Five Ancient Horrors of Fronela</td>
<td></td>
<td>Mike Dawson</td>
<td>2</td>
<td>4-5</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Geographic, Genertela, Western, Ralios</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Urmalofotti</td>
<td></td>
<td>Peter Michaels</td>
<td>3</td>
<td>13-14</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Type, Spirits</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Urmalofotti</td>
<td class="last"></td>
<td class="last">Peter Michaels</td>
<td class="last">3</td>
<td class="last">13-14</td>
</tr>
</table>
<h2>🙏 Cults & Myths: Misc</H2>
<table class="index" width="100%">
<tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=7 class="indexcat">Misc, Myths</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Myths of Galastar</td>
<td></td>
<td>Paul Reilly</td>
<td>2</td>
<td>32</td>
</tr>
<tr>
<td colspan=7 class="indexcat">City Cults</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">The Seven Masks of Pavis</td>
<td class="last">RuneQuest 3e</td>
<td class="last">Martin Crim</td>
<td class="last">1</td>
<td class="last">12-14</td>
</tr>
</table>
<h2>🙏 Cults & Myths: Malkionism</H2>
<table class="index" width="100%">
<tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=7 class="indexcat">Misc, Historic</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">A History of Fronelan Malkionism</td>
<td class="last"></td>
<td class="last">Martin Crim</td>
<td class="last">2</td>
<td class="last">6-10</td>
</tr>
</table>
<h2>🙏 Cults & Myths: Pantheons</H2>
<table class="index" width="100%"> <tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=7 class="indexcat preindexcat country">The Lightbringers</td>
</tr>
<tr>
<td colspan=7 class="indexcat">The Lightbringers, Misc, Myths</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Urox's First Trick<sup>1</sup></td>
<td></td>
<td>Clay Luther</td>
<td>1</td>
<td>31-32</td>
</tr>
<tr>
<td colspan=7 class="indexcat country">The Lunar Way</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Red Gaze of the Moon</td>
<td></td>
<td>Nick Brooke</td>
<td>1</td>
<td>8</td>
</tr>
<tr>
<td colspan=7 class="indexcat country">Sky</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Lies with Truth<sup>2</sup></td>
<td class="last"></td>
<td class="last">Martin Crim</td>
<td class="last">3</td>
<td class="last">19-21</td>
</tr>
</table>
<ol class="index">
<li>Previously appeared in the RUNEQUEST DAILY.
<li>A response to revelations in THE GLORIOUS REASCENT OF YELM (Chaosium, 1994).
</ol>
<h2>🙏 Cults & Myths: Peoples</H2>
<table class="index" width="100%">
<tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=7 class="indexcat preindexcat country">Humans</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Humans, Praxians, Misc, Myths</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Urox's First Trick<sup>1</sup></td>
<td></td>
<td>Clay Luther</td>
<td>1</td>
<td>31-32</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Humans, Praxians, Pavis</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">The Seven Masks of Pavis</td>
<td class="last">RuneQuest 3e</td>
<td class="last">Martin Crim</td>
<td class="last">1</td>
<td class="last">12-14</td>
</tr>
</table>
<ol class="index">
<li>Previously appeared in the RUNEQUEST DAILY.
</ol>
<h2>🪄️ Equipment: Magic</h2>
<table class="index" width="100%">
<tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=7 class="indexcat">Peoples, Humans, Lunars</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Moon Boats<sup>1</sup></td>
<td></td>
<td>Michael O'Brien</td>
<td>3</td>
<td>12</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Peoples, Humans, Malkioni</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Blessed Swords of Rokar</td>
<td>RuneQuest 3e</td>
<td>Mike Dawson</td>
<td>3</td>
<td>22-23</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Peoples, Humans, Praxian, Pavis</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Old Magics of Pavis</td>
<td class="last">RuneQuest 3e</td>
<td class="last">Mike Dawson</td>
<td class="last">1</td>
<td class="last">19-20</td>
</tr>
</table>
<ol class="index">
<li>See the cover of STRANGERS IN PRAX (AVALON HILL, 1994) for a moon boat.
</ol>
<h2>🛶️ Equipment: Transport</h2>
<table class="index" width="100%">
<tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=7 class="indexcat">Ships, Air</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Moon Boats<sup>1</sup></td>
<td class="last"></td>
<td class="last">Michael O'Brien</td>
<td class="last">3</td>
<td class="last">12</td>
</tr>
</table>
<ol class="index">
<li>See the cover of STRANGERS IN PRAX (AVALON HILL, 1994) for a moon boat.
</ol>
<h2>🧶️ Fiction</h2>
<table class="index" width="100%">
</td>
<tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=7 class="indexcat">Geographic, Genertela, Central, Lunar Empire, Provinces, Imther</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Election</td>
<td></td>
<td>Harald Smith</td>
<td>3</td>
<td>5-7</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Geographic, The Seas, Teshnos, Trowjang</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Three Sisters</td>
<td></td>
<td>Martin Crim</td>
<td>3</td>
<td>27-32</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Peoples, Amazons</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Three Sisters</td>
<td class="last"></td>
<td class="last">Martin Crim</td>
<td class="last">3</td>
<td class="last">27-32</td>
</tr>
</table>
<h2>🪄 Magic</h2>
<table class="index" width="100%"> <tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr></td>
</tr>
<tr>
<td colspan=7 class="indexcat">Draconic</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Dragon Magic<sup>1</sup></td>
<td class="last">RuneQuest 3e</td>
<td class="last">Sandy Petersen</td>
<td class="last">3</td>
<td class="last">15-17</td>
</tr>
</table>
<ol class="index">
<li>Previously appeared in the RUNEQUEST DAILY.
</ol>
<h2>🗣️ NPCs</h2>
<table class="index" width="100%">
</td>
<tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr>
<tr>
<td colspan=7 class="indexcat">Geographic, Genertela, Central, Lunar Empire, Imther</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Jannisor's Face</td>
<td></td>
<td>Harald Smith</td>
<td>3</td>
<td>10</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Geographic, Genertela, Central, Prax, Pavis, Big Rubble</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Gangs of the Rubble</td>
<td></td>
<td>Mike Dawson</td>
<td>1</td>
<td>15-16</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Inside the Tarsh Gang</td>
<td class="last"></td>
<td class="last">Mike Dawson</td>
<td class="last">1</td>
<td class="last">17-18</td>
</tr>
</table>
<h2>🧌 Peoples</h2>
<table class="index" width="100%"> <tr>
<td class="indent legend"></td>
<td class="title legend">Title</td>
<td class="system legend">System</td>
<td class="author legend">Author</td>
<td class="issue legend">#</td>
<td class="pages legend">Pgs</td>
<td class="indent legend"></td>
</tr></td>
</tr>
<tr>
<td colspan=7 class="indexcat country">Dragonewts</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Dragon Magic<sup>1</sup></td>
<td class="last">RuneQuest 3e</td>
<td class="last">Sandy Petersen</td>
<td class="last">3</td>