-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquest list.txt
4212 lines (3683 loc) · 188 KB
/
quest list.txt
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
function scr_DatabaseQuests() {
var qid;
qid = 0;
global.quest[qid, QUEST_NAME] = "Natural Born Killer";
global.quest[qid, QUEST_DESC] = "Defeat enemies in this Realm to ensure the safety of " + global.castlename + "'s people.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Enemies Killed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 1;
global.quest[qid, QUEST_NAME] = "Need a Penny, Take a Penny";
global.quest[qid, QUEST_DESC] = "Collect coins in this Realm to bolster " + global.castlename + "'s economy.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Coins Collected";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 2;
global.quest[qid, QUEST_NAME] = "The Robes Off Their Backs";
global.quest[qid, QUEST_DESC] = "Collect robes in this Realm to clothe " + global.castlename + "'s apprentice magi.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Robes Collected";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 3;
global.quest[qid, QUEST_NAME] = "Pelted With Gifts";
global.quest[qid, QUEST_DESC] = "Collect pelts in this Realm to clothe " + global.castlename + "'s citizens.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Pelts Collected";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 4;
global.quest[qid, QUEST_NAME] = "Call to Arms";
global.quest[qid, QUEST_DESC] = "Recruit knights from this Realm to guard " + global.castlename + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Knights Recruited";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 5;
global.quest[qid, QUEST_NAME] = "Citizens of a Growing Empire";
global.quest[qid, QUEST_DESC] = "Recruit citizens from this Realm to populate " + global.castlename + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Citizens Recruited";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 6;
global.quest[qid, QUEST_NAME] = "Quality Construction";
global.quest[qid, QUEST_DESC] = "Collect building materials in this Realm to expand " + global.castlename + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Materials Collected";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 7;
global.quest[qid, QUEST_NAME] = "Armaments for War";
global.quest[qid, QUEST_DESC] = "Collect weapons and armor in this Realm to equip " + global.castlename + "'s knights.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Weapons/Armor Collected";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 8;
global.quest[qid, QUEST_NAME] = "Conquest for Cores";
global.quest[qid, QUEST_DESC] = "Collect wayward Cores in this Realm to give " + global.castlename + "'s magi access to new creatures.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Wayward Cores Collected";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 9;
global.quest[qid, QUEST_NAME] = "Ancient Studies";
global.quest[qid, QUEST_DESC] = "Study inscribed slates to expand " + global.castlename + "'s library.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Slates Studied";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 10;
global.quest[qid, QUEST_NAME] = "Light the Darkness";
global.quest[qid, QUEST_DESC] = "Light the Piety Candle in this Realm to appease " + scr_GodName(scr_BiomeGod(global.biome), true) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = -1;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 11;
global.quest[qid, QUEST_NAME] = "A Favor For No One In Particular";
global.quest[qid, QUEST_DESC] = "Light the campfires in this Realm to highlight landmarks for other travelers.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Campfires Lit";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 12;
global.quest[qid, QUEST_NAME] = "Digging For Treasure Buried";
global.quest[qid, QUEST_DESC] = "Find a treasure map in this Realm and use it to uncover buried treasure.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Treasure Discovered";
global.quest[qid, QUEST_ITEM_QUANTITY] = 1;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 13;
global.quest[qid, QUEST_NAME] = "Nortah's Burden";
global.quest[qid, QUEST_DESC] = "Subdue " + global.castlename + "'s runaway creatures in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Creatures Subdued";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 14;
global.quest[qid, QUEST_NAME] = "Twinkling Titanite";
global.quest[qid, QUEST_DESC] = "Find chunks of deified essence in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Essences Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 15;
global.quest[qid, QUEST_NAME] = "Awaken, Abomination";
global.quest[qid, QUEST_DESC] = "Collect components from this Realm to summon a powerful enemy.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Components Collected";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 16;
global.quest[qid, QUEST_NAME] = "Nether Guardians";
global.quest[qid, QUEST_DESC] = "Defeat the Nether Guardians in this realm to summon a Nether Boss.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Guardians Defeated";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3;
global.quest[qid, QUEST_REPEATABLE] = false;
item = scr_GetRandomItemName();
qid = 17;
global.quest[qid, QUEST_NAME] = "Generic Fetch Quest";
global.quest[qid, QUEST_DESC] = "Find " + item + " in this Realm by defeating enemy creatures.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = item + " Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
item = scr_GetRandomItemName();
qid = 18;
global.quest[qid, QUEST_NAME] = "Generic Fetch Quest";
global.quest[qid, QUEST_DESC] = "Find " + item + " inside breakable objects in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = item + " Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
name = rng_GenerateRandomName();
qid = 19;
global.quest[qid, QUEST_NAME] = "Lost, But Not Forgotten";
global.quest[qid, QUEST_DESC] = "Find and rescue " + global.castlename + " citizen " + name + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = name + " Rescued";
global.quest[qid, QUEST_ITEM_QUANTITY] = 1;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 20;
global.quest[qid, QUEST_NAME] = "The Defiled Trove";
global.quest[qid, QUEST_DESC] = "Cleanse the cursed treasure chest in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Chest Cleansed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 1;
global.quest[qid, QUEST_REPEATABLE] = false;
// SORCERY REALM ONLY
qid = 21;
global.quest[qid, QUEST_NAME] = "Forgotten Tomes";
global.quest[qid, QUEST_DESC] = "Obtain intact tomes from the bookshelves in this Realm to bolster " + global.castlename + "'s library.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Tomes Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 22;
global.quest[qid, QUEST_NAME] = "Stocking Up";
global.quest[qid, QUEST_DESC] = "Obtain potions from this Realm to bolster " + global.castlename + "'s emergency stockpile.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Potions Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 23;
global.quest[qid, QUEST_NAME] = "Simple Recon";
global.quest[qid, QUEST_DESC] = "Find telescopes in this Realm to aid " + global.castlename + "'s scouts in their missions.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Telescopes Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 24; // dungeon
global.quest[qid, QUEST_NAME] = "The Pot Lid";
global.quest[qid, QUEST_DESC] = "Find artifact fragments in this Realm to create a new Artifact.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Fragments Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 25;
global.quest[qid, QUEST_NAME] = "A Shattered Soul";
global.quest[qid, QUEST_DESC] = "Find gem fragments in this Realm to create a new Spell Gem.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Fragments Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 26;
global.quest[qid, QUEST_NAME] = "A Bit of This, A Bit of That";
global.quest[qid, QUEST_DESC] = "Conduct experiments using the alchemy stations scattered around this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Experiments Completed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 2
global.quest[qid, QUEST_REPEATABLE] = false;
// SNOW REALM ONLY
qid = 27;
global.quest[qid, QUEST_NAME] = "Covering Your Tracks";
global.quest[qid, QUEST_DESC] = "Snuff out the campfires in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Campfires Snuffed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 29;
global.quest[qid, QUEST_NAME] = "Ensuring Survival";
global.quest[qid, QUEST_DESC] = "Collect firewood and give them to the explorers that live in igloos in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Firewood Donated";
global.quest[qid, QUEST_ITEM_QUANTITY] = 2
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 30;
global.quest[qid, QUEST_NAME] = "In Loving Memory";
global.quest[qid, QUEST_DESC] = "Pay your respects to fallen " + global.castlename + " knights and magi in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Graves Visited";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 32;
global.quest[qid, QUEST_NAME] = "Gifts For Azural";
global.quest[qid, QUEST_DESC] = "Collect Ice Diamonds in this Realm to appease " + scr_GodName(GOD_WINTER, true) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Ice Diamonds";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 33;
global.quest[qid, QUEST_NAME] = "Crystal Mining";
global.quest[qid, QUEST_DESC] = "Collect Crystal nodes found in this Realm to bolster " + global.castlename + "'s economy.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Crystal Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
// NATURE REALM ONLY
qid = 34;
global.quest[qid, QUEST_NAME] = "Experimental Harvest";
global.quest[qid, QUEST_DESC] = "Pick the berries in this Realm to help " + global.castlename + "'s researchers learn more about this environment.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Berries Picked";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 35;
global.quest[qid, QUEST_NAME] = "Green is Good";
global.quest[qid, QUEST_DESC] = "Pick the large green mushrooms in this Realm to help " + global.castlename + "'s researchers learn more about this environment.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Mushrooms Picked";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 36;
global.quest[qid, QUEST_NAME] = "Spectrum Sampler";
global.quest[qid, QUEST_DESC] = "Pick the small, colorful mushrooms in this Realm to help " + global.castlename + "'s researchers learn more about this environment.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Mushrooms Picked";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 37;
global.quest[qid, QUEST_NAME] = "Natural Botanist";
global.quest[qid, QUEST_DESC] = "Collect Hyacinths in this Realm to help " + global.castlename + "'s researchers learn more about this environment.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Hyacinths";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 38;
global.quest[qid, QUEST_NAME] = "Unexpected Carnivores";
global.quest[qid, QUEST_DESC] = "Destroy the man-eating flytraps in this Realm to protect humanity.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Flytraps Destroyed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 39;
global.quest[qid, QUEST_NAME] = "Vile Plumes";
global.quest[qid, QUEST_DESC] = "Destroy the poisonous spore plumes in this Realm to protect humanity.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Spore Plumes Destroyed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 2
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 41;
global.quest[qid, QUEST_NAME] = "Purifying the Temple";
global.quest[qid, QUEST_DESC] = "Find a corrupted temple in this Realm and destroy its master.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Temple Cleansed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 1;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 42;
global.quest[qid, QUEST_NAME] = "Natural Cleansing";
global.quest[qid, QUEST_DESC] = "Find and cleanse the cursed obelisks in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Obelisks Cleansed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 43;
global.quest[qid, QUEST_NAME] = "Finders Keepers";
global.quest[qid, QUEST_DESC] = "Find piles of treasure to bolster " + global.castlename + "'s economy.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Treasure Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
// GRASSLAND REALM ONLY
qid = 44;
global.quest[qid, QUEST_NAME] = "Gift For Aeolian";
global.quest[qid, QUEST_DESC] = "Find and collect a golden feather to appease " + scr_GodName(GOD_GRASSLAND, true) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Golden Feather";
global.quest[qid, QUEST_ITEM_QUANTITY] = 1;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 45;
global.quest[qid, QUEST_NAME] = "Restoring Balance";
global.quest[qid, QUEST_DESC] = "Find and cleanse the corrupted totems in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Totems Cleansed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 46;
global.quest[qid, QUEST_NAME] = "Quenching Curiosity";
global.quest[qid, QUEST_DESC] = "Find sources of water in this Realm to aid " + global.castlename + "'s explorers.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Water Sources";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 47;
global.quest[qid, QUEST_NAME] = "Peace Offering";
global.quest[qid, QUEST_DESC] = "Collect logs and give them to the explorers that live in tents in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Supplies Donated";
global.quest[qid, QUEST_ITEM_QUANTITY] = 2
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 48;
global.quest[qid, QUEST_NAME] = "A Source of Power";
global.quest[qid, QUEST_DESC] = "Search the piles of gems in this Realm to find the shiniest one.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Shiny Gem Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
// DUNGEON REALMS ONLY
qid = 49;
global.quest[qid, QUEST_NAME] = "Savior of the Defenseless";
global.quest[qid, QUEST_DESC] = "Break innocent creatures out of the cages in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Creatures Freed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 50;
global.quest[qid, QUEST_NAME] = "Eternal Entrapment";
global.quest[qid, QUEST_DESC] = "Free the spirits trapped within torture devices found in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Spirits Freed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 51;
global.quest[qid, QUEST_NAME] = "Jailbreak";
global.quest[qid, QUEST_DESC] = "Open the iron maidens found in this Realm and defeat the enemies contained within them.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Enemies Defeated";
global.quest[qid, QUEST_ITEM_QUANTITY] = 2
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 52;
global.quest[qid, QUEST_NAME] = "Unscrupulous Scribbles";
global.quest[qid, QUEST_DESC] = "Find and study the parchments scattered around this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Parchment Studied";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
// DEATH REALMS ONLY
qid = 53;
global.quest[qid, QUEST_NAME] = "Granite Sweep";
global.quest[qid, QUEST_DESC] = "Collect Granite nodes found in this Realm to bolster " + global.castlename + "'s economy.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Granite Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 54;
global.quest[qid, QUEST_NAME] = "Death and Decay";
global.quest[qid, QUEST_DESC] = "Pick the mushrooms in this Realm to help " + global.castlename + "'s researchers learn more about this environment.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Mushrooms Picked";
global.quest[qid, QUEST_ITEM_QUANTITY] = 2
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 55;
global.quest[qid, QUEST_NAME] = "Lost, and Probably Forgotten";
global.quest[qid, QUEST_DESC] = "Pay your respects to fallen " + global.castlename + " knights and magi in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Graves Visited";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 56;
global.quest[qid, QUEST_NAME] = "Gifts For Erebyss";
global.quest[qid, QUEST_DESC] = "Find and collect kisses of death to appease " + scr_GodName(GOD_DEATH, true) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Kisses of Death";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 57;
global.quest[qid, QUEST_NAME] = "The Bone Collector";
global.quest[qid, QUEST_DESC] = "Find and collect skull piles to appease " + scr_GodName(GOD_DEATH, true) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Skull Piles";
global.quest[qid, QUEST_ITEM_QUANTITY] = 2
global.quest[qid, QUEST_REPEATABLE] = false;
// CHAOS REALM ONLY
qid = 58;
global.quest[qid, QUEST_NAME] = "Learn By Example";
global.quest[qid, QUEST_DESC] = "Collect creature skulls from this Realm to help teach your creatures the meaning of death.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Skulls Collected";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 59;
global.quest[qid, QUEST_NAME] = "Avatars of Spite";
global.quest[qid, QUEST_DESC] = "Destroy the demonic statues in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Statues Destroyed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 2
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 60;
global.quest[qid, QUEST_NAME] = "Greatest Greed";
global.quest[qid, QUEST_DESC] = "Collect resource nodes found in this Realm to bolster " + global.castlename + "'s economy.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Resource Nodes Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 61;
global.quest[qid, QUEST_NAME] = "Luck of the Draw";
global.quest[qid, QUEST_DESC] = "Collect Pandemonium Tokens in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Tokens Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 62;
global.quest[qid, QUEST_NAME] = "Slave to the Grind";
global.quest[qid, QUEST_DESC] = "Mine the stones found in this Realm to bolster " + global.castlename + "'s economy.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Resources Mined";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 64;
global.quest[qid, QUEST_NAME] = "Deviled Eggs";
global.quest[qid, QUEST_DESC] = "Steal eggs from the devil nests in this Realm to appease " + scr_GodName(GOD_CHAOS, true) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Devil Eggs";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3
global.quest[qid, QUEST_REPEATABLE] = false;
// LIFE REALM ONLY
qid = 65;
global.quest[qid, QUEST_NAME] = "Fallen Stars";
global.quest[qid, QUEST_DESC] = "Wish upon the stars in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Wishes";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 66;
global.quest[qid, QUEST_NAME] = "Gifts For Surathli";
global.quest[qid, QUEST_DESC] = "Collect fruit of life in this Realm to appease " + scr_GodName(GOD_LIFE, true) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Fruit of Life";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 67;
global.quest[qid, QUEST_NAME] = "To End the Rapture";
global.quest[qid, QUEST_DESC] = "Find and cleanse the corrupted obelisks in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Obelisks Cleansed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 69;
global.quest[qid, QUEST_NAME] = "Gathering the Essentials";
global.quest[qid, QUEST_DESC] = "Collect Essence nodes found in this Realm to bolster " + global.castlename + "'s economy.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Essence Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 70;
global.quest[qid, QUEST_NAME] = "True Self";
global.quest[qid, QUEST_DESC] = "Find and activate a mirrorball in this Realm to face your inner evil.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Mirrorball";
global.quest[qid, QUEST_ITEM_QUANTITY] = 1;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 71;
global.quest[qid, QUEST_NAME] = "Test of Righteousness";
global.quest[qid, QUEST_DESC] = "Find a holy portal in this Realm and destroy its master.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Portal Cleansed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 1;
global.quest[qid, QUEST_REPEATABLE] = false;
// UNDERWATER REALM ONLY
qid = 72;
global.quest[qid, QUEST_NAME] = "Conch Shell Peddling";
global.quest[qid, QUEST_DESC] = "Collect conch shells in this Realm to bolster " + global.castlename + "'s economy.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Shells Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 73;
global.quest[qid, QUEST_NAME] = "Spiral Shell Peddling";
global.quest[qid, QUEST_DESC] = "Collect spiral shells in this Realm to bolster " + global.castlename + "'s economy.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Shells Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 75;
global.quest[qid, QUEST_NAME] = "Don't Drop Them";
global.quest[qid, QUEST_DESC] = "Find doubloons in this Realm to bolster " + global.castlename + "'s economy.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Doubloons Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 76;
global.quest[qid, QUEST_NAME] = "Walking Where the Dead Ships Dwell";
global.quest[qid, QUEST_DESC] = "Investigate shipwrecks in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Shipwrecks Investigated";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 77;
global.quest[qid, QUEST_NAME] = "Eyes Wide Shut";
global.quest[qid, QUEST_DESC] = "Find and examine mysterious masks in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Masks Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 78;
global.quest[qid, QUEST_NAME] = "Friden's Bounty";
global.quest[qid, QUEST_DESC] = "Find a golden key and use it to unlock a giant treasure chest in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Chest Opened";
global.quest[qid, QUEST_ITEM_QUANTITY] = 1;
global.quest[qid, QUEST_REPEATABLE] = false;
// SPACE REALM ONLY
qid = 79;
global.quest[qid, QUEST_NAME] = "Celestial Equilibrium";
global.quest[qid, QUEST_DESC] = "Find the moon, sun, and arcane spheres in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Spheres Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 85;
global.quest[qid, QUEST_NAME] = "Not Even Stars Last Forever";
global.quest[qid, QUEST_DESC] = "Find lunar stars in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Stars Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = irandom_range(3, 4);
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 86;
global.quest[qid, QUEST_NAME] = "My Lucky Meteor";
global.quest[qid, QUEST_DESC] = "Find fallen meteors in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Meteors Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 87;
global.quest[qid, QUEST_NAME] = "Battle of Eternity's End";
global.quest[qid, QUEST_DESC] = "Find a corrupted rift in this Realm and destroy its master.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Rift Cleansed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 1;
global.quest[qid, QUEST_REPEATABLE] = false;
// JUNGLE REALMS ONLY
qid = 89;
global.quest[qid, QUEST_NAME] = "Fuel to the Fire";
global.quest[qid, QUEST_DESC] = "Settle the dispute between the tiki tribes in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Dispute Settled";
global.quest[qid, QUEST_ITEM_QUANTITY] = 1;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 90;
global.quest[qid, QUEST_NAME] = "Fury and Brimstone";
global.quest[qid, QUEST_DESC] = "Collect Brimstone nodes found in this Realm to bolster " + global.castlename + "'s economy.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Brimstone Collected";
global.quest[qid, QUEST_ITEM_QUANTITY] = irandom_range(3, 4);
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 91;
global.quest[qid, QUEST_NAME] = "Savor Each Bite";
global.quest[qid, QUEST_DESC] = "Collect ripe fruit in this Realm to feed " + global.castlename + "'s citizens.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Fruit Collected";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 93;
global.quest[qid, QUEST_NAME] = "Anger Personified";
global.quest[qid, QUEST_DESC] = "Find and defeat the angry spirits trapped within the totems of this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Totems Cleansed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
// ISLAND REALMS ONLY
qid = 94;
global.quest[qid, QUEST_NAME] = "Running an Endless Mile";
global.quest[qid, QUEST_DESC] = "Settle the dispute between the tiki tribes in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Dispute Settled";
global.quest[qid, QUEST_ITEM_QUANTITY] = 1;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 95;
global.quest[qid, QUEST_NAME] = "Sea Glass For All";
global.quest[qid, QUEST_DESC] = "Collect Crystal nodes found in this Realm to bolster " + global.castlename + "'s economy.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Crystal Collected";
global.quest[qid, QUEST_ITEM_QUANTITY] = irandom_range(3, 4);
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 97;
global.quest[qid, QUEST_NAME] = "From Another Universe";
global.quest[qid, QUEST_DESC] = "Collect sea pineapples in this Realm to bolster " + global.castlename + "'s economy.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Pineapples Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 98;
global.quest[qid, QUEST_NAME] = "Cast Away";
global.quest[qid, QUEST_DESC] = "Investigate shipwrecks in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Shipwrecks Investigated";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 99;
global.quest[qid, QUEST_NAME] = "Bad Juju";
global.quest[qid, QUEST_DESC] = "Make an offering to this Realm's temples to gain a better understanding of this environment.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Temples Visited";
global.quest[qid, QUEST_ITEM_QUANTITY] = 2
global.quest[qid, QUEST_REPEATABLE] = false;
// DESERT REALMS ONLY
qid = 100;
global.quest[qid, QUEST_NAME] = "Gift of the Ancients";
global.quest[qid, QUEST_DESC] = "Collect sacred relics in this Realm to appease " + scr_GodName(GOD_DESERT, true) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Sacred Relics";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 101;
global.quest[qid, QUEST_NAME] = "Miracle of the Mind";
global.quest[qid, QUEST_DESC] = "Investigate oases in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Oases Examined";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 102;
global.quest[qid, QUEST_NAME] = "A Surprising Find";
global.quest[qid, QUEST_DESC] = "Collect desert flowers in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Desert Flowers";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 103;
global.quest[qid, QUEST_NAME] = "A Peace Offering";
global.quest[qid, QUEST_DESC] = "Collect wood and give it to the explorers that live in tents in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Wood Donated";
global.quest[qid, QUEST_ITEM_QUANTITY] = 2
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 104;
global.quest[qid, QUEST_NAME] = "Wormhole";
global.quest[qid, QUEST_DESC] = "Find a quicksand portal in this Realm and destroy its master.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Portal Cleansed";
global.quest[qid, QUEST_ITEM_QUANTITY] = 1;
global.quest[qid, QUEST_REPEATABLE] = false;
// CAVE REALMS ONLY
qid = 105;
global.quest[qid, QUEST_NAME] = "End of Innocence";
global.quest[qid, QUEST_DESC] = "Collect baby spiderlings in this Realm to appease " + scr_GodName(GOD_CAVE, true) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Spiderlings";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 106;
global.quest[qid, QUEST_NAME] = "Uncertain Aid";
global.quest[qid, QUEST_DESC] = "Rescue the prey that is trapped in spider webs in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Prey Rescued";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 107;
global.quest[qid, QUEST_NAME] = "Gifts For Regalis";
global.quest[qid, QUEST_DESC] = "Collect spider eggs in this Realm to appease " + scr_GodName(GOD_CAVE, true) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Spider Eggs";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 108;
global.quest[qid, QUEST_NAME] = "Precious Resources";
global.quest[qid, QUEST_DESC] = "Collect Essence nodes found in this Realm to bolster " + global.castlename + "'s economy.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Essence Collected";
global.quest[qid, QUEST_ITEM_QUANTITY] = irandom_range(3, 4);
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 109;
global.quest[qid, QUEST_NAME] = "Autopsy Time";
global.quest[qid, QUEST_DESC] = "Examine web-encased skulls in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Skulls Examined";
global.quest[qid, QUEST_ITEM_QUANTITY] = irandom_range(3, 5);
global.quest[qid, QUEST_REPEATABLE] = false;
// HAUNTED REALMS ONLY
qid = 110;
global.quest[qid, QUEST_NAME] = "Throw Down the Gauntlet";
global.quest[qid, QUEST_DESC] = "Slay hostile knights in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Knights Slain";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 111;
global.quest[qid, QUEST_NAME] = "Studies of Days Gone By";
global.quest[qid, QUEST_DESC] = "Obtain intact tomes from the bookshelves in this Realm to bolster " + global.castlename + "'s library.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Tomes Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 5
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 112;
global.quest[qid, QUEST_NAME] = "Preparation";
global.quest[qid, QUEST_DESC] = "Obtain medicinal potions from this Realm to bolster " + global.castlename + "'s emergency stockpile.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Potions Found";
global.quest[qid, QUEST_ITEM_QUANTITY] = 3
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 40;
global.quest[qid, QUEST_NAME] = "Dark Souls";
global.quest[qid, QUEST_DESC] = "Find and examine blood stains in this Realm to find out the cause of their owner's death.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "Blood Stains Examined";
global.quest[qid, QUEST_ITEM_QUANTITY] = 2
global.quest[qid, QUEST_REPEATABLE] = false;
// TUTORIAL QUESTS
qid = 114;
global.quest[qid, QUEST_NAME] = "Where Do Creatures Come From?";
global.quest[qid, QUEST_DESC] = "Use the 'Extract' command on a creature in battle to receive its Core.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 115;
global.quest[qid, QUEST_NAME] = "Pleased to Meet You... Again";
global.quest[qid, QUEST_DESC] = "Seek out the Altar of " + scr_GodName(scr_BiomeGod(global.biome), false) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 116;
global.quest[qid, QUEST_NAME] = "A Proper Introduction";
global.quest[qid, QUEST_DESC] = "Speak with the Blacksmith in " + global.castlename + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_CASTLEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 117;
global.quest[qid, QUEST_NAME] = "Clang, Clang, Clang";
global.quest[qid, QUEST_DESC] = "Use the Blacksmith to 'Craft' or 'Forge' a new Artifact.";
global.quest[qid, QUEST_TYPE] = QTYPE_CASTLEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 228;
global.quest[qid, QUEST_NAME] = "A Triumphant Return";
global.quest[qid, QUEST_DESC] = "Return to " + global.castlename + " and speak with Ilberd.";
global.quest[qid, QUEST_TYPE] = QTYPE_CASTLEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 229;
global.quest[qid, QUEST_NAME] = "Break It Down";
global.quest[qid, QUEST_DESC] = "Find the source of the girly screams.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 230;
global.quest[qid, QUEST_NAME] = "Questions Left Unanswered";
global.quest[qid, QUEST_DESC] = "Return to " + global.castlename + " and speak with Ilberd.";
global.quest[qid, QUEST_TYPE] = QTYPE_CASTLEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 231;
global.quest[qid, QUEST_NAME] = "Enchanted to Meet You";
global.quest[qid, QUEST_DESC] = "Find and speak with the Enchanter somewhere in this Realm.";
global.quest[qid, QUEST_TYPE] = QTYPE_REALMQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
// GOD QUESTS
qid = 118;
global.quest[qid, QUEST_NAME] = "The Itherian World";
global.quest[qid, QUEST_DESC] = "Speak with Desiderata in " + global.castlename + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_SIDEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 119;
global.quest[qid, QUEST_NAME] = scr_GodLevelWord(2) + " by " + scr_GodName(GOD_CAVE, false);
global.quest[qid, QUEST_DESC] = "Visit the altar of " + scr_GodName(GOD_CAVE, false) + " in " + scr_BiomeName(scr_GodBiome(GOD_CAVE)) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_SIDEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 120;
global.quest[qid, QUEST_NAME] = scr_GodLevelWord(3) + " by " + scr_GodName(GOD_CAVE, false);
global.quest[qid, QUEST_DESC] = "Visit the altar of " + scr_GodName(GOD_CAVE, false) + " in " + scr_BiomeName(scr_GodBiome(GOD_CAVE)) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_SIDEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 121;
global.quest[qid, QUEST_NAME] = scr_GodLevelWord(4) + " by " + scr_GodName(GOD_CAVE, false);
global.quest[qid, QUEST_DESC] = "Visit the altar of " + scr_GodName(GOD_CAVE, false) + " in " + scr_BiomeName(scr_GodBiome(GOD_CAVE)) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_SIDEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 122;
global.quest[qid, QUEST_NAME] = scr_GodLevelWord(5) + " by " + scr_GodName(GOD_CAVE, false);
global.quest[qid, QUEST_DESC] = "Visit the altar of " + scr_GodName(GOD_CAVE, false) + " in " + scr_BiomeName(scr_GodBiome(GOD_CAVE)) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_SIDEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 123;
global.quest[qid, QUEST_NAME] = scr_GodLevelWord(1) + " by " + scr_GodName(GOD_CHAOS, false);
global.quest[qid, QUEST_DESC] = "Visit the altar of " + scr_GodName(GOD_CHAOS, false) + " in " + scr_BiomeName(scr_GodBiome(GOD_CHAOS)) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_SIDEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 124;
global.quest[qid, QUEST_NAME] = scr_GodLevelWord(2) + " by " + scr_GodName(GOD_CHAOS, false);
global.quest[qid, QUEST_DESC] = "Visit the altar of " + scr_GodName(GOD_CHAOS, false) + " in " + scr_BiomeName(scr_GodBiome(GOD_CHAOS)) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_SIDEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 125;
global.quest[qid, QUEST_NAME] = scr_GodLevelWord(3) + " by " + scr_GodName(GOD_CHAOS, false);
global.quest[qid, QUEST_DESC] = "Visit the altar of " + scr_GodName(GOD_CHAOS, false) + " in " + scr_BiomeName(scr_GodBiome(GOD_CHAOS)) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_SIDEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 126;
global.quest[qid, QUEST_NAME] = scr_GodLevelWord(4) + " by " + scr_GodName(GOD_CHAOS, false);
global.quest[qid, QUEST_DESC] = "Visit the altar of " + scr_GodName(GOD_CHAOS, false) + " in " + scr_BiomeName(scr_GodBiome(GOD_CHAOS)) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_SIDEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 127;
global.quest[qid, QUEST_NAME] = scr_GodLevelWord(5) + " by " + scr_GodName(GOD_CHAOS, false);
global.quest[qid, QUEST_DESC] = "Visit the altar of " + scr_GodName(GOD_CHAOS, false) + " in " + scr_BiomeName(scr_GodBiome(GOD_CHAOS)) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_SIDEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 128;
global.quest[qid, QUEST_NAME] = scr_GodLevelWord(1) + " by " + scr_GodName(GOD_DEATH, false);
global.quest[qid, QUEST_DESC] = "Visit the altar of " + scr_GodName(GOD_DEATH, false) + " in " + scr_BiomeName(scr_GodBiome(GOD_DEATH)) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_SIDEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 129;
global.quest[qid, QUEST_NAME] = scr_GodLevelWord(2) + " by " + scr_GodName(GOD_DEATH, false);
global.quest[qid, QUEST_DESC] = "Visit the altar of " + scr_GodName(GOD_DEATH, false) + " in " + scr_BiomeName(scr_GodBiome(GOD_DEATH)) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_SIDEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 130;
global.quest[qid, QUEST_NAME] = scr_GodLevelWord(3) + " by " + scr_GodName(GOD_DEATH, false);
global.quest[qid, QUEST_DESC] = "Visit the altar of " + scr_GodName(GOD_DEATH, false) + " in " + scr_BiomeName(scr_GodBiome(GOD_DEATH)) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_SIDEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 131;
global.quest[qid, QUEST_NAME] = scr_GodLevelWord(4) + " by " + scr_GodName(GOD_DEATH, false);
global.quest[qid, QUEST_DESC] = "Visit the altar of " + scr_GodName(GOD_DEATH, false) + " in " + scr_BiomeName(scr_GodBiome(GOD_DEATH)) + ".";
global.quest[qid, QUEST_TYPE] = QTYPE_SIDEQUEST;
global.quest[qid, QUEST_ITEM_NEEDED] = "";
global.quest[qid, QUEST_ITEM_QUANTITY] = 0;
global.quest[qid, QUEST_REPEATABLE] = false;
qid = 132;
global.quest[qid, QUEST_NAME] = scr_GodLevelWord(5) + " by " + scr_GodName(GOD_DEATH, false);