summaryrefslogtreecommitdiff
path: root/quests.xml
blob: 744c355e2c4f3c686de09e43caeccb8d5923e4c2 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
<?xml version="1.0" encoding="utf-8"?>
<!-- Authors: 4144, Alige, Hal9000, Reid
Copyright (C) 2012-2013 Evol Online -->

<quests>
    <var id="0">
        <effect map="000-2-0.tmx" npc="404" value="0,1" effect="12"/>
        <quest name="Abide by the Rules" group="Ship" incomplete="1">
            <name>Abide by the Rules</name>
            <text>Before resuming your adventure and exploration, you need to register on the boarding list of the ship by signing its rules.</text>
            <text></text>
            <text>Speak to Julia, the keeper of this ship. She is waiting for you on the first deck.</text>
            <text></text>
            <questgiver>Julia</questgiver>
            <coordinates x="27" y="24">La Johanne, First Deck. (27,24)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Abide by the Rules" group="Ship" complete="2">
            <name>Abide by the Rules</name>
            <text>Julia told you about all the rules you have to follow during your adventure so that you behave properly with other people.</text>
            <text></text>
            <text>Keep them in mind, but if you think you need to hear them again, just talk to Julia.</text>
            <text></text>
            <questgiver>Julia</questgiver>
            <coordinates x="27" y="24">La Johanne, First Deck. (27,24)</coordinates>
            <reward>Nothing.</reward>
        </quest>
    </var>
    <var id="1">
        <effect map="000-2-1.tmx" npc="407" value="0" effect="12"/>
        <effect map="000-2-1.tmx" npc="407" value="1,2" effect="13"/>
        <quest name="Warm Smelly Clothes" group="Ship" incomplete="0">
            <name>Warm Smelly Clothes</name>
            <text>Magic Arpan is waiting for you. Go speak to him.</text>
            <text></text>
            <text>To speak to an NPC, click on it with your mouse or select it using the N key and then chat using the T key.</text>
            <text></text>
            <questgiver>Magic Arpan</questgiver>
            <coordinates x="39" y="33">La Johanne, Second Deck. (39,33)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Warm Smelly Clothes" group="Ship" incomplete="1">
            <name>Warm Smelly Clothes</name>
            <text>You need to open the chest and take the clothes from it.</text>
            <text></text>
            <text>To perform this action, click on the chest with your mouse or select it with the N key and then interact with it using the T key.</text>
            <text></text>
            <questgiver>Magic Arpan</questgiver>
            <coordinates x="41" y="37">La Johanne, Second Deck. (41,37)</coordinates>
            <reward>Smelly sailor clothes.</reward>
        </quest>
        <quest name="Warm Smelly Clothes" group="Ship" incomplete="2">
            <name>Warm Smelly Clothes</name>
            <text>To open your inventory, use the F3 key or use your mouse to select it in the above menu in your client.</text>
            <text></text>
            <text>When your inventory is open, you can equip an item by selecting it and clicking 'Equip'. You can do the same to remove an item by clicking on 'Unequip'.</text>
            <text></text>
            <text>Items have different effects. Some will heal you, some can be used as weapons or armor and some can be sold for gold.</text>
            <text></text>
            <questgiver>Magic Arpan</questgiver>
            <coordinates x="39" y="33">La Johanne, Second Deck. (39,33)</coordinates>
            <reward>Smelly sailor clothes.</reward>
        </quest>
        <quest name="Warm Smelly Clothes" group="Ship" complete="3">
            <name>Warm Smelly Clothes</name>
            <text>You wore the clothes you found in the chest that Magic Arpan showed you.</text>
            <text></text>
            <text>They are old and a bit smelly but the warm sensation they give makes you feel at home.</text>
            <text></text>
            <questgiver>Magic Arpan</questgiver>
            <coordinates x="39" y="33">La Johanne, Second Deck. (39,33)</coordinates>
            <reward text1="[Creased Shirt]" text2="[Creased Shorts]">A {@@1} and old {@@2}.</reward>
        </quest>
    </var>
    <var id="2">
        <effect map="000-2-1.tmx" npc="401" value="0,1" effect="14"/>
        <effect map="000-2-1.tmx" npc="401" value="2" effect="15"/>
        <quest name="Piberries Lover" group="Ship" incomplete="1">
            <name>Piberries Lover</name>
            <text>A mysterious stowaway needs your help. He hides at the bottom level of the ship, in the storage room.</text>
            <text></text>
            <text>It seems to be an urgent task, but he is afraid that you could be a sailor, so watch out!</text>
            <text></text>
            <questgiver>Alige</questgiver>
            <coordinates x="33" y="31">La Johanne, Second Deck. (33,31)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Piberries Lover" group="Ship" incomplete="2">
            <name>Piberries Lover</name>
            <text>Alige, the mysterious traveller, is asking for your help to find him some food.</text>
            <text></text>
            <text text1="[Piberries]">In fact, he hides in a hole in the main hallway. It leads to the ship's storage room where he can reach for some barrels full of {@@1}.</text>
            <text></text>
            <text>He is sick of eating these berries all the time. That is why he would like you to find him other kinds of food and bring them to him.</text>
            <text></text>
            <questgiver>Alige</questgiver>
            <coordinates x="33" y="31">La Johanne, Second Deck. (33,31)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Piberries Lover" group="Ship" complete="3">
            <name>Piberries Lover</name>
            <text text1="[Piberries]">You brought Alige some food, different from the {@@1} he usually eats.</text>
            <text></text>
            <text>It looks like he is eager of tasting new flavors. Try bringing him other types of food. He may have something to give you in exchange.</text>
            <text></text>
            <questgiver>Alige</questgiver>
            <coordinates x="33" y="31">La Johanne, Second Deck. (33,31)</coordinates>
            <reward text1="[Piberries]">A handful of {@@1}.</reward>
        </quest>
    </var>
    <var id="3">
        <effect map="000-2-1.tmx" npc="403" value="0,6" effect="12"/>
        <effect map="000-2-1.tmx" npc="403" value="1,2,4" effect="13"/>
        <quest name="Ratto Extermination" group="Ship" incomplete="6">
            <name>Ratto Extermination</name>
            <text>Peter needs your help to clear La Johanne's hold of some rattos.</text>
            <text></text>
            <text>Speak to him when you will have time to help him.</text>
            <text></text>
            <questgiver>Peter</questgiver>
            <coordinates x="60" y="35">La Johanne, Second Deck. (60,35)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Ratto Extermination" group="Ship" incomplete="1">
            <name>Ratto Extermination</name>
            <text>Peter asked you to empty the bottom of the ship for free.</text>
            <text></text>
            <text>Maybe next time he will have something to offer you...</text>
            <text></text>
            <questgiver>Peter</questgiver>
            <coordinates x="60" y="35">La Johanne, Second Deck. (60,35)</coordinates>
            <reward>Nothing.</reward>
        </quest>
        <quest name="Ratto Extermination" group="Ship" incomplete="2">
            <name>Ratto Extermination</name>
            <text>Cleaning the bottom of the ship is a tough work, but Peter is offering you some gold for it.</text>
            <text></text>
            <questgiver>Peter</questgiver>
            <coordinates x="60" y="35">La Johanne, Second Deck. (60,35)</coordinates>
            <reward>100 EXP, 1000 E.</reward>
        </quest>
        <quest name="Ratto Extermination" group="Ship" complete="3">
            <name>Ratto Extermination</name>
            <text>You helped Peter cleaning the bottom of the ship for free.</text>
            <text></text>
            <text>However, it looks like these rattos can come back again. Later, you could ask Peter if he needs your help again.</text>
            <text></text>
            <questgiver>Peter</questgiver>
            <coordinates x="60" y="35">La Johanne, Second Deck. (60,35)</coordinates>
            <reward>Nothing.</reward>
        </quest>
        <quest name="Ratto Extermination" group="Ship" complete="5">
            <name>Ratto Extermination</name>
            <text>You helped Peter cleaning the bottom of the ship. He rewarded you with some gold.</text>
            <text></text>
            <text>However, it looks like these rattos can come back again. Later, you could ask Peter if he needs your help again.</text>
            <text></text>
            <questgiver>Peter</questgiver>
            <coordinates x="60" y="35">La Johanne, Second Deck. (60,35)</coordinates>
            <reward>100 EXP, 1000 E.</reward>
        </quest>
        <quest name="Ratto Extermination" group="Ship" incomplete="4">
            <name>Ratto Extermination</name>
            <text>This time, Peter seems to have a reward for you. After you cleaned the bottom of the ship, ask him for a reward.</text>
            <text></text>
            <questgiver>Peter</questgiver>
            <coordinates x="60" y="35">La Johanne, Second Deck. (60,35)</coordinates>
            <reward>100 EXP, 1000 E.</reward>
        </quest>
    </var>
    <var id="4">
        <effect map="000-2-3.tmx" npc="406" value="0,2" effect="12"/>
        <effect map="000-2-3.tmx" npc="406" value="1,3" effect="13"/>
        <effect map="000-2-3.tmx" npc="102" value="4" effect="15"/>
        <effect map="000-2-0.tmx" npc="404" value="3" effect="13"/>
        <effect map="000-2-1.tmx" npc="418" value="3" effect="13"/>
        <effect map="000-2-1.tmx" npc="407" value="5" effect="12"/>
        <effect map="000-2-1.tmx" npc="910" value="5" effect="12"/>
        <quest name="One of Us" group="Ship" incomplete="1">
            <name>One of Us</name>
            <text>Nard, the captain of the ship, asked you to help his crew on the island outside the ship.</text>
            <text></text>
            <text>Gugli, one of his sailors, is waiting for you on the shore to tell you about the task.</text>
            <text></text>
            <questgiver>Nard</questgiver>
            <coordinates x="25" y="26">La Johanne, Nard's Room. (25,26)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="One of Us" group="Ship" incomplete="2">
            <name>One of Us</name>
            <text>You reported to Nard that you successfully accomplished Gugli's task.</text>
            <text></text>
            <text>As a perfect sailor, you are waiting for the next order, eagerly.</text>
            <text></text>
            <questgiver>Nard</questgiver>
            <coordinates x="25" y="26">La Johanne, Nard's Room. (25,26)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="One of Us" group="Ship" incomplete="3">
            <name>One of Us</name>
            <text>Captain Nard has another task for you. It seems he did a mistake in the past, choosing the right lieutenant for this ship.</text>
            <text></text>
            <text>Chef Gado, the former shipkeeper, may have something to say about that. So does Julia, the current lieutenant of the ship.</text>
            <text></text>
            <questgiver>Nard</questgiver>
            <coordinates x="25" y="26">La Johanne, Nard's Room. (25,26)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="One of Us" group="Ship" incomplete="4">
            <name>One of Us</name>
            <text>You smartly solved the lieutenants' conflict onboard. Nard is proud of his new sailor.</text>
            <text></text>
            <text>Take your reward from the box near the captain in order to officially become one of Nard's crew members.</text>
            <text></text>
            <questgiver>Nard</questgiver>
            <coordinates x="25" y="24">La Johanne, Nard's Room. (25,24)</coordinates>
            <reward text1="[Bandana]">50 EXP, {@@1}.</reward>
        </quest>
        <quest name="One of Us" group="Ship" complete="5">
            <name>One of Us</name>
            <text>Nard officially proclaimed you as member of his crew!</text>
            <text></text>
            <questgiver>Nard</questgiver>
            <coordinates x="25" y="24">La Johanne, Nard's Room. (25,24)</coordinates>
            <reward text1="[Bandana]">50 EXP, {@@1}.</reward>
        </quest>
    </var>
    <var id="5">
        <effect map="000-2-1.tmx" npc="100" value="0" effect="14"/>
        <quest name="Chef's Secret Blade" group="Ship" complete="1">
            <name>Chef's Secret Blade</name>
            <text>You found a sharp knife on a table in one of the rooms of the ship.</text>
            <text></text>
            <text>It looks like its previous owner used it to prepare delicious dishes for the crew.</text>
            <text></text>
            <coordinates x="50" y="24">La Johanne, Second Deck. (50,24)</coordinates>
            <reward text1="[Knife]">{@@1}.</reward>
        </quest>
    </var>
    <var id="8">
        <effect map="000-1.tmx" npc="111" value="0" effect="12"/>
        <effect map="000-1.tmx" npc="413" value="1" effect="13"/>
        <quest name="Fish and Scams" group="Ship" incomplete="1">
            <name>Fish and Scams</name>
            <text>A sailor, who wasn't on Gugli's list, gave you a box full of food.</text>
            <text></text>
            <text>He did not mention any reward, but he would like you to deliver it to Gugli as soon as you can.</text>
            <text></text>
            <questgiver>Couwan</questgiver>
            <coordinates x="85" y="108">Drasil Island. (85,108)</coordinates>
            <reward>Reward: Unknown.</reward>
         </quest>
         <quest name="Fish and Scams" group="Ship" complete="2">
            <name>Fish and Scams</name>
            <text>Couwan is an awful, roguish person. No reward from him...</text>
            <text></text>
            <text>However, Gugli gave you some gold pieces and apologized for this unexpected task.</text>
            <text></text>
            <text>He also warned you not to trust anyone.</text>
            <text></text>
            <questgiver>Couwan</questgiver>
            <coordinates x="89" y="36">Drasil Island. (89,36)</coordinates>
            <reward>8 EXP, 10 E.</reward>
        </quest>
    </var>
    <var id="9">
        <effect map="000-1.tmx" npc="416" value="0" effect="14"/>
        <quest name="Treasure's Glint" group="Ship" complete="1">
            <name>Treasure's Glint</name>
            <text>You spotted a treasure chest at the top of a cliff on the east side of the island.</text>
            <text></text>
            <text text1="[Old Book]">The chest contains gold and an {@@1}.</text>
            <text></text>
            <coordinates x="83" y="70">Drasil Island. (83,70)</coordinates>
            <reward text1="[Old Book]">100 E, {@@1}.</reward>
        </quest>
    </var>
    <var id="10">
        <effect map="000-1.tmx" npc="105" value="0" effect="13"/>
    </var>
    <var id="11">
        <effect map="000-1.tmx" npc="107" value="0" effect="13"/>
    </var>
    <var id="12">
        <effect map="000-1.tmx" npc="113" value="0" effect="13"/>
    </var>
    <var id="13">
        <effect map="000-1.tmx" npc="112" value="0" effect="13"/>
    </var>
    <var id="14">
        <effect map="000-1.tmx" npc="104" value="0" effect="13"/>
    </var>
    <var id="15">
        <effect map="000-1.tmx" npc="110" value="0" effect="13"/>
    </var>
    <var id="16">
        <effect map="000-1.tmx" npc="413" value="0" effect="12"/>
        <effect map="000-1.tmx" npc="413" value="1" effect="13"/>
        <quest name="Unexpected Help" group="Ship" incomplete="1">
            <name>Unexpected Help</name>
            <text text1="[Croconut]" text2="[Aquada]" text3="[Plushroom]">Gugli told you about the sailors' task on the island. He wants you to help some of them bringing him 6 boxes full of {@@1}, {@@2} and {@@3}.</text>
            <text></text>
            <text>You need to collect the boxes from Tibbo, Gulukan, Q'Muller, Astapolos, Jalad and Ale.</text>
            <text></text>
            <text>Max, Silvio and Lean may have some information about where to find these sailors.</text>
            <text></text>
            <questgiver>Gugli</questgiver>
            <coordinates x="85" y="108">Drasil Island. (85,108)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Unexpected Help" group="Ship" complete="2">
            <name>Unexpected Help</name>
            <text>You completed all the tasks Gugli gave you. Sailors of the ship will never forget you!</text>
            <text></text>
            <questgiver>Gugli</questgiver>
            <coordinates x="85" y="108">Drasil Island. (85,108)</coordinates>
            <reward>40 EXP, 250 E.</reward>
        </quest>
    </var>
    <var id="17">
        <effect map="000-1.tmx" npc="404" value="1,3" effect="13"/>
        <effect map="000-1.tmx" npc="418" value="2" effect="13"/>
        <quest name="Two Lieutenants in One Boat" group="Ship" incomplete="1">
            <name>Two Lieutenants in One Boat</name>
            <text text1="[Piou Legs]" text2="[Half Croconut]" text3="[Aquada]" text4="[Sea Drops]" text5="[Poisoned Dish]">Chef Gado wants you to collect 2 {@@1}, 2 {@@2}, 1 {@@3} and 1 {@@4} to prepare a {@@5}, for Julia.</text>
            <text></text>
            <questgiver>Chef Gado</questgiver>
            <coordinates x="17" y="28">La Johanne, Second Deck. (17,28)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Two Lieutenants in One Boat" group="Ship" incomplete="2">
            <name>Two Lieutenants in One Boat</name>
            <text text1="[Poisoned Dish]">Chef Gado prepared the {@@1}. He would like you to give it to Julia.</text>
            <text></text>
            <text>While Chef Gado wants you to poison Julia, you remember she looked after you when you were sick. She doesn't deserve to be punished... or does she?</text>
            <text></text>
            <questgiver>Chef Gado</questgiver>
            <coordinates x="17" y="28">La Johanne, Second Deck. (17,28)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Two Lieutenants in One Boat" group="Ship" incomplete="3">
            <name>Two Lieutenants in One Boat</name>
            <text>Go back and talk to Gado. He probably has a reward for you.</text>
            <text></text>
            <questgiver>Chef Gado</questgiver>
            <coordinates x="17" y="28">La Johanne, Second Deck. (17,28)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Two Lieutenants in One Boat" group="Ship" complete="4">
            <name>Two Lieutenants in One Boat</name>
            <text>You successfully poisoned Julia. Chef Gado finally had his revenge!</text>
            <text></text>
            <questgiver>Chef Gado</questgiver>
            <coordinates x="17" y="28">La Johanne, Second Deck. (17,28)</coordinates>
            <reward text1="[Bread]">15 EXP, 200 E, {@@1}.</reward>
        </quest>
        <quest name="Two Lieutenants in One Boat" group="Ship" complete="5">
            <name>Two Lieutenants in One Boat</name>
            <text>You refused to accomplish Chef Gado's evil plan. Julia is now safe.</text>
            <text></text>
            <questgiver>Chef Gado</questgiver>
            <coordinates x="17" y="28">La Johanne, Second Deck. (17,28)</coordinates>
            <reward>15 EXP, 200 E.</reward>
        </quest>
        <quest name="Two Lieutenants in One Boat" group="Ship" complete="6">
            <name>Two Lieutenants in One Boat</name>
            <text>You preferred trusting Julia because, after all, she deserves to be the lieutenant of the ship.</text>
            <text></text>
            <questgiver>Chef Gado</questgiver>
            <coordinates x="17" y="28">La Johanne, Second Deck. (17,28)</coordinates>
            <reward>8 EXP, 100 E.</reward>
        </quest>
    </var>
    <var id="19">
        <effect map="001-1.tmx" npc="123" value="0" effect="12"/>
        <effect map="001-1.tmx" npc="123" value="1,3" effect="13"/>
        <effect map="001-1.tmx" npc="911" value="1" effect="22"/>
        <quest name="The Lazy Brother" group="Artis" incomplete="1">
            <name>The Lazy Brother</name>
            <text>Katja wants you to find her brother.</text>
            <text>He is hiding somewhere on the hill, not far from here.</text>
            <text>You should probably go and check behind trees, they are great for hiding.</text>
            <text></text>
            <questgiver>Katja</questgiver>
            <coordinates x="164" y="44">Artis. (164,44)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="The Lazy Brother" group="Artis" complete="2">
            <name>The Lazy Brother</name>
            <text>You found Bobo.</text>
            <text>Apparently he's hanging out here all day, because he doesn't want to do his homework.</text>
            <text>You decided to let him do so in exchange for a small reward.</text>
            <text></text>
            <questgiver>Katja</questgiver>
            <coordinates x="164" y="44">Artis. (164,44)</coordinates>
            <reward>100 E.</reward>
        </quest>
        <quest name="The Lazy Brother" group="Artis" incomplete="3">
            <name>The Lazy Brother</name>
            <text>You found Bobo.</text>
            <text>Apparently he's hanging out here all day, because he doesn't want to do his homework.</text>
            <text>You can not allow this. Therefore you told him to go home.</text>
            <text>You should go tell Katja about it.</text>
            <text></text>
            <questgiver>Katja</questgiver>
            <coordinates x="164" y="44">Artis. (164,44)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="The Lazy Brother" group="Artis" complete="4">
            <name>The Lazy Brother</name>
            <text>You found Bobo. He promised to go home soon.</text>
            <text text1="[Aquada]">His sister was very happy and gave you an {@@1} as a reward.</text>
            <text></text>
            <questgiver>Katja</questgiver>
            <coordinates x="164" y="44">Artis. (164,44)</coordinates>
            <reward text1="[Aquada]">An {@@1}.</reward>
        </quest>
    </var>
    <var id="20">
        <effect map="001-1.tmx" npc="427" value="0" effect="12"/>
        <effect map="001-1.tmx" npc="427" value="1" effect="13"/>
        <quest name="Moon and the Urchin" group="Artis" incomplete="1">
            <name>Moon and the Urchin</name>
            <text>Moon, the elven girl, accidently stepped on an urchin.</text>
            <text text1="[Croc Claw]">She wants you to bring her {@@1}s to get rid of spikes.</text>
            <text></text>
            <questgiver>Moon</questgiver>
            <coordinates x="70" y="78">Artis, Moon's House. (70,78)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Moon and the Urchin" group="Artis" complete="2">
            <name>Moon and the Urchin</name>
            <text>You helped Moon to get rid of urchin spikes from her foot.</text>
            <text></text>
            <questgiver>Moon</questgiver>
            <coordinates x="70" y="78">Artis, Moon's House. (70,78)</coordinates>
            <reward>1500 EXP.</reward>
        </quest>
    </var>
    <var id="21">
        <effect map="001-1.tmx" npc="125" value="0" effect="12"/>
        <effect map="001-1.tmx" npc="125" value="1" effect="13"/>
        <quest name="Catch the Piou" group="Artis" incomplete="1">
            <name>Catch the Piou</name>
            <text>Salem, the trader from Artis Market, needs your help.</text>
            <text>A piou escaped from him, and he wants you to catch it.</text>
            <text>The piou is flying around the town, not far from the market.</text>
            <text>When you catch it, hurry back to Salem.</text>
            <text></text>
            <questgiver>Salem</questgiver>
            <coordinates x="57" y="118">Artis, Market. (57,118)</coordinates>
            <reward>90% discount on piou.</reward>
        </quest>
        <quest name="Catch the Piou" group="Artis" complete="2">
            <name>Catch the Piou</name>
            <text>You successfully returned the piou to the trader.</text>
            <text></text>
            <questgiver>Salem</questgiver>
            <coordinates x="57" y="118">Artis, Market. (57,118)</coordinates>
            <reward>90% discount on piou.</reward>
        </quest>
    </var>
    <var id="22">
        <effect map="001-1.tmx" npc="428" value="0" effect="14"/>
        <effect map="001-1.tmx" npc="428" value="1" effect="15"/>
        <quest name="Fishman" group="Artis" incomplete="1">
            <name>Fishman</name>
            <text>Eugene, the fishman in Artis docks, bought a new fishing rod.</text>
            <text>He hurried so much to try it out, that he forgot to take enough baits.</text>
            <text text1="[Small Tentacles]">You need to bring him 10 {@@1}.</text>
            <text></text>
            <questgiver>Eugene</questgiver>
            <coordinates x="113" y="120">Artis, Docks. (113,120)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Fishman" group="Artis" complete="2">
            <name>Fishman</name>
            <text>You helped Eugene.</text>
            <text>As his gratitude, he gave you his old fishing rod.</text>
            <text>You can use it to catch fish.</text>
            <text></text>
            <questgiver>Eugene</questgiver>
            <coordinates x="113" y="120">Artis, Docks. (113,120)</coordinates>
            <reward text1="[Fishing Rod]">{@@1}.</reward>
        </quest>
    </var>
    <var id="23">
        <effect map="001-1.tmx" npc="426" value="0" effect="12"/>
        <effect map="001-1.tmx" npc="426" value="1" effect="13"/>
        <effect map="001-1.tmx" npc="426" value="2" effect="13"/>
            <quest name="The Buried Treasure" group="Artis" incomplete="1">
            <name>The Buried Treasure</name>
            <text>Q'Onan, the orc sailor from Nard's crew, used to be a thief.</text>
            <text>His last "business" involved robbing a nobleman. But he didn't succeed completely, he had to bury the chest full of coins to save himself.</text>
            <text>He only knows an approximate location of the chest on Artis Hill ({@@var2}, {@@var3}), so you'll have to do a little digging to find the chest.</text>
            <text></text>
            <questgiver>Q'Onan</questgiver>
            <coordinates x="186" y="107">Artis, La Johanne. (186,107)</coordinates>
            <reward>2000 E.</reward>
        </quest>
        <quest name="The Buried Treasure" group="Artis" incomplete="2">
            <name>The Buried Treasure</name>
            <text>After a lot of digging, you found the treasure chest.</text>
            <text>It's locked, and Q'Onan has the only key. So you'll have to deliver it to him.</text>
            <text></text>
            <questgiver>Q'Onan</questgiver>
            <coordinates x="186" y="107">Artis, La Johanne. (186,107)</coordinates>
            <reward>2000 E.</reward>
        </quest>
        <quest name="The Buried Treasure" group="Artis" complete="3">
            <name>The Buried Treasure</name>
            <text>Q'Onan kept his promise, and gave you your share of the deal.</text>
            <text>He said that he finally can pay back his debts.</text>
            <text></text>
            <questgiver>Q'Onan</questgiver>
            <coordinates x="186" y="107">Artis, La Johanne. (186,107)</coordinates>
            <reward>1800 E.</reward>
        </quest>
    </var>
    <var id="24">
        <effect map="001-1.tmx" npc="443" value="0" effect="12"/>
        <effect map="001-1.tmx" npc="443" value="1" effect="13"/>
        <quest name="Visiting Artis" group="Halloween" incomplete="1">
            <name>Visiting Artis</name>
            <text text1="[Pumpkin]">Bacchus asked you to bring him a {@@1}.</text>
            <text>Cuco drops them, in the locked room of La Johanne's Hold.</text>
            <text></text>
            <questgiver>Bacchus</questgiver>
            <coordinates x="31" y="30">La Johanne, Hold. (31,30)</coordinates>
            <reward text1="[Pumpkin Hat]">{@@1}.</reward>
        </quest>
        <quest name="Visiting Artis" group="Halloween" complete="2">
            <name>Visiting Artis</name>
            <text>Bacchus offers you to see a small part of your future.</text>
            <text>The payment is 10 Halloween Candy.</text>
            <text></text>
            <questgiver>Bacchus</questgiver>
            <coordinates x="31" y="30">La Johanne, Hold. (31,30)</coordinates>
            <reward>chance to see the future.</reward>
        </quest>
    </var>
    <var id="25">
        <effect map="001-1.tmx" npc="442" value="0" effect="12"/>
        <effect map="001-1.tmx" npc="442" value="1" effect="13"/>
        <quest name="Alige in the Barrel" group="Halloween" incomplete="1">
            <name>Alige in the Barrel</name>
            <text>Alige was very scared of the Cuco. Now that it's killed, he should be okay.</text>
            <text></text>
            <questgiver>Alige</questgiver>
            <coordinates x="38" y="22">La Johanne, Hold, Alige's Hideout. (38,22)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Alige in the Barrel" group="Halloween" complete="2">
            <name>Alige in the Barrel</name>
            <text>Somehow Alige appeared in my vision of the future.</text>
            <text text1="[Barrel]">For killing the scary Cuco, he gave me a {@@1}.</text>
            <text></text>
            <questgiver>Alige</questgiver>
            <coordinates x="71" y="132">Artis, Dream World. (71,132)</coordinates>
            <reward text1="[Barrel]">{@@1}.</reward>
        </quest>
    </var>
    <var id="26">
        <effect map="001-1.tmx" npc="444" value="0" effect="12"/>
        <effect map="001-1.tmx" npc="444" value="1" effect="13"/>
        <effect map="001-1.tmx" npc="444" value="2" effect="13"/>
        <quest name="Plushroom Addict" group="Artis" incomplete="1">
            <name>Plushroom Addict</name>
            <text>Rumly is expecting you to return.</text>
            <text>He is still offering his services.</text>
            <text></text>
            <questgiver>Rumly</questgiver>
            <coordinates x="35" y="125">Artis, Market Place. (35,125)</coordinates>
        </quest>
        <quest name="Plushroom Addict" group="Artis" incomplete="2">
            <name>Plushroom Addict</name>
            <text text1="[Plushroom]">Rumly is waiting for you to bring him some {@@1}s.</text>
            <text></text>
            <questgiver>Rumly</questgiver>
            <coordinates x="35" y="125">Artis, Market Place. (35,125)</coordinates>
        </quest>
        <quest name="Plushroom Addict" group="Artis" complete="3">
            <name>Plushroom Addict</name>
            <text>Rumly is able to reset your character point.</text>
            <text text1="[Plushroom]">Bring him some {@@1}s and he will be able to do it for you.</text>
            <text></text>
            <questgiver>Rumly</questgiver>
            <coordinates x="35" y="125">Artis, Market Place. (35,125)</coordinates>
        </quest>
    </var>
    <var id="27">
        <effect map="001-1.tmx" npc="119" value="0" effect="12"/>
        <effect map="001-1.tmx" npc="119" value="1" effect="13"/>
        <effect map="001-1.tmx" npc="429" value="1" effect="12"/>
        <effect map="001-1.tmx" npc="119" value="2" effect="13"/>
        <effect map="001-1.tmx" npc="429" value="2" effect="13"/>
        <effect map="001-2-19.tmx" npc="126" value="2" effect="12"/>
        <effect map="001-1.tmx" npc="429" value="3" effect="13"/>
        <effect map="001-1.tmx" npc="119" value="4" effect="13"/>
        <effect map="001-1.tmx" npc="119" value="5" effect="13"/>
        <effect map="001-2-0.tmx" npc="117" value="5" effect="12"/>
        <effect map="001-1.tmx" npc="119" value="6" effect="13"/>
        <effect map="001-1.tmx" npc="119" value="7" effect="13"/>
        <effect map="001-1.tmx" npc="140" value="7" effect="14"/>
        <effect map="001-1.tmx" npc="119" value="8" effect="13"/>
        <effect map="001-2-26.tmx" npc="127" value="8" effect="12"/>
        <effect map="001-1.tmx" npc="119" value="9" effect="13"/>
        <quest name="Newby Quest" group="Artis" incomplete="1">
            <name>Newby Quest</name>
            <text>You are charged to visit Chelios and bring back Enora's package.</text>
            <text>Chelios is reachable at the Blacksmith Shop (95,109).</text>
            <text></text>
            <questgiver>Enora</questgiver>
            <coordinates x="176" y="113">Artis, Docks. (176,113)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Newby Quest" group="Artis" incomplete="2">
            <name>Newby Quest</name>
            <text>Chelios asked you to bring him some black iron</text>
            <text>You should look for Lloyd in the Merchant Hall (100,37).</text>
            <text></text>
            <questgiver>Chelios</questgiver>
            <coordinates x="95" y="109">Artis, Blacksmith Shop. (95,109)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Newby Quest" group="Artis" incomplete="3">
            <name>Newby Quest</name>
            <text>Lloyd gave you the black iron package.</text>
            <text>Bring it back to Chelios.</text>
            <text></text>
            <questgiver>Chelios</questgiver>
            <coordinates x="95" y="109">Artis, Blacksmith Shop. (95,109)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Newby Quest" group="Artis" incomplete="4">
            <name>Newby Quest</name>
            <text>Chelios made a sword out of black iron ore.</text>
            <text>This task is done, you can now return it to Enora.</text>
            <text></text>
            <questgiver>Enora</questgiver>
            <coordinates x="176" y="113">Artis, Docks. (176,113)</coordinates>
            <reward>60 EXP, 100 E.</reward>
        </quest>
        <quest name="Newby Quest" group="Artis" incomplete="5">
            <name>Newby Quest</name>
            <text>You are charged to visit Resa and to bring back Enora's package.</text>
            <text>Resa is reachable at the Light Armor building (55,72).</text>
            <text></text>
            <questgiver>Enora</questgiver>
            <coordinates x="176" y="113">Artis, Docks. (176,113)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Newby Quest" group="Artis" incomplete="6">
            <name>Newby Quest</name>
            <text text1="[%Color% Artis Tank Top, Camel Cotton Dye]">Resa gave you a cute {@@1}.</text>
            <text>This task is done, you can now return it to Enora.</text>
            <text></text>
            <questgiver>Enora</questgiver>
            <coordinates x="176" y="113">Artis, Docks. (176,113)</coordinates>
            <reward>40 EXP, 125 E.</reward>
        </quest>
        <quest name="Newby Quest" group="Artis" incomplete="7">
            <name>Newby Quest</name>
            <text>You are charged to visit Q'Pid and bring back Enora's package.</text>
            <text>Q'Pid is reachable at the Market Place, in the south-west area of Artis (61,116).</text>
            <text></text>
            <questgiver>Enora</questgiver>
            <coordinates x="176" y="113">Artis, Docks. (176,113)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Newby Quest" group="Artis" incomplete="8">
            <name>Newby Quest</name>
            <text>You lost the riddle of Q'Pid, you have to go to Ivan to get Enora's potions.</text>
            <text>Ivan is in a small house near Artis's canal (163,71).</text>
            <text></text>
            <questgiver>Enora</questgiver>
            <coordinates x="176" y="113">Artis, Docks. (176,113)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Newby Quest" group="Artis" incomplete="9">
            <name>Newby Quest</name>
            <text text1="[Piberries Infusion]">Ivan gave you a few {@@1}s.</text>
            <text>This task is done, you can now return them to Enora.</text>
            <text></text>
            <questgiver>Enora</questgiver>
            <coordinates x="176" y="113">Artis, Docks. (176,113)</coordinates>
            <reward>80 EXP, 175 E.</reward>
        </quest>
        <quest name="Newby Quest" group="Artis" incomplete="10">
            <name>Newby Quest</name>
            <text>Some citizen worry about their safety with the growing number of Fluffy on the Hill of Artis.</text>
            <text>Enora's latest task for you is to clean up this hill.</text>
            <text>Killing about 10 Fluffy should be enough to calm down the neighborhood.</text>
            <text>The hill is located on north-east of Artis (172,46).</text>
            <text></text>
            <questgiver>Enora</questgiver>
            <coordinates x="176" y="113">Artis, Docks. (176,113)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Newby Quest" group="Artis" complete="11">
            <name>Newby Quest</name>
            <text>You completed every task and you even cleaned up the hill of these terrible Fluffies.</text>
            <text></text>
            <questgiver>Enora</questgiver>
            <coordinates x="176" y="113">Artis, Docks. (176,113)</coordinates>
            <reward text1="[Training Gladius]" text2="[%Color% Artis Tank Top, Camel Cotton Dye]" text3="[Piberries Infusion]">{@@1}, {@@2}, 5 {@@3}s</reward>
            <reward>140 EXP, 500 E.</reward>
        </quest>
    </var>
    <var id="29">
        <effect map="001-2-19.tmx" npc="126" value="0" effect="12"/>
        <effect map="001-1.tmx" npc="108" value="1" effect="13"/>
        <effect map="001-1.tmx" npc="108" value="2" effect="13"/>
        <quest name="Fexil's Free Pass" group="Artis" incomplete="1">
            <name>Fexil's Free Pass</name>
            <text>Lloyd gave you a pass that Fexil forgot when he registered himself in the Merchant Guild.</text>
            <text></text>
            <questgiver>Lloyd</questgiver>
            <coordinates x="101" y="37">Artis, Merchant Guild. (101,37)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Fexil's Free Pass" group="Artis" incomplete="2">
            <name>Fexil's Free Pass</name>
            <text text1="[Fluffy Fur]">Fexil wants to open a business of {@@1}'s clothes.</text>
            <text>He will reward you for each fur you bring him.</text>
            <text></text>
            <questgiver>Fexil</questgiver>
            <coordinates x="48" y="134">Artis, Market Place. (48,134)</coordinates>
            <reward>Unknown.</reward>
        </quest>
        <quest name="Fexil's Free Pass" group="Artis" complete="3">
            <name>Fexil's Free Pass</name>
            <text text1="[Fluffy Fur]">Fexil wants to open a business of {@@1}'s clothes.</text>
            <text>He rewards you for each fur you bring him.</text>
            <text></text>
            <questgiver>Fexil</questgiver>
            <coordinates x="48" y="134">Artis, Market Place. (48,134)</coordinates>
            <reward text1="[Fluffy Fur]">15 per {@@1}.</reward>
        </quest>
    </var>
    <var id="30">
        <effect map="001-2-19.tmx" npc="126" value="0" effect="12"/>
        <quest name="Worship of Money" group="Artis" complete="1">
            <name>Worship of Money</name>
            <text>You are now registered in the Merchant Guild.</text>
            <text>This Guild offers storage and bank services.</text>
            <text></text>
            <questgiver>Lloyd</questgiver>
            <coordinates x="101" y="37">Artis, Merchant Guild. (101,37)</coordinates>
            <reward>Merchant Guild access.</reward>
        </quest>
    </var>

    <!-- Placeholder quests below -->
    <var id="36">
        <!-- TODO: effect -->
        <quest name="Farmer's Scythe" group="Hurnscald" incomplete="2">
            <name>Farmer's Scythe</name>
            <text>Hinnak wants you to kill 10 pinkies and bring back their antennae.</text>
            <text></text>
            <text>Pinkies killed: {@@var2}/10.</text>
            <text></text>
            <questgiver>Hinnak</questgiver>
            <!-- TODO: coordinates -->
            <reward text1="[Scythe]">{@@1}.</reward>
        </quest>
        <quest name="Farmer's Scythe" group="Hurnscald" complete="3">
            <name>Farmer's Scythe</name>
            <text>You helped Hinnak.</text>
            <text></text>
            <questgiver>Hinnak</questgiver>
            <!-- TODO: coordinates -->
            <reward text1="[Scythe]">{@@1}.</reward>
        </quest>
    </var>
    <var id="37">
        <!-- TODO: effect -->
        <quest name="Maggot slime soup" group="Hurnscald" incomplete="2">
            <name>Maggot slime soup</name>
            <text text1="[Roasted Maggot]">Bernard wants a {@@1}.</text>
            <text></text>
            <questgiver>Bernard</questgiver>
            <!-- TODO: coordinates -->
            <reward>Unknown.</reward>
        </quest>
        <quest name="Maggot slime soup" group="Hurnscald" complete="3">
            <name>Maggot slime soup</name>
            <text text1="[Roasted Maggot]">You gave Bernard a {@@1}.</text>
            <text></text>
            <questgiver>Bernard</questgiver>
            <!-- TODO: coordinates -->
            <reward text1="[Cherry Cake]">100 EXP, 5 {@@1}.</reward>
        </quest>
        <quest name="Maggot slime soup" group="Hurnscald" incomplete="4">
            <name>Maggot slime soup</name>
            <text text1="[Maggot Slime]">Bernard wants 3 {@@1}.</text>
            <text></text>
            <questgiver>Bernard</questgiver>
            <!-- TODO: coordinates -->
            <reward>Unknown.</reward>
        </quest>
        <quest name="Maggot slime soup" group="Hurnscald" complete="5,6,7">
            <name>Maggot slime soup</name>
            <text text1="[Maggot Slime]">You gave Bernard 3 {@@1}.</text>
            <text></text>
            <questgiver>Bernard</questgiver>
            <!-- TODO: coordinates -->
            <reward text1="[Beer]">100 EXP, 3 {@@1}.</reward>
        </quest>
        <quest name="A slimy situation" group="Hurnscald" incomplete="6">
            <name>A slimy situation</name>
            <text text1="[Maggot Slime]">Mikhail wants 5 {@@1}.</text>
            <text></text>
            <questgiver>Mikhail</questgiver>
            <!-- TODO: coordinates -->
            <reward>Unknown.</reward>
        </quest>
        <quest name="A slimy situation" group="Hurnscald" complete="7">
            <name>A slimy situation</name>
            <text text1="[Maggot Slime]">You gave Mikhail 5 {@@1}.</text>
            <text></text>
            <questgiver>Mikhail</questgiver>
            <!-- TODO: coordinates -->
            <reward>100 EXP.</reward>
        </quest>
    </var>
    <var id="38">
        <!-- TODO: effect -->
        <quest name="Robberies in Hurnscald" group="Hurnscald" incomplete="2">
            <name>Robberies in Hurnscald</name>
            <text>The inspector tasked you with finding clues about the recent robberies.</text>
            <text>You should question everyone in town.</text>
            <text></text>
            <questgiver>Inspector</questgiver>
            <!-- TODO: coordinates -->
            <reward>Unknown.</reward>
        </quest>
        <quest name="Robberies in Hurnscald" group="Hurnscald" incomplete="3">
            <name>Robberies in Hurnscald</name>
            <text>An old woman said she saw something unusual, but she refuses to tell anyone but the Inspector himself.</text>
            <text>Perhaps there is a way to convince her?</text>
            <text></text>
            <questgiver>Inspector</questgiver>
            <!-- TODO: coordinates -->
            <reward>Unknown.</reward>
        </quest>
        <quest name="Robberies in Hurnscald" group="Hurnscald" incomplete="4">
            <name>Robberies in Hurnscald</name>
            <text>The old woman said she saw someone wearing a theater mask sneaking around.</text>
            <text>You should inform the Inspector about your findings.</text>
            <text></text>
            <questgiver>Inspector</questgiver>
            <!-- TODO: coordinates -->
            <reward>Unknown.</reward>
        </quest>
        <quest name="Robberies in Hurnscald" group="Hurnscald" incomplete="5">
            <name>Robberies in Hurnscald</name>
            <text>The inspector told you to go interrogate the leader of the traveling troupe in Tulimshar.</text>
            <text></text>
            <questgiver>Inspector</questgiver>
            <!-- TODO: coordinates -->
            <reward>Unknown.</reward>
        </quest>
        <quest name="Robberies in Hurnscald" group="Hurnscald" incomplete="6">
            <name>Robberies in Hurnscald</name>
            <text>The troupe leader said she saw an old man behaving oddly.</text>
            <text>You should report to the Inspector.</text>
            <text></text>
            <questgiver>Inspector</questgiver>
            <!-- TODO: coordinates -->
            <reward>Unknown.</reward>
        </quest>
        <quest name="Robberies in Hurnscald" group="Hurnscald" incomplete="7">
            <name>Robberies in Hurnscald</name>
            <text>The inspector asked you to find and question the old man.</text>
            <text></text>
            <questgiver>Inspector</questgiver>
            <!-- TODO: coordinates -->
            <reward>Unknown.</reward>
        </quest>
        <quest name="Robberies in Hurnscald" group="Hurnscald" incomplete="8">
            <name>Robberies in Hurnscald</name>
            <text>The old man told you to ask his wife.</text>
            <text></text>
            <questgiver>Inspector</questgiver>
            <!-- TODO: coordinates -->
            <reward>Unknown.</reward>
        </quest>
        <quest name="Robberies in Hurnscald" group="Hurnscald" incomplete="9">
            <name>Robberies in Hurnscald</name>
            <text>The old woman confirmed the story of the old man.</text>
            <text>You should report to the Inspector.</text>
            <text></text>
            <questgiver>Inspector</questgiver>
            <!-- TODO: coordinates -->
            <reward>Unknown.</reward>
        </quest>
        <quest name="Robberies in Hurnscald" group="Hurnscald" incomplete="10">
            <name>Robberies in Hurnscald</name>
            <text>The inspector told you to question everyone again.</text>
            <text></text>
            <questgiver>Inspector</questgiver>
            <!-- TODO: coordinates -->
            <reward>Unknown.</reward>
        </quest>
        <quest name="Robberies in Hurnscald" group="Hurnscald" incomplete="11">
            <name>Robberies in Hurnscald</name>
            <text>The old woman remembered something.</text>
            <text>She saw someone with a large satchel heading north.</text>
            <text></text>
            <questgiver>Inspector</questgiver>
            <!-- TODO: coordinates -->
            <reward>Unknown.</reward>
        </quest>
        <quest name="Robberies in Hurnscald" group="Hurnscald" incomplete="12">
            <name>Robberies in Hurnscald</name>
            <text>Malek said he heard someone go down to the basement.</text>
            <text>You should search the basement for clues.</text>
            <text></text>
            <questgiver>Inspector</questgiver>
            <!-- TODO: coordinates -->
            <reward>Unknown.</reward>
        </quest>
        <quest name="Robberies in Hurnscald" group="Hurnscald" incomplete="13">
            <name>Robberies in Hurnscald</name>
            <text text1="[Noh Mask]">You found a {@@1} hidden in the basement.</text>
            <text>You should report to the Inspector.</text>
            <text></text>
            <questgiver>Inspector</questgiver>
            <!-- TODO: coordinates -->
            <reward>Unknown.</reward>
        </quest>
        <quest name="Robberies in Hurnscald" group="Hurnscald" incomplete="14">
            <name>Robberies in Hurnscald</name>
            <text>The inspector is still deciphering the letter.</text>
            <text>You should head back to the Troupe Leader meanwhile.</text>
            <text></text>
            <questgiver>Inspector</questgiver>
            <!-- TODO: coordinates -->
            <reward>Unknown.</reward>
        </quest>
        <quest name="Robberies in Hurnscald" group="Hurnscald" complete="15">
            <name>Robberies in Hurnscald</name>
            <text text1="[Noh Mask]">You brought back the stolen {@@1}.</text>
            <text>The troupe leader said you should keep it.</text>
            <text></text>
            <questgiver>Inspector</questgiver>
            <!-- TODO: coordinates -->
            <reward text1="[Noh Mask]">1500 EXP, {@@1}.</reward>
        </quest>
        <quest name="Robberies in Hurnscald" group="Hurnscald" complete="16">
            <name>Robberies in Hurnscald</name>
            <text>The inspector and his associates found all the stolen goods.</text>
            <text></text>
            <questgiver>Inspector</questgiver>
            <!-- TODO: coordinates -->
            <reward>2500 EXP.</reward>
        </quest>
    </var>
    <var id="39">
        <!-- TODO: effect -->
        <quest name="Forest Bow" group="Hurnscald" incomplete="2">
            <name>Forest Bow</name>
            <text>Jack the handsome lumberjack won't give any more wood to Alan.</text>
            <text>Alan is desperate to get his wood.</text>
            <text></text>
            <questgiver>Alan</questgiver>
            <!-- TODO: coordinates -->
            <reward text1="[Forest Bow]">a splendid {@@1}.</reward>
        </quest>
        <quest name="Forest Bow" group="Hurnscald" incomplete="3">
            <name>Forest Bow</name>
            <text>Jack says the trees became alive and he won't cut them anymore.</text>
            <text>You should tell Alan about this.</text>
            <text></text>
            <questgiver>Alan</questgiver>
            <!-- TODO: coordinates -->
            <reward text1="[Forest Bow]">a splendid {@@1}.</reward>
        </quest>
        <quest name="Forest Bow" group="Hurnscald" incomplete="4">
            <name>Forest Bow</name>
            <text>Alan needs wood badly.</text>
            <text>Perhaps you could satisfy him yourself?</text>
            <text></text>
            <questgiver>Alan</questgiver>
            <!-- TODO: coordinates -->
            <reward text1="[Forest Bow]">a splendid {@@1}.</reward>
        </quest>
        <quest name="Forest Bow" group="Hurnscald" incomplete="5">
            <name>Forest Bow</name>
            <text>Alan says your wood is perfect.</text>
            <text text1="[Forest Bow]">He can make a beautiful {@@1} out of it but he needs 10000 E.</text>
            <text></text>
            <questgiver>Alan</questgiver>
            <!-- TODO: coordinates -->
            <reward text1="[Forest Bow]">a splendid {@@1}.</reward>
        </quest>
        <quest name="Forest Bow" group="Hurnscald" complete="6">
            <name>Forest Bow</name>
            <text text1="[Forest Bow]">You gave your wood to Alan and he loved it so much he gave you a {@@1}.</text>
            <text></text>
            <questgiver>Alan</questgiver>
            <!-- TODO: coordinates -->
            <reward text1="[Forest Bow]">a splendid {@@1}.</reward>
        </quest>
    </var>
    <var id="40">
        <!-- TODO: effect -->
        <quest name="Wooden Shield" group="Hurnscald" incomplete="2">
            <name>Wooden Shield</name>
            <text>Jack the handsome lumberjack has a proposal for you.</text>
            <text></text>
            <questgiver>Jack</questgiver>
            <!-- TODO: coordinates -->
        </quest>
        <quest name="Wooden Shield" group="Hurnscald" incomplete="3">
            <name>Wooden Shield</name>
            <text text1="[Raw Log]">Jack can make you a sturdy shield but he needs 40 {@@1}.</text>
            <text>He also wants 5000 E for his time.</text>
            <text></text>
            <questgiver>Jack</questgiver>
            <!-- TODO: coordinates -->
            <reward text1="[Wooden Shield]">{@@1}</reward>
        </quest>
        <quest name="Wooden Shield" group="Hurnscald" complete="4">
            <name>Wooden Shield</name>
            <text>Jack made you a shield.</text>
            <text></text>
            <questgiver>Jack</questgiver>
            <!-- TODO: coordinates -->
            <reward text1="[Wooden Shield]">2500 EXP, {@@1}</reward>
        </quest>
    </var>
    <var id="55">
        <!-- TODO: everything -->
        <quest name="Cooking Quest" group="Hurnscald" incomplete="1">
            <text>Talk to Yannika.</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="2">
            <text>Ask Yannika to learn new recipes.</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="3">
            <text>Bring 2x fish to Dimond's Chef in Yannika stead.</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="4">
            <text>Talk to Dimond's Chef</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="5">
            <text>Talk to the chef Reid's Inn.</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="6">
            <text>Figure out a way to make a special sandwich for the chef.</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="7">
            <text>Find Candor's Chef and get recipes!</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="8">
            <text>Bring Tiki a new sandwich idea.</text>
            <text>Maybe another sandwich maker can help?</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="9">
            <text>Tiki approved the new idea for Reid's Chef sandwich.</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="10">
            <text>Reid's Chef was pleased. Give recipe to Dimond's Chef.</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="11">
            <text>Oh well, to Tulimshar bakery we go.</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="12">
            <text>We were refused, but maybe the apprentice knows something.</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="13">
            <text>You've helped Donutello. Talk to him again.</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="14">
            <text>Give Donut recipe to Dimond's Chef.</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="15">
            <text>Diabetes? Meh, we better find Salad in Tulim.</text>
            <text>Who in tulim could be importing Hinnak's lettuce, though?</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="16">
            <text>I offered myself to do a few things for Hocus.</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="17">
            <text>Deliver the recipe to Dimond's Chef.</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" incomplete="18">
            <text>Finally, make a seafood plate for Yannika!</text>
        </quest>
        <quest name="Cooking Quest" group="Hurnscald" complete="19">
            <text>Yannika might have something later, but quest complete.</text>
        </quest>
    </var>
    <var id="59">
        <!-- TODO: everything -->
        <quest name="Missing Daughters" group="Hurnscald" incomplete="1">
            <text>You were requested to find Olana's daughters.</text>
        </quest>
        <quest name="Missing Daughters" group="Hurnscald" incomplete="2">
            <text>Report back to Olana.</text>
        </quest>
        <quest name="Missing Daughters" group="Hurnscald" incomplete="3">
            <text>Talk to Rossy again.</text>
        </quest>
        <quest name="Missing Daughters" group="Hurnscald" incomplete="4">
            <text>Get the berries for Olana</text>
        </quest>
        <quest name="Missing Daughters" group="Hurnscald" incomplete="5">
            <text>I'm not sure, talk to Olana again.</text>
        </quest>
        <quest name="Missing Daughters" group="Hurnscald" incomplete="6">
            <text>Deliver the letter to Rossy</text>
        </quest>
        <quest name="Missing Daughters" group="Hurnscald" incomplete="7">
            <text>Help Rossy with her exam</text>
        </quest>
        <quest name="Missing Daughters" group="Hurnscald" incomplete="8">
            <text>Deliver the potion to David on Tulimshar</text>
        </quest>
        <quest name="Missing Daughters" group="Hurnscald" incomplete="9">
            <text>Talk to Rossy again</text>
        </quest>
        <quest name="Missing Daughters" group="Hurnscald" incomplete="10">
            <text>Now talk to Olana.</text>
        </quest>
        <quest name="Missing Daughters" group="Hurnscald" incomplete="11">
            <text>Bring roses to Rossy.</text>
        </quest>
        <quest name="Missing Daughters" group="Hurnscald" incomplete="12">
            <text>Talk to Olana again.</text>
        </quest>
        <quest name="Missing Daughters" group="Hurnscald" incomplete="13">
            <text>Bring tulips to Rossy.</text>
        </quest>
        <quest name="Missing Daughters" group="Hurnscald" incomplete="14">
            <text>Praise Olana for being a good mother.</text>
        </quest>
        <quest name="Missing Daughters" group="Hurnscald" incomplete="15">
            <text>Get status on Juliet with Rossy.</text>
        </quest>
        <quest name="Missing Daughters" group="Hurnscald" incomplete="16">
            <text>Dispatched to Clauquer's Cave.</text>
        </quest>
        <quest name="Missing Daughters" group="Hurnscald" complete="17">
            <text>Juliet has been rescued.</text>
        </quest>
    </var>

    <!-- Test quests below -->
    <var id="1000">
        <quest name="Test quest" group="Tests" complete="2" incomplete="1">
            <name>Testing quest name with var1={@@var1}</name>
            <text>Quest text1 with vars: {@@var1}, {@@var2}, {@@var3}</text>
            <text>Time: {@@time}</text>
            <questgiver>Giver vars: {@@var1}, {@@var2}, {@@var3}</questgiver>
            <coordinates x="1" y="1">Vars: {@@var1}, {@@var2}, {@@var3}</coordinates>
            <reward>Reward: {@@var1}, {@@var2}, {@@var3}</reward>
        </quest>
    </var>
</quests>