-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtradetalk.html
3907 lines (3849 loc) · 92.2 KB
/
tradetalk.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 Tradetalk magazine index.">
<meta name="keywords" content="glorantha,tradetalk,magazine,index">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>The Tradetalk 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/tradetalk1.jpg"><img src="../images/covers/tradetalk1.jpg"></a></div>
<div class="cover"><a href="../images/covers/tradetalk3.jpg"><img src="../images/covers/tradetalk3.jpg"></a></div>
<div class="cover"><a href="../images/covers/tradetalk9.jpg"><img src="../images/covers/tradetalk9.jpg"></a></div>
<div class="cover"><a href="../images/covers/tradetalk13.jpg"><img src="../images/covers/tradetalk13.jpg"></a></div>
<div class="cover"><a href="../images/covers/tradetalk14.jpg"><img src="../images/covers/tradetalk14.jpg"></a></div>
<div class="cover"><a href="../images/covers/tradetalk17.jpg"><img src="../images/covers/tradetalk17.jpg"></a></div>
</div>
</div>
<div w3-include-html="../includes/navbar-index.html"></div>
<center>
<h1>The Tradetalk Index</h1>
<h2 class="nounderline">Version 2.05: Issues 1-17</h2>
<h3><font color="black">by <a href="mailto:[email protected]">Shannon Appelcline</a></font></h3>
</center>
<h2 class="colorbar">History: 1996-2009</h2>
<div class="white">
<div id="ToC"></div>
<p>Though the Reaching Moon Megacorp,
the <i><a href="totrm.html">Tales of the Reaching Moon</a></i>
magazine, and the Convulsion conventions are usually considered the
foundation of international RuneQuest fandom, in Germany the RQ
Society ("RuneQuest Gesellschaft e.V.") was no less active. They began
holding their own yearly RQ-Cons in 1990 and began publishing a
German- language fanzine, <i>Free INT</i> in 1992. The magazine lasted
under its original name through <i>Free INT #14</i> (1996), and then
changed its name to "Schattenklinge" ("Shadow Blade"), which published
six more issues through 1999.
<p>Meanwhile, new things were afoot. In the Summer of 1996, the German
RQ Society reached out to British fan Tom Zunder to translate <i>Free
INT</I> articles into English. The result was a new
magazine: <i>Tradetalk #1</i> (1996). The magazine was rebooted after
the first issue to become the flagship of the RQ Society's new Chaos
Society, which was meant to support all of Chaosium's games
internationally. However, it still remained largely focused
on <i>RuneQuest</I> and Glorantha, making <i>Tradetalk</I> the sixth
in the wave of English-language Glorantha fanzines that originated
with <i>Tales of the Reaching Moon</I>. It would be the second most
prolific, after <i>Tales</I> itself.
<p>With <i>Tradetalk #2</I> (1997), editorship was taken over by Ingo
Tschinke, one of the principals of <i>Free INT</i>, and starting with
that issue, the content was all new. Layout was initially done by Rick
Meints, also a member of the Reaching Moon Megacorp, and much later,
the president of Chaosium itself. Arist Dario Corallo soon took over
layout, while André Jarosch stepped up as co-editor with <i>Tradetalk
#10</I> (2002), and eventually became the chief editor for the end of
the run.
<p><i>Tradetalk</I> was eventually joined by two sister
publications. <i><a href="ybot.html">Ye Book of Tentacles</a></i>
(1998-2006) was a con fundraiser that supported the Tentacles
conventions that were the continuation of the classic German RQ
Cons. It ran six large issues. The <i>Pavis & Big Rubble
Companions</i> (2001-2004) then spun off of <i>Ye Booke</I> and
focused on Ian Thomson's Pavic content, which had debuted in <i>Ye
Booke of Tentacles #3</I> (2000) and also featured in <i>Tradetalk
#8</I> (2001) and <i>Tradetalk #9</I> (2001).
<p><i>Tradetalk's</I> non-Gloranthan Chaosium content was authored by
Shannon Appelcline, the "Editor for Related Games". Some of the early
content originated in the electronic Chaosium Digest, but most was
new. Not quite a dozen articles covered <i>Call of
Cthulhu</i>, <i>Elric</I>, <i>Nephilim</I>,
and <i>Pendragon</I>. However, with <i>Tradetalk #13</i> (2003), the
magazine officially transitioned away from its attention to all of
Chaosium's games, and instead became Gloranthan specific. (<i>Ye Book
of Tentacles</I> would continue to include content for those other
games, written by <i>divers hands</i>.)
<p>After <i>Tradetalk #14</I> (2004), the magazine went on hiatus for
a few years due to uncertainty over the Gloranthan Fan Policy at the
time. It returned with <i>Tradetalk #15</I> (2007), but would only run
through <i>Tradetalk #17</I> (2009). The last three issues bore the
"Boldhome Press" logo, which was Issaries' short-lived attempt to
license Gloranthan fanzines. The final issue featured the magazine's
only full-color cover and was the only one to change its subtitle from
"The Chaos Society Magazine" to "The Chaos Society Gloranthan
Magazine".
<p><i>For more on The Chaos Society, see pages 146-159
of <a href="https://www.chaosium.com/mig3-the-meints-index-to-glorantha-hardcover/">MIG
III: The Meints Index to Glorantha</a>, with Tradetalk spotlighted on pages 154-159.</I>
<h2 class="nounderline">Theme Issues</h2>
<ol>
<li>"Broos in the East" (1996)
<li>Safelster (1997)
<li>East Wilds (1998)
<li>"Kethaela Issue" (1998)
<li>"Kethaela, Part Two" (1998)
<li>Catch up (2000)
<li>"Non Humans Special" (2000)
<li>"Pavis & The Big Rubble Special" (2001)
<li>"Pavis & The Big Rubble Special Part II" (2001)
<li>"Wenelia & Ramalia Special" (2002)
<li>"Handra & The New Fens" (2002)
<li>"Heortland" (2003)
<li>"Outside Genertela: The Islands" (2003)
<li>"Outside Genertela: The Southern Continent" (2004)
<li>"The Savage West" (2007)
<li>"Heroes & Strangers of Dragon Pass" (2008)
<li>"Pavis & Prax Special" (2009)
</ol>
<p><i>This index is © Copyright 1997-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>🗺️ Accessories</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">Calendars</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Gloranthan Rune Calendar</td>
<td></td>
<td></td>
<td>1</td>
<td>22-23</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Season Events</td>
<td>Hero Wars</td>
<td>Issaries</td>
<td>10</td>
<td>4</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Maps</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Maniria South Coast Map</td>
<td></td>
<td></td>
<td>10</td>
<td>24-25</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Pamaletela Map</td>
<td class="last"></td>
<td class="last"></td>
<td class="last">14</td>
<td class="last">24-25</td>
</tr>
</table>
<h2>⛺ Adventures: 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., Encounters</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Three Blind Rubble Runners</td>
<td>HeroQuest 1e</td>
<td>Brian Pinch</td>
<td>16</td>
<td>36-38</td>
</tr>
<Tr>
<td colspan=7 class="indexcat">Cults, Pantheons, The Lightbringers, Yelorna</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Unicorn Quest</td>
<td>HeroQuest 1e<br>RuneQuest 3e</td>
<td>Simon Phipp</td>
<td>17</td>
<td>34-36</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Peoples, Humans, Orlanthi</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Beast of Gren Dahl Moor</td>
<td>RuneQuest 3e</td>
<td>Tom Zunder</td>
<td>1</td>
<td>34-39</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Three Flowers<sup>1</sup></td>
<td class="last">RuneQuest 3e</td>
<td class="last">Peter Maranci</td>
<td class="last">5</td>
<td class="last">39-44</td>
</tr>
</table>
<ol class="index">
<li>Originally published in INTERREGNUM #21 (Pater Maranci, 1996?).
</ol>
<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>
<tr>
<td colspan=7 class="indexcat">Holy Country, Heortland</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Dry Hard</td>
<td>Hero Wars</td>
<td>Gian Gero</td>
<td>12</td>
<td>39-43</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Maniria, Caratan</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Bad Omens and Bangles</td>
<td>HeroQuest 1e</td>
<td>Stuart Mousir-Harrison</td>
<td>15</td>
<td>23-35</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Prax, Misc</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Crimson Shadows over Prax</td>
<td>Hero Wars<br>RuneQuest 3e</td>
<td>Schmid, Kohring & Thomson</td>
<td>8</td>
<td>32-43</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Prax, Borderlands</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Don't Lose Your Head<sup>1</sUP></td>
<td>HeroQuest 1e</td>
<td>Tobias Deterding</td>
<td>17</td>
<td>12-19</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Prax, Pavis, Big Rubble</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Ever-Burning Torches</td>
<td>HeroQuest 1e</td>
<td>Craig Pays, Ian Thomson, and Jamie Revell </td>
<td>17</td>
<td>28-33 </td>
</tr>
<tr>
<td class="spacer"></td>
<td>Krang's Table<sup>2</sup></td>
<td>Hero Wars</td>
<td>Ian Thomson</td>
<td>8</td>
<td>24-31</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Raiding the Yelorna Temple<sup>3</sup></td>
<td>HeroQuest 1e</td>
<td>Ian Thomson</td>
<td>17</td>
<td>5-11</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Wasteland<sup>1</sup></td>
<td>HeroQuest 1e</td>
<td>Tobias Deterding</td>
<td>17</td>
<td>20-27</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Ralios, East Wilds</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Growing Pains</td>
<td>RuneQuest 3e</td>
<td>Ingo Tschinke & Jörg Baumgartner</td>
<td>3</td>
<td>31-37</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Sartar</td>
</tr>
<tr>
<td class="spacer"></td>
<td>All Quiet on the Eastern Front</td>
<td>RuneQuest 3e</td>
<td>Helge Reuter</td>
<td>1</td>
<td>3-11</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Into the Dragonland</td>
<td></td>
<td>Jörg Baumgartner & Helge Reuter</td>
<td>7</td>
<td>39-44</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Sartar, Towns, Apple Lane</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">The Abduction</td>
<td class="last">RuneQuest 3e</td>
<td class="last">Lutz Reimers</td>
<td class="last">1</td>
<td class="last">24-28</td>
</tr>
</table>
<ol class="index">
<li>These adventures can be run in sequence.
<li>An adaption of the RuneQuest "Krang's Table" which appeared in BIG RUBBLE (Chaosium, 1983).
<li>Commentary and conversion on the classic BIG RUBBLE (Chaosium, 1983) scenario.
</ol>
<h2>🏝️ Adventures: Geographic, The Seas</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">Jrustela</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Black Wave Channel</td>
<td class="last">Hero Wars</td>
<td class="last">James Frusetta</td>
<td class="last">13</td>
<td class="last">28-32</td>
</tr>
</table>
<h2>🧗Adventures: Heroquests</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">Pavis</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Joraz Kyrem Gains an Ally</td>
<td class="last"></td>
<td class="last">Simon Phipp</td>
<td class="last">9</td>
<td class="last">42-45</td>
</tr>
</table>
<h2>🧙 Advice</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">Game Masters</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Money Chase</td>
<td></td>
<td>Jussi Hyvonen</td>
<td>3</td>
<td>38-39</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Roleplaying Gods, Cults, and Religions in Glorantha</td>
<td></td>
<td>Ingo Tschinke</td>
<td>1</td>
<td>40-44</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Season Events</td>
<td>Hero Wars</td>
<td>Issaries</td>
<td>10</td>
<td>4</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Players</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Roleplaying Gods, Cults, and Religions in Glorantha</td>
<td class="last"></td>
<td class="last">Ingo Tschinke</td>
<td class="last">1</td>
<td class="last">40-44</td>
</tr>
</table>
<h2>🎨 Background: 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">Calendar</td>
</tr>
<tr>
<td class="spacer"></td>
<td class="last">Glorantha Rune Calendar</td>
<td class="last"></td>
<td class="last"></td>
<td class="last">1</td>
<td class="last">22-23</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 country">Dragon Pass</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Thief Cults of Kethaela and Kerofinela</td>
<td>RuneQuest 3e</td>
<td>Jörg Baumgartner & Stephen Martin</td>
<td>6</td>
<td>23-31</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Wasps Nest of Dragon Pass</td>
<td>Hero Wars<br>RuneQuest 3e</td>
<td>André Jarosch (with Jörg Baumgartner)<br> & Martin Hawley (with Simon Bray)</td>
<td>7</td>
<td>22-29 </td>
</tr>
<tr>
<td colspan=7 class="indexcat">Dragon Pass, Wilds, Stinking Forest</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Elves of the Stinking Forest</td>
<td>Hero Wars</td>
<td>Shannon Appelcline</td>
<td>7</td>
<td>33</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Legends of the Westwood</td>
<td></td>
<td>Shannon Appelcline</td>
<td>7</td>
<td>30-33</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Dragon Pass, Wilds, Upland Marsh</td>
</tr>
<tr>
<td class="spacer"></td>
<td>How I Kill Undead</td>
<td></td>
<td>Simon E. Phipp</td>
<td>7</td>
<td>7-8</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Upland Marsh</td>
<td></td>
<td>Simon E. Phipp</td>
<td>7</td>
<td>5-6</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Dragon Pass, Wilds, Vale of Flowers</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Vale of Flowers</td>
<td>HeroQuest 1e</td>
<td>Shannon Appelcline</td>
<td>17</td>
<td>37-48</td>
</tr>
<tr>
<td colspan=7 class="indexcat country">Holy Country</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Saronil Whiteteeth in Holy Country</td>
<td></td>
<td>Pete McAveney</td>
<td>12</td>
<td>13</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Thief Cults of Kethaela and Kerofinela</td>
<td>RuneQuest 3e</td>
<td>Jörg Baumgartner & Stephen Martin</td>
<td>6</td>
<td>23-31</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Holy Country, Misc, Introduction</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Holy Country</td>
<td></td>
<td>Jörg Baumgartner</td>
<td>4</td>
<td>14-21, 24-25</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Holy Country: People of Note</td>
<td></td>
<td>Jörg Baumgartner</td>
<td>5</td>
<td>12-15</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Pharaoh</td>
<td></td>
<td>Greg Stafford</td>
<td>5</td>
<td>4</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Holy Country, Caladraland</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Caladraland</td>
<td></td>
<td>Vesa Lehtinen</td>
<td>5</td>
<td>16-29</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Holy Country, Esrolia, Misc, Organizations, Hero Bands</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Starlight Wives</td>
<td>HeroQuest 1e</td>
<td>Julian Lord</td>
<td>16</td>
<td>31-32</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Holy Country, Esrolia, Towns, Nochet</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Port of Nochet</td>
<td></td>
<td>Michael O'Brien</td>
<td>4</td>
<td>22-26</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Holy County, God Forgot</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Leonardo the Scientist</td>
<td></td>
<td>Ian Thomson</td>
<td>12</td>
<td>14-18 </td>
</tr>
<tr>
<td colspan=7 class="indexcat">Holy Country, Heortland</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Caldvale Manor</td>
<td>Hero Wars</td>
<td>Simon Bray</td>
<td>12</td>
<td>27-38</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Esvulari</td>
<td></td>
<td>Mark Galeotti & Greg Stafford</td>
<td>12</td>
<td>19-21</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Saronil Whiteteeth in Chaoswood</td>
<td></td>
<td>Pete McAveney</td>
<td>12</td>
<td>10-12</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Holy Country, Heortland, Misc, Organizations, Hero Bands</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The House of Black Arkat</td>
<td>Hero Wars</td>
<td>Jamie Revell</td>
<td>12</td>
<td>22-23 </td>
</tr>
<tr>
<td colspan=7 class="indexcat">Holy Country, Kingdom of Night</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Kingdom of Night Part I</td>
<td></td>
<td>Shannon Appelcline</td>
<td>4</td>
<td>5-8</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Kingdom of Night Part II</td>
<td></td>
<td>Shannon Appelcline</td>
<td>4</td>
<td>9-13</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Kingdom of Night Part III</td>
<td></td>
<td>Shannon Appelcline</td>
<td>5</td>
<td>5-11</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Kingdom of Night Part IV</td>
<td></td>
<td>Shannon Appelcline</td>
<td>6</td>
<td>5-7</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Holy Country, Rightarm Islands</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Closing</td>
<td></td>
<td>Martin Hawley</td>
<td>4</td>
<td>42</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Island Spirits</td>
<td></td>
<td>Simon Bray and Martin Hawley</td>
<td>4</td>
<td>33-36</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Rightarm Islands</td>
<td></td>
<td>Simon Bray and Martin Hawley</td>
<td>4</td>
<td>27-32</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Twelve Birds' Festival</td>
<td></td>
<td>Martin Hawley</td>
<td>4</td>
<td>37-39</td>
</tr>
<tr>
<td class="spacer"></td>
<td>When I Was Twelve</td>
<td></td>
<td>Martin Hawley</td>
<td>4</td>
<td>40-41</td>
</tr>
<tr>
<td colspan=7 class="indexcat country">Lunar Empire</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Quack! Glub, Glub, Glub</td>
<td></td>
<td>Simon E. Phipp</td>
<td>7</td>
<td>9-10</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Lunar Empire, Misc, Organizations, Hero Bands</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Live-Life League</td>
<td>HeroQuest 1e</td>
<td>Mark Galeotti</td>
<td>16</td>
<td>39-40</td>
</tr>
<tr>
<td colspan=7 class="indexcat country">Maniria</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Harandings</td>
<td>Hero Wars</td>
<td>Julian Lord</td>
<td>11</td>
<td>32-38</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Rivers of Maniria</td>
<td></td>
<td></td>
<td>10</td>
<td>36</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Maniria, Misc, Introduction</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Maniria South Coast Map</td>
<td></td>
<td></td>
<td>10</td>
<td>24-25 </td>
</tr>
<tr>
<td class="spacer"></td>
<td>Slontos</td>
<td></td>
<td>Greg Stafford</td>
<td>10</td>
<td>9</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The South Coast of Genertela</td>
<td></td>
<td>Ken Rolston & Marc Willner with Peter Metcalfe</td>
<td>10</td>
<td>5-8</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Maniria, Caratan</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Caratan</td>
<td>HeroQuest 1e</td>
<td>Stuart Mousir-Harrison</td>
<td>15</td>
<td>12-18</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Homeland: Auloring</td>
<td>HeroQuest 1e</td>
<td>Stuart Mousir-Harrison</td>
<td>15</td>
<td>21-22</td>
</tr>
<tr>
<td class="spacer"></td>
<td>What My Brother Told Me (Auloring)</td>
<td></td>
<td>Stuart Mousir-Harrison</td>
<td>15</td>
<td>19-20</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Maniria, Ramalia</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Kingdom of Ramalia</td>
<td></td>
<td>Jamie Revell</td>
<td>10</td>
<td>10-14</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Maniria, Towns, Handra</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Church of Handra</td>
<td></td>
<td>Peter Metcale with Marc Willner</td>
<td>11</td>
<td>16-18</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Handra, The City of Seven Isles</td>
<td></td>
<td>Peter Metcale with Marc Willner</td>
<td>11</td>
<td>10-13</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Social Structures in the City of Handra</td>
<td></td>
<td>Peter Metcalfe with Marc Willner</td>
<td>11</td>
<td>14-15</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Time Line of Handra and the New Fens</td>
<td></td>
<td>Peter Metcalfe with Marc Willner</td>
<td>11</td>
<td>5-10</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Maniria, Towns, Handra, Misc, Organizations</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Guilds of the City of Handra</td>
<td></td>
<td>Peter Metcalfe with Marc Willner</td>
<td>11</td>
<td>19-22</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Maniria, Wilds, Arstola Forest</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Legends of the Arstola</td>
<td></td>
<td>Shannon Appelcline</td>
<td>10</td>
<td>37-39</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Maniria, Wilds, New Fens</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Broos of the New Fens</td>
<td></td>
<td>Peter Metcalfe with Marc Willner</td>
<td>11</td>
<td>31</td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Praolori Hunters of the New Fens</td>
<td></td>
<td>Peter Metcalfe with Marc Willner</td>
<td>11</td>
<td>30 </td>
</tr>
<tr>
<td class="spacer"></td>
<td>Time Line of Handra and the New Fens</td>
<td></td>
<td>Peter Metcalfe with Marc Willner</td>
<td>11</td>
<td>5-10 </td>
</tr>
<tr>
<td class="spacer"></td>
<td>The Water Forest People of the New Fens</td>
<td></td>
<td>Peter Metcalfe with Marc Willner</td>
<td>11</td>
<td>27-28</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Maniria, Wilds, Tarinwood</td>
</tr>
<tr>
<td class="spacer"></td>
<td>Legends of the Tarinwood</td>
<td></td>
<td>Shannon Appelcline</td>
<td>11</td>
<td>40-43</td>
</tr>
<tr>
<td colspan=7 class="indexcat">Maniria, Wenelia</td>
</tr>
<tr>