summaryrefslogblamecommitdiff
path: root/npcs.xml
blob: af5460cd41dd6f8277f49c2a5665847e32a7bbad (plain) (tree)
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
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
                     
      



































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                   
       
<?xml version="1.0"?>
<npcs>
  <npc id="100">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle18.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#201820,492613,cf6513,e56a18,ffffff</sprite>
    <sprite>equipment/feet/boots.xml|#522129,ff7139</sprite>
    <sprite>equipment/legs/silkpants.xml|#251e06,443c21,71653b,a0945e</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#573a26,9e7654,d3b79e,ffffff</sprite>
    <sprite>equipment/head/silkheadband.xml|#9c2c00,ee4800,ff7139</sprite>
  </npc>
  <npc id="101">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle02.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#201818,313031,424242,4e4e4e</sprite>
    <sprite>equipment/chest/cotton.xml|#573a26,9e7654,d3b79e,ffffff</sprite>
    <sprite>equipment/legs/silkpants.xml|#202020,414441,b4b6bd,cdcacd,ffffff</sprite>
    <sprite>equipment/feet/boots.xml|#522129,ff7139</sprite>
    <sprite>equipment/head/goatee.xml|#212121,ffffff</sprite>
  </npc>
  <npc id="102">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle18.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#817339,ffe87c</sprite>
    <sprite>equipment/chest/tanktop.xml|#cdb784,dec38c,eef1c5,ffffff</sprite>
    <sprite>equipment/legs/shorts.xml|#2e0890,7898e8</sprite>
    <sprite>equipment/feet/boots.xml|#490000,b66d49</sprite>
  </npc>
  <npc id="103">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/feet/boots.xml|#490000,b66d49</sprite>
    <sprite variant="0">equipment/override/adult-outfits.xml</sprite>
  </npc>
  <npc id="104">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle03.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#201818,313031,424242,4e4e4e</sprite>
    <sprite>equipment/head/infantryhelm.xml</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#a4b2b2,ffffff</sprite>
    <sprite>equipment/chest/lightplatemail.xml</sprite>
    <sprite>equipment/legs/chaps.xml</sprite>
    <sprite>equipment/feet/boots.xml|#212121</sprite>
    <sprite>equipment/weapons/sword-short.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff</sprite>
  </npc>
  <npc id="105">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle18.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#f4f0f0,787c78</sprite>
    <sprite>equipment/head/santahat.xml|#580000,a40000,c02020;#87876c,bbc39c,edf4e1,ffffff</sprite>
    <sprite>equipment/chest/tnecksweater.xml|#580000,a40000,c02020</sprite>
    <sprite>equipment/legs/silkpants.xml|#580000,a40000,c02020</sprite>
    <sprite variant="4">equipment/override/adult-outfits.xml</sprite>
    <sprite>equipment/hands/generic.xml|#202020,c0c0c0,ffffff,ffffff</sprite>
    <sprite>equipment/head/long-beard.xml|#87876c,bbc39c,edf4e1</sprite>
    <sprite>equipment/feet/furboots.xml</sprite>
  </npc>
  <npc id="106">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle01-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#69006a,880884,a404a2,c000c0,ff40ff</sprite>
    <sprite>equipment/feet/boots-female.xml|#490000,b66d49</sprite>
    <sprite>equipment/legs/skirt-female.xml|#251e06,443c21,71653b,a0945e</sprite>
    <sprite>equipment/chest/tanktop-female.xml|#1a3a8c,214cb9,4470e0,7898e8</sprite>
  </npc>
  <npc id="107">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle01.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#404040,606060,808080,a4a4a4,b1b1b1,c0c0c0,e4e4e4</sprite>
    <sprite>equipment/head/glasses.xml|#a89feb,d5d1f5</sprite>
    <sprite>equipment/legs/silkpants.xml|#010101,202020,404040,606060</sprite>
    <sprite>equipment/chest/tnecksweater.xml|#808080,b1b1b1,cacaca</sprite>
    <sprite>equipment/chest/tanktop.xml|#404040,606060,808080,9f9f9f</sprite>
    <sprite variant="4">equipment/override/adult-outfits.xml</sprite>
  </npc>
  <npc id="108">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle11-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#2b552b,55552b,55802b,80aa55,80aa80,aad480</sprite>
    <sprite>equipment/chest/fine-dress-female.xml|#9e005d,bc0c73,dc168b,db78a7,dea0c5,efbfdb</sprite>
  </npc>
  <npc id="109">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/head/minershat.xml</sprite>
    <sprite>equipment/hands/generic.xml|#202020,505050</sprite>
    <sprite>equipment/feet/boots.xml|#212121</sprite>
    <sprite>equipment/chest/tnecksweater.xml|#5f5d1e,6b5c37,917d4c,b1ad3b,c3be29</sprite>
    <sprite>equipment/legs/pants.xml|#272520,333027,383535,463e2b,524a36,52504a,6b5c37</sprite>
    <sprite>equipment/weapons/axe-stab.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d</sprite>
  </npc>
  <npc id="110">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/feet/boots.xml|#212121</sprite>
    <sprite>equipment/head/beard.xml|#994312,c55818,e46c28</sprite>
    <sprite>equipment/legs/pants.xml|#498ec5</sprite>
    <sprite>equipment/chest/sorcerer-robe.xml|#16486e,498ec5,e4f2fc;#41B3FF</sprite>
    <sprite>equipment/head/santahat.xml|#16486e,498ec5,e4f2fc;#7eafee,bbc39c,edf4e1,ffffff</sprite>
  </npc>
  <npc id="111">
    <sprite variant="8">model/unique.xml</sprite>
  </npc>
  <npc id="112">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/feet/boots.xml|#503200,734a00,966200,b97a00,ffaa25</sprite>
    <sprite>equipment/legs/pants.xml|#966200,734a00</sprite>
    <sprite>equipment/chest/tnecksweater.xml|#808080,b1b1b1,cacaca</sprite>
    <sprite>equipment/chest/tanktop.xml|#3c3000,2e3f00,0d6400,007300</sprite>
    <sprite>equipment/head/goatee.xml|#212121,ffffff</sprite>
    <sprite variant="4">equipment/override/adult-head.xml</sprite>
  </npc>
  <npc id="113">
    <sprite variant="2">model/child.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#1f3d23,72982c,ffeebd,ffffff;#3a3a3a,d5d5d5</sprite>
    <sprite variant="5">equipment/override/child-head.xml|#902808,d87038,f0b050</sprite>
    <sprite variant="1">equipment/override/child-outfits.xml|#563116,bc5326,f0682e;#594524;#ffffff;#623a34,f0c2b4;#ffffff;#f5c27f</sprite>
  </npc>
  <npc id="114">
    <sprite variant="2">model/child.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#1f3d23,72982c,ffeebd,ffffff;#3a3a3a,d5d5d5</sprite>
    <sprite variant="0">equipment/override/child-head.xml|#201820,5c47a5,8d74d9,7eafee,b9daff,ffffff</sprite>
    <sprite variant="5">equipment/override/child-outfits.xml|#ffffff;#ffffff;#ffffff;#ffffff;#623a34,f0c2b4;#ffffff;#7b5541,ac794a,c5a16a,ac9962,deca8b</sprite>
  </npc>
  <npc id="115">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle18.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#201820,492613,cf6513,e56a18,ffffff</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#808080,b1b1b1,cacaca</sprite>
    <sprite>equipment/legs/silkpants.xml|#22230f,38380a,48490d,595a10,706b14</sprite>
    <sprite variant="5">equipment/override/adult-outfits.xml</sprite>
    <sprite>equipment/head/goggles.xml|#787878,f7f7f7</sprite>
  </npc>
  <npc id="116">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/chest/robe.xml|#201818,521800,7b5541,ac9962,c5b176</sprite>
    <sprite variant="6">equipment/override/adult-outfits.xml</sprite>
    <sprite variant="1">equipment/override/adult-head.xml</sprite>
    <sprite variant="2">equipment/override/adult-head.xml</sprite>
  </npc>
  <npc id="117">
    <sprite variant="2">model/child.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#1f3d23,72982c,ffeebd,ffffff;#3a3a3a,d5d5d5</sprite>
    <sprite variant="2">equipment/override/child-head.xml|#2f1b08,4a2a0d,643a12,844c18</sprite>
    <sprite variant="7">equipment/override/child-outfits.xml|#ffffff;#ffffff;#ffffff;#ffffff;#490000,b66d49;#0a0a01,0c4e0e,024f2d,1f8327,178b5a,1ca269,75bd7a;#cdb784,dec38c,eef1c5,ffffff</sprite>
  </npc>
  <npc id="118">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle17-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#05594c,217b6d,189481,1edca9</sprite>
    <sprite>equipment/chest/tnecksweater-female.xml|#808080,cdb5b5,ddd9d9,f4f0f0</sprite>
    <sprite>equipment/legs/skirt-female.xml|#808080,cdb5b5,ddd9d9,f4f0f0</sprite>
    <sprite variant="3">equipment/override/adult-outfits.xml</sprite>
  </npc>
  <npc id="119">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle17-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#05594c,217b6d,189481,1edca9</sprite>
    <sprite>equipment/chest/tnecksweater-female.xml|#808080,cdb5b5,ddd9d9,f4f0f0</sprite>
    <sprite>equipment/legs/skirt-female.xml|#808080,cdb5b5,ddd9d9,f4f0f0</sprite>
    <sprite variant="3">equipment/override/adult-outfits.xml</sprite>
    <sprite>equipment/head/bandana-female.xml|#ddd9d9;#f4f0f0</sprite>
  </npc>
  <npc id="120">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle18.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#2f1b08,4a2a0d,643a12,844c18,ffffff</sprite>
    <sprite>equipment/chest/cotton.xml|#94835a,aca47b,cdc594</sprite>
    <sprite>equipment/legs/pants.xml|#413100,524a08,6a5a18,7b7331,837b41</sprite>
  </npc>
  <npc id="121">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle18.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#2f1b08,4a2a0d,643a12,844c18,ffffff</sprite>
    <sprite>equipment/chest/cotton.xml|#94835a,aca47b,cdc594</sprite>
    <sprite>equipment/legs/pants.xml|#413100,524a08,6a5a18,7b7331,837b41</sprite>
    <sprite>equipment/chest/lightplatemail.xml|#ddeeff</sprite>
  </npc>
  <npc id="122">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle18.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#2f1b08,4a2a0d,643a12,844c18,ffffff</sprite>
    <sprite>equipment/chest/cotton.xml|#94835a,aca47b,cdc594</sprite>
    <sprite>equipment/legs/chaps.xml</sprite>
    <sprite>equipment/chest/lightplatemail.xml|#ddeeff</sprite>
    <sprite>equipment/weapons/sword-short.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff</sprite>
  </npc>
  <npc id="123">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle18.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#2f1b08,4a2a0d,643a12,844c18,ffffff</sprite>
    <sprite>equipment/feet/warlordboots.xml</sprite>
    <sprite>equipment/legs/chaps.xml</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#94835a,aca47b,cdc594</sprite>
    <sprite>equipment/chest/lightplatemail.xml|#ddeeff</sprite>
    <sprite>equipment/weapons/sword-short.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff</sprite>
    <sprite>equipment/hands/generic.xml|#4e2e18,c8752f</sprite>
    <sprite>equipment/head/knighthelm.xml</sprite>
  </npc>
  <npc id="124">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle06.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#212121,ffffff</sprite>
    <sprite>equipment/chest/cotton.xml|#94835a,aca47b,cdc594</sprite>
    <sprite>equipment/legs/chaps.xml</sprite>
  </npc>
  <npc id="125">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle06.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#212121,ffffff</sprite>
    <sprite>equipment/chest/cotton.xml|#000000,181818,202020,292929</sprite>
    <sprite>equipment/legs/chaps.xml</sprite>
    <sprite>equipment/feet/boots.xml|#212121</sprite>
    <sprite>equipment/chest/lightplatemail.xml|#000000,181818,202020,292929</sprite>
  </npc>
  <npc id="126">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle06.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#212121,ffffff</sprite>
    <sprite>equipment/chest/cotton.xml|#000000,181818,202020,292929</sprite>
    <sprite>equipment/legs/chaps.xml</sprite>
    <sprite>equipment/feet/boots.xml|#212121</sprite>
    <sprite>equipment/chest/lightplatemail.xml|#000000,181818,202020,292929</sprite>
    <sprite>equipment/weapons/axe-chop.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d</sprite>
  </npc>
  <!-- ID 127 reserved - Invisible NPC -->
  <npc id="127" targetSelection="false"/>
  <npc id="128">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/feet/boots.xml|#522129,ff7139</sprite>
    <sprite>equipment/legs/pants.xml|#251e06,443c21,71653b,a0945e</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#573a26,9e7654,d3b79e,ffffff</sprite>
    <sprite>equipment/head/deserthat.xml|#ffffff</sprite>
    <sprite>equipment/head/goggles.xml|#787878,f7f7f7</sprite>
    <sprite variant="5">equipment/override/adult-outfits.xml</sprite>
  </npc>
  <npc id="129">
    <sprite variant="4">model/unique.xml</sprite>
  </npc>
  <npc id="130">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle02.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#5b280a,994312,c55818</sprite>
    <sprite>equipment/feet/boots.xml|#212121</sprite>
    <sprite>equipment/head/beard.xml|#5b280a,994312,c55818</sprite>
    <sprite>equipment/legs/pants.xml|#498ec5</sprite>
    <sprite>equipment/chest/sorcerer-robe.xml|#222255,6666ff;#EFEFEF</sprite>
    <sprite>equipment/head/santahat.xml|#16486e,498ec5,e4f2fc;#7eafee,bbc39c,edf4e1,ffffff</sprite>
  </npc>
  <npc id="131">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/feet/boots.xml|#522129,ff7139</sprite>
    <sprite>equipment/legs/pants.xml|#251e06,443c21,71653b,a0945e</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#573a26,9e7654,d3b79e,ffffff</sprite>
    <sprite>equipment/head/deserthat.xml|#ffffff</sprite>
    <sprite>equipment/head/goggles.xml|#787878,f7f7f7</sprite>
    <sprite variant="5">equipment/override/adult-outfits.xml</sprite>
  </npc>
  <npc id="132">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/feet/boots.xml|#522129,ff7139</sprite>
    <sprite>equipment/legs/pants.xml|#251e06,443c21,71653b,a0945e</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#573a26,9e7654,d3b79e,ffffff</sprite>
    <sprite>equipment/head/deserthat.xml|#ffffff</sprite>
    <sprite>equipment/head/goggles.xml|#787878,f7f7f7</sprite>
    <sprite>equipment/head/pipe.xml</sprite>
  </npc>
  <npc id="133">
    <sprite variant="0">monsters/ghost-pumpkin.xml</sprite>
  </npc>
  <npc id="134">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle02.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#994312,c55818,e46c28</sprite>
    <sprite>equipment/feet/boots.xml|#212121</sprite>
    <sprite>equipment/head/beard.xml|#994312,c55818,e46c28</sprite>
    <sprite>equipment/legs/pants.xml|#498ec5</sprite>
    <sprite>equipment/chest/sorcerer-robe.xml|#16486e,498ec5,e4f2fc;#41B3FF</sprite>
    <sprite>equipment/head/santahat.xml|#16486e,498ec5,e4f2fc;#7eafee,bbc39c,edf4e1,ffffff</sprite>
  </npc>
  <npc id="135">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle01.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#623413,7a4218,9f5620,c46a28</sprite>
    <sprite>equipment/feet/boots.xml|#4f2d29,c89078</sprite>
    <sprite>equipment/chest/leather.xml|#573a26,9e7654,d3b79e,ffffff;#b96b3d,fbf5f1</sprite>
    <sprite>equipment/legs/pants.xml|#2a2117,2f2112,493219,61411e,724c22,a97e4f</sprite>
    <sprite>equipment/hands/generic.xml|#4e2e18,c8752f</sprite>
  </npc>
  <npc id="136">
  </npc>
  <npc id="137">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle06.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#291912,513a30,6d5246,8a6b5d</sprite>
    <sprite>equipment/chest/cotton.xml|#56002f,930050,fe70bd,feb7de,ffffff</sprite>
    <sprite>equipment/feet/boots.xml|#212121,ffffff</sprite>
    <sprite>equipment/legs/pants.xml|#434b47,697770,93a69d,bed6cb,d3ede1</sprite>
  </npc>
  <npc id="138">
    <sprite variant="24">model/unique.xml</sprite>
  </npc>
  <npc id="139">
    <sprite variant="25">model/unique.xml</sprite>
  </npc>
  <npc id="140">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle19-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#8b3535,a43e3e,b94747,cc4a4a</sprite>
    <sprite>equipment/chest/fine-dress-female.xml|#304c16,628c3c,75ab46,7dc14c</sprite>
    <sprite variant="8">equipment/override/adult-outfits.xml</sprite>
  </npc>
  <npc id="141">
  </npc>
  <npc id="142">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/head/rangerhat.xml</sprite>
    <sprite>equipment/chest/tnecksweater.xml|#573a26,9e7654,d3b79e,ffffff</sprite>
    <sprite>equipment/legs/pants.xml|#39230f,4e2f14,5e3817,6b4422,79502e,815d3b,926d4f</sprite>
    <sprite>equipment/feet/boots.xml|#4f2d29,c89078</sprite>
    <sprite>equipment/weapons/polearm-stab.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d</sprite>
  </npc>
  <npc id="143">
    <sprite variant="20">model/unique.xml</sprite>
  </npc>
  <npc id="144">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#FF2615</sprite>
    <sprite>hairstyles/hairstyle19-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#8c6625,dab425,ffffff</sprite>
    <sprite>equipment/head/highpriest-crown-female.xml</sprite>
    <sprite>equipment/chest/fine-dress-female.xml|#026602,11dd24,ffffff,ffffff</sprite>
  </npc>
  <npc id="145">
    <sprite variant="11">model/unique.xml</sprite>
  </npc>
  <npc id="146">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/chest/tnecksweater.xml|#573a26,9e7654,d3b79e,ffffff</sprite>
    <sprite>equipment/legs/pants.xml|#39230f,4e2f14,5e3817,6b4422,79502e,815d3b,926d4f</sprite>
    <sprite>equipment/feet/boots.xml|#4f2d29,c89078</sprite>
    <sprite variant="3">equipment/override/adult-head.xml</sprite>
    <sprite variant="2">equipment/override/adult-outfits.xml</sprite>
  </npc>
  <npc id="147">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/chest/tnecksweater.xml|#573a26,9e7654,d3b79e,ffffff</sprite>
    <sprite>equipment/legs/pants.xml|#39230f,4e2f14,5e3817,6b4422,79502e,815d3b,926d4f</sprite>
    <sprite>equipment/feet/boots.xml|#4f2d29,c89078</sprite>
    <sprite variant="3">equipment/override/adult-head.xml</sprite>
    <sprite variant="2">equipment/override/adult-outfits.xml</sprite>
    <sprite variant="9">equipment/override/adult-outfits.xml</sprite>
  </npc>
  <npc id="148">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite variant="1">equipment/override/adult-outfits.xml</sprite>
    <sprite>equipment/legs/pants.xml|#001720,001b25,003e55,035776</sprite>
    <sprite variant="4">equipment/override/adult-head.xml</sprite>
    <sprite>equipment/head/chefhat.xml</sprite>
    <sprite>equipment/head/goatee.xml</sprite>
    <sprite>equipment/feet/boots.xml|#623a34,f0c2b4</sprite>
  </npc>
  <npc id="149">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/chest/chainmail.xml|#eef1c5,ffffff</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#151614,1b1c1a,242624,313230,373936,393b38,424441</sprite>
    <sprite>equipment/legs/pants.xml|#151614,1b1c1a,242624,313230,373936,393b38,424441</sprite>
    <sprite>equipment/feet/boots.xml|#151614,1b1c1a,242624,313230,373936,393b38,424441</sprite>
    <sprite variant="5">equipment/override/adult-head.xml</sprite>
    <sprite>equipment/head/monocle.xml</sprite>
  </npc>
  <npc id="150">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/head/inspector-hat.xml|#001720,003e55,035776</sprite>
    <sprite>equipment/chest/chainmail.xml|#eef1c5,ffffff</sprite>
    <sprite>equipment/legs/pants.xml|#001720,001b25,003e55,035776</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#001720,001b25,003e55,035776</sprite>
    <sprite>equipment/feet/boots.xml|#623a34,f0c2b4</sprite>
  </npc>
  <npc id="151">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle09-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#40413f,555754,757774,8d8f8c,9b9d9a,bdbfbb,e8eae7</sprite>
    <sprite variant="0">equipment/override/adult-head.xml</sprite>
    <sprite>equipment/chest/tnecksweater-female.xml|#200303,380505,570909,700c0c,8a1010</sprite>
    <sprite>equipment/feet/boots-female.xml|#39230f,4e2f14,5e3817,6b4422,79502e,815d3b,926d4f</sprite>
    <sprite>equipment/legs/skirt-female.xml|#39230f,4e2f14,5e3817,6b4422,79502e,815d3b,926d4f</sprite>
    <sprite>equipment/head/glasses-female.xml|#a89feb,d5d1f5</sprite>
    <sprite variant="12">equipment/override/adult-outfits.xml</sprite>
  </npc>
  <npc id="152">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/chest/robe.xml|#ffffff</sprite>
    <sprite>equipment/head/deserthat.xml|#ffffff</sprite>
    <sprite variant="11">equipment/override/adult-outfits.xml</sprite>
  </npc>
  <npc id="153">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;</sprite>
    <sprite variant="1">equipment/override/adult-head.xml</sprite>
    <sprite>equipment/feet/assassin-boots.xml|#b80f0f,580000,a40000,b80f0f,c02020,ff6060</sprite>
    <sprite>equipment/chest/robe.xml|#212121,ffffff</sprite>
    <sprite>equipment/head/long-beard.xml|#ffffff</sprite>
  </npc>
  <npc id="154">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle13-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#878787,a8a8a8,cacaca,fdfdfd</sprite>
    <sprite variant="0">equipment/override/adult-head.xml</sprite>
    <sprite>equipment/chest/cotton-female.xml|#291b07,4a310c,6c4818,7a5525,89693b,9c7b52,af946e</sprite>
    <sprite>equipment/legs/skirt-female.xml|#39230f,4e2f14,5e3817,6b4422,79502e,815d3b,926d4f</sprite>
    <sprite>equipment/feet/boots-female.xml|#4f2d29,c89078</sprite>
  </npc>
  <npc id="155">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/head/minershat.xml</sprite>
    <sprite>equipment/chest/cotton.xml|#573a26,9e7654,d3b79e,ffffff</sprite>
    <sprite>equipment/legs/pants.xml|#2e0890,7898e8</sprite>
    <sprite>equipment/feet/boots.xml|#623a34,f0c2b4</sprite>
    <sprite>equipment/weapons/axe-stab.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d</sprite>
  </npc>
  <npc id="156">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle02.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#201818,313031,424242,4e4e4e</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#39230f,4e2f14,5e3817,6b4422,79502e,815d3b,926d40</sprite>
    <sprite>equipment/legs/silkpants.xml|#87876c,bbc39c,edf4e1,ffffff</sprite>
    <sprite>equipment/feet/boots.xml|#623a34,f0c2b4</sprite>
  </npc>
  <npc id="157">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle18.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#817339,ffe87c</sprite>
    <sprite>equipment/chest/tanktop.xml|#cdb784,dec38c,eef1c5,ffffff</sprite>
    <sprite>equipment/legs/shorts.xml|#2e0890,7898e8</sprite>
    <sprite>equipment/feet/boots.xml|#490000,b66d49</sprite>
  </npc>
  <npc id="158">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/feet/boots.xml|#490000,b66d49</sprite>
    <sprite variant="13">equipment/override/adult-outfits.xml</sprite>
  </npc>
  <npc id="159">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/chest/cotton.xml|#291b07,4a310c,6c4818,7a5525,89693b,9c7b52,af946e</sprite>
    <sprite>equipment/legs/skirt.xml|#39230f,4e2f14,5e3817,6b4422,79502e,815d3b,926d4f</sprite>
    <sprite>equipment/head/long-beard.xml</sprite>
    <sprite variant="5">equipment/override/adult-head.xml</sprite>
  </npc>
  <npc id="160">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle07.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#573a26,ffffff</sprite>
    <sprite>equipment/chest/tanktop.xml|#cdb784,dec38c,eef1c5,ffffff</sprite>
    <sprite>equipment/legs/pants.xml|#0a1b08,0e330c,11330f,174613,20641b,288521,0a1b08</sprite>
  </npc>
  <npc id="161">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle06.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#573a26,ffffff</sprite>
    <sprite>equipment/chest/chainmail.xml|#eef1c5,ffffff</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#151614,1b1c1a,242624,313230,373936,393b38,424441</sprite>
    <sprite>equipment/legs/pants.xml|#151614,1b1c1a,242624,313230,373936,393b38,424441</sprite>
    <sprite>equipment/feet/boots.xml|#151614,1b1c1a,242624,313230,373936,393b38,424441</sprite>
    <sprite>equipment/head/monocle.xml</sprite>
  </npc>
  <npc id="162">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/head/deserthat.xml|#ffffff</sprite>
    <sprite>equipment/legs/pants.xml|#202020,414441,b4b6bd,cdcacd,ffffff</sprite>
    <sprite>equipment/chest/tnecksweater.xml|#808080,b1b1b1,cacaca</sprite>
    <sprite>equipment/chest/cotton.xml|#573a26,9e7654,d3b79e,ffffff</sprite>
    <sprite>equipment/feet/boots.xml|#522129,ff7139</sprite>
  </npc>
  <npc id="163">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle13-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#878787,a8a8a8,cacaca,fdfdfd</sprite>
    <sprite>equipment/chest/cotton-female.xml|#ffffff</sprite>
    <sprite>equipment/chest/tanktop-female.xml|#730417,9c061f,c40727,d9082b,ee092f</sprite>
    <sprite>equipment/legs/skirt-female.xml|#783f48,a15461,c96979,f37f92,f7a8b5</sprite>
    <sprite>equipment/feet/boots-female.xml|#522129,ff7139</sprite>
  </npc>
  <npc id="164">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle19-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#dbd41e</sprite>
    <sprite>equipment/head/silkheadband-female.xml|#77a85c,86b36e,9cc27e</sprite>
    <sprite>equipment/chest/robe-female.xml|#558b39,6b9a4a,77a85c,86b36e,9cc27e</sprite>
  </npc>
  <npc id="165">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle19-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#223b2e,154242,1d5553,226461,418481,639b9a,8eb9ba</sprite>
    <sprite>equipment/head/tophat-female.xml</sprite>
    <sprite>equipment/chest/tanktop-female.xml|#0e1b27,163a51,1d425c,2f5673,466680,5b7b95,7691a7</sprite>
    <sprite>equipment/legs/skirt-female.xml|#060c0f,081118,0c1924,102432,0e2c3e,15374d,234c69</sprite>
    <sprite>equipment/feet/boots-female.xml|#0e1b27,163a51,1d425c,2f5673,466680,5b7b95,7691a7</sprite>
  </npc>
  <npc id="166">
    <sprite variant="2">model/unique.xml</sprite>
    <particlefx>graphics/particles/manaseed.particle.xml</particlefx>
  </npc>
  <npc id="167">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle11-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#2c3a0a,317300,3b8700,4ead00</sprite>
    <sprite>equipment/head/wizard-hat-female.xml|#4f0a76,8010c0,d699f7</sprite>
    <sprite>equipment/chest/sorcerer-robe-female.xml|#4f0a76,8010c0,d699f7;#EC0000</sprite>
  </npc>
  <npc id="168">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle07.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#878787,a8a8a8,cacaca</sprite>
    <sprite>equipment/chest/sorcerer-robe.xml|#222255,6666ff;#EFEFEF</sprite>
    <sprite>equipment/head/goatee.xml|#212121,ffffff</sprite>
  </npc>
  <npc id="169">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/head/minershat.xml</sprite>
    <sprite>equipment/chest/cotton.xml|#573a26,9e7654,d3b79e,ffffff</sprite>
    <sprite>equipment/legs/pants.xml|#2e0890,7898e8</sprite>
    <sprite>equipment/feet/boots.xml|#623a34,f0c2b4</sprite>
    <sprite>equipment/weapons/axe-stab.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d</sprite>
  </npc>
  <npc id="171">
    <sprite variant="59">monsters/mouboo.xml</sprite>
  </npc>
  <npc id="172">
    <sprite variant="1">model/unique.xml</sprite>
  </npc>
  <npc id="173">
    <sprite variant="10">model/unique.xml</sprite>
  </npc>
  <npc id="174" nameOffsetX="16" targetOffsetX="16">
    <sprite variant="5">model/child-in-bed.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#1f3d23,72982c,ffeebd,ffffff;#3a3a3a,d5d5d5</sprite>
    <sprite variant="2">equipment/override/child-head-in-bed.xml|#1e0b26,461959,5a2073</sprite>
    <sprite variant="10">equipment/override/child-outfits-in-bed.xml|#5b4976;#ffffff;#ffffff;#ffffff;#ffffff;#ffffff;#36a1bc</sprite>
  </npc>
  <npc id="175">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle12-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#1e0b26,461959,5a2073</sprite>
    <sprite>equipment/feet/assassin-boots-female.xml</sprite>
    <sprite>equipment/legs/assassin-female.xml</sprite>
    <sprite>equipment/chest/assassin-female.xml</sprite>
    <sprite>equipment/hands/assassin-female.xml</sprite>
  </npc>
  <npc id="176">
  </npc>
  <npc id="177">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle19-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#8c6625,dab425,ffffff</sprite>
    <sprite>equipment/feet/boots-female.xml|#212121</sprite>
    <sprite>equipment/head/tophat-female.xml</sprite>
    <sprite>equipment/chest/tanktop-female.xml|#111111,222222,333333,444444,555555,aaaaaa</sprite>
    <sprite>equipment/legs/miniskirt-female.xml|#a4b2b2,ffffff</sprite>
  </npc>
  <npc id="178">
    <sprite variant="21">model/unique.xml</sprite>
  </npc>
  <npc id="179">
    <sprite variant="22">model/unique.xml</sprite>
  </npc>
  <npc id="180">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle13.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#8c6625,dab425,ffffff</sprite>
    <sprite>equipment/feet/boots.xml|#212121</sprite>
    <sprite>equipment/legs/pants.xml|#111111,222222,333333,444444,555555,aaaaaa</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#a4b2b2,ffffff</sprite>
  </npc>
  <npc id="181">
    <sprite>model/male.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#FF2615</sprite>
    <sprite>hairstyles/hairstyle01-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#1d2d6d,1594a3,55C6B2,fdedcc</sprite>
    <sprite>equipment/chest/bra-female.xml</sprite>
    <sprite>equipment/feet/assassin-boots.xml</sprite>
    <sprite>equipment/hands/generic.xml|#202020,c0c0c0,ffffff,ffffff</sprite>
    <sprite>equipment/head/rabbit-ears.xml|#111111,222222,333333,444444,555555,aaaaaa</sprite>
  </npc>
  <npc id="182">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle11-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#66500b,80630e,997711,b38b14,cc9f16,e5b319,ffc71c</sprite>
    <sprite>equipment/feet/boots-female.xml|#443c21,71653b</sprite>
    <sprite>equipment/legs/pants-female.xml|#115511,22aa22,99dd99</sprite>
    <sprite>equipment/chest/forest-armor-female.xml</sprite>
    <sprite>equipment/head/fairy_hat-female.xml</sprite>
    <sprite>equipment/weapons/bow.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d</sprite>
  </npc>
  <npc id="183">
    <sprite variant="0">monsters/skeleton.xml</sprite>
  </npc>
  <npc id="184" nameOffsetX="9" targetOffsetX="9">
</npc>
  <npc id="185" nameOffsetX="16" targetOffsetX="16" targetCursor="large">
</npc>
  <npc id="186">
  </npc>
  <npc id="187">
  </npc>
  <npc id="188">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle19-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#dbd41e</sprite>
    <sprite>equipment/head/rosehat-female.xml|#dddddd,ffffff</sprite>
    <sprite>equipment/chest/shorttanktop-female.xml|#255511,579932,4aaf36,4ed65e</sprite>
    <sprite>equipment/legs/silkpants-female.xml|#87876c,bbc39c,edf4e1,ffffff</sprite>
  </npc>
  <npc id="189">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle06.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#35351c,6f6f3c,bcbd84</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#251e06,443c21,71653b,a0945e</sprite>
    <sprite>equipment/legs/pants.xml|#251e06,443c21,71653b</sprite>
    <sprite>equipment/feet/boots.xml|#443c21,71653b</sprite>
  </npc>
  <npc id="190">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle13-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#878787,a8a8a8,cacaca,fdfdfd</sprite>
    <sprite variant="0">equipment/override/adult-head.xml</sprite>
    <sprite>equipment/chest/cotton-female.xml|#dbd41e</sprite>
    <sprite>equipment/legs/skirt-female.xml|#5b4976</sprite>
    <sprite>equipment/feet/boots-female.xml|#4f2d29,c89078</sprite>
  </npc>
  <npc id="191">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle06.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#35351c,6f6f3c,bcbd84</sprite>
    <sprite>equipment/chest/cotton.xml|#443c21</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#251e06,443c21,71653b,a0945e</sprite>
    <sprite>equipment/legs/pants.xml|#251e06,443c21,71653b</sprite>
    <sprite>equipment/feet/boots.xml|#443c21</sprite>
  </npc>
  <npc id="192">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle06.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#35351c,6f6f3c,bcbd84</sprite>
    <sprite>equipment/chest/cotton.xml|#443c21</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#251e06,443c21,71653b,a0945e</sprite>
    <sprite>equipment/legs/pants.xml|#251e06,443c21,71653b</sprite>
    <sprite>equipment/feet/boots.xml|#443c21</sprite>
  </npc>
  <npc id="193">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/chest/chainmail.xml|#eef1c5,ffffff</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#151614,1b1c1a,242624,313230,373936,393b38,424441</sprite>
    <sprite>equipment/legs/pants.xml|#151614,1b1c1a,242624,313230,373936,393b38,424441</sprite>
    <sprite>equipment/feet/boots.xml|#151614,1b1c1a,242624,313230,373936,393b38,424441</sprite>
    <sprite variant="5">equipment/override/adult-head.xml</sprite>
    <sprite>equipment/head/tophat.xml</sprite>
  </npc>
  <npc id="195">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle08-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#994312,c55818,e46c28</sprite>
    <sprite>equipment/feet/furboots-female.xml</sprite>
    <sprite>equipment/head/knit-cap-female.xml|#ff625a,ffffff;#c1352e,ff625a;#942300,d13435</sprite>
    <sprite>equipment/legs/skirt-female.xml|#571207,6f1c0f,942300,9c2920,c1352e,d13435,ff625a</sprite>
    <sprite>equipment/chest/ugly-sweater-female.xml|#3f3f3f,ffffff;#af5a2f,af5a2f;#8ece91,364c17;#49661f</sprite>
    <sprite>equipment/hands/generic-female.xml|#87876c,bbc39c,edf4e1,ffffff</sprite>
    <sprite variant="10">equipment/override/adult-outfits.xml</sprite>
  </npc>
  <npc id="196">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle08-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#994312,c55818,e46c28</sprite>
    <sprite>equipment/feet/assassin-boots-female.xml|#b80f0f,580000,a40000,b80f0f,c02020,ff6060</sprite>
    <sprite>equipment/chest/fine-dress-female.xml|#571207,6f1c0f,942300,9c2920,c1352e,d13435,ff625a</sprite>
  </npc>
  <npc id="197">
    <sprite variant="26">model/unique.xml</sprite>
  </npc>
  <npc id="198" targetCursor="large">
    <sprite variant="8">model/oversized.xml</sprite>
  </npc>
  <npc id="201">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle11-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#bb2222,ffee33</sprite>
    <sprite>equipment/feet/boots-female.xml|#4f2d29,c89078</sprite>
    <sprite>equipment/legs/chaps-female.xml</sprite>
    <sprite>equipment/chest/shorttanktop-female.xml</sprite>
  </npc>
  <npc id="204">
    <particlefx>graphics/particles/golbenez.particle.xml</particlefx>
  </npc>
  <npc id="205">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle01-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#347235,52D017</sprite>
    <sprite>equipment/head/goggles-female.xml</sprite>
    <sprite>equipment/legs/skirt-female.xml|#d3b79e,ffffff</sprite>
    <sprite>equipment/chest/tanktop-female.xml|#d3b79e,ffffff</sprite>
    <sprite>equipment/feet/boots-female.xml|#9e7654,ffffff</sprite>
  </npc>
  <npc id="206">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle10-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#7F462C,F9966B</sprite>
    <sprite>equipment/chest/cotton-female.xml|#B93B8F,C38EC7,F9B7FF</sprite>
    <sprite>equipment/legs/skirt-female.xml|#AF7817,E8A317</sprite>
    <sprite>equipment/feet/boots-female.xml|#4f2d29,c89078</sprite>
  </npc>
  <npc id="207">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle11-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#C8B560,FFE87C</sprite>
    <sprite>equipment/chest/robe-female.xml|#7F5217,AF7817,E9AB17,FBB917</sprite>
    <sprite>equipment/feet/boots-female.xml|#4f2d29,c89078</sprite>
  </npc>
  <npc id="208">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle09-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3B9C9C,AFDCEC</sprite>
    <sprite>equipment/head/wizard-hat-female.xml|#4f0a76,8010c0,d699f7</sprite>
    <sprite>equipment/chest/robe-female.xml|#4f0a76,8010c0,d699f7</sprite>
    <sprite>equipment/feet/boots-female.xml|#4f2d29,c89078</sprite>
    <sprite>equipment/weapons/polearm-blunt-female.xml|#332c19,443a20,453b1e,61532d,87733d,a58d4d</sprite>
  </npc>
  <npc id="209">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle12-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#573a26,ffffff</sprite>
    <sprite>equipment/chest/cotton-female.xml|#573a26,9e7654,d3b79e,ffffff</sprite>
    <sprite>equipment/legs/miniskirt-female.xml|#251e06,443c21,71653b,a0945e</sprite>
    <sprite>equipment/feet/boots-female.xml|#4f2d29,c89078</sprite>
  </npc>
  <npc id="210">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle04-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#810541,F535AA</sprite>
    <sprite>equipment/legs/chaps-female.xml</sprite>
    <sprite>equipment/chest/tanktop-female.xml|#846211,dab333,fffb93,ffffff</sprite>
    <sprite>equipment/feet/boots-female.xml|#4f2d29,c89078</sprite>
  </npc>
  <npc id="211">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle07.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#bb2222,ffee33</sprite>
    <sprite>equipment/legs/shorts.xml|#255367,266c84,68b0c5,ffffff</sprite>
    <sprite>equipment/chest/tanktop.xml|#a4b2b2,ffffff</sprite>
    <sprite>equipment/feet/boots.xml|#623a34,f0c2b4</sprite>
  </npc>
  <npc id="212">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle08.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#EE9A4D,ffee33</sprite>
    <sprite>equipment/head/captain-hat.xml</sprite>
    <sprite>equipment/legs/shorts.xml|#a4b2b2,ffffff</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#a4b2b2,ffffff</sprite>
    <sprite>equipment/feet/boots.xml|#623a34,f0c2b4</sprite>
  </npc>
  <npc id="213">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle02.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#254117,ffee33</sprite>
    <sprite>equipment/head/sailor-hat.xml</sprite>
    <sprite>equipment/legs/shorts.xml|#a4b2b2,ffffff</sprite>
    <sprite>equipment/chest/tanktop.xml|#a4b2b2,ffffff</sprite>
    <sprite>equipment/feet/boots.xml|#623a34,f0c2b4</sprite>
  </npc>
  <npc id="214">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle18.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#817339,FFE87C</sprite>
    <sprite>equipment/head/silkheadband.xml</sprite>
    <sprite>equipment/legs/shorts.xml|#111111,222222,333333,444444,555555,aaaaaa</sprite>
    <sprite>equipment/chest/tanktop.xml|#16486e,498ec5,e4f2fc</sprite>
    <sprite>equipment/feet/boots.xml|#623a34,f0c2b4</sprite>
  </npc>
  <npc id="215">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle02.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#F88017,FBB117</sprite>
    <sprite>equipment/legs/chaps.xml</sprite>
    <sprite>equipment/chest/cotton.xml|#222255,6666ff</sprite>
    <sprite>equipment/head/bowler-hat-brown.xml|#16486e,498ec5,e4f2fc</sprite>
    <sprite>equipment/feet/boots.xml|#623a34,f0c2b4</sprite>
  </npc>
  <npc id="216" targetCursor="large">
    <sprite variant="0">model/oversized.xml</sprite>
  </npc>
  <npc id="217" targetCursor="large">
    <sprite variant="1">model/oversized.xml</sprite>
  </npc>
  <npc id="218" targetCursor="large">
    <sprite variant="2">model/oversized.xml</sprite>
  </npc>
  <npc id="258">
    <sprite variant="1">model/child.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#1f3d23,72982c,ffeebd,ffffff;#3a3a3a,d5d5d5</sprite>
    <sprite variant="0">equipment/override/child-head.xml|#ed9ecc</sprite>
    <sprite variant="2">equipment/override/child-outfits.xml|#5b4976;#ffffff;#ffffff;#ffffff;#ffffff;#ffffff;#36a1bc</sprite>
  </npc>
  <npc id="259" nameOffsetY="-18" targetOffsetY="-18" nameOffsetX="3" targetOffsetX="3">
    <sprite variant="3">model/child.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#1f3d23,72982c,ffeebd,ffffff;#3a3a3a,d5d5d5</sprite>
    <sprite variant="3">equipment/override/child-head.xml|#d9980b</sprite>
    <sprite variant="3">equipment/override/child-outfits.xml|#962222;#665204;#c68319;#ffffff;#ffffff;#ffffff;#ffffff</sprite>
  </npc>
  <npc id="260">
    <sprite variant="4">model/child.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#1f3d23,72982c,ffeebd,ffffff;#3a3a3a,d5d5d5</sprite>
    <sprite variant="4">equipment/override/child-head.xml|#dbd41e</sprite>
    <sprite variant="4">equipment/override/child-outfits.xml|#dbd41e;#dbd41e;#ffffff;#ffffff;#ffffff;#8c5a9a;#ffffff</sprite>
  </npc>
  <npc id="262">
    <sprite variant="5">model/child.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#1f3d23,72982c,ffeebd,ffffff;#3a3a3a,d5d5d5</sprite>
    <sprite variant="2">equipment/override/child-head.xml|#326632</sprite>
    <sprite variant="6">equipment/override/child-outfits.xml|#326632;#ffffff;#ffffff;#ffffff;#ffffff;#ffffff;#ffffff</sprite>
  </npc>
  <npc id="263">
    <sprite variant="2">model/child.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#1f3d23,72982c,ffeebd,ffffff;#3a3a3a,d5d5d5</sprite>
    <sprite variant="2">equipment/override/child-head.xml|#3d3d63</sprite>
    <sprite variant="7">equipment/override/child-outfits.xml|#3d3d63;#ffffff;#ffffff;#ffffff;#542d63;#282858;#850707</sprite>
  </npc>
  <npc id="265">
    <sprite variant="2">model/child.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#1f3d23,72982c,ffeebd,ffffff;#3a3a3a,d5d5d5</sprite>
    <sprite variant="1">equipment/override/child-head.xml|#328abc</sprite>
    <sprite variant="7">equipment/override/child-outfits.xml|#328abc;#ffffff;#ffffff;#ffffff;#cb1c66;#112f57;#cb1c7b</sprite>
  </npc>
  <npc id="300">
    <sprite variant="0">monsters/skeleton.xml</sprite>
    <sprite variant="1">equipment/override/adult-outfits.xml</sprite>
    <sprite>equipment/feet/boots.xml|#416068,647a82,899299,97a1a8,b1babf,d8dee0,f3f4f6</sprite>
    <sprite>equipment/legs/pants.xml|#2f1b08,4a2a0d,643a12,844c18,ffffff</sprite>
    <sprite>equipment/head/chefhat.xml</sprite>
  </npc>
  <npc id="301">
    <sprite variant="1">model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle19-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#8b3535,a43e3e,b94747,cc4a4a</sprite>
    <sprite>equipment/chest/fine-dress-female.xml|#212121,ffffff</sprite>
    <sprite variant="8">equipment/override/adult-outfits.xml</sprite>
  </npc>
  <npc id="302">
    <sprite variant="23">model/unique.xml</sprite>
  </npc>
  <npc id="303">
    <sprite variant="6">model/unique.xml</sprite>
  </npc>
  <npc id="304">
    <sprite variant="0">monsters/zombie.xml</sprite>
    <sprite variant="13">equipment/override/adult-outfits.xml</sprite>
  </npc>
  <npc id="305">
    <sprite variant="5">model/unique.xml</sprite>
  </npc>
  <npc id="306" targetCursor="large">
    <sprite variant="7">model/oversized.xml</sprite>
  </npc>
  <npc id="307">
    <sprite variant="7">equipment/override/adult-head.xml</sprite>
    <sprite variant="14">equipment/override/adult-outfits.xml</sprite>
    <sprite variant="6">equipment/override/adult-head.xml</sprite>
  </npc>
  <npc id="308">
    <sprite variant="7">model/unique.xml</sprite>
  </npc>
  <npc id="309">
    <sprite variant="0">monsters/skeleton.xml</sprite>
    <sprite>equipment/legs/chaps.xml</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#580000,A40000,C02020,ff6060</sprite>
    <sprite>equipment/head/tophat.xml</sprite>
    <sprite>equipment/head/mustache.xml|#212121,ffffff</sprite>
  </npc>
  <npc id="310">
    <sprite variant="0">monsters/skeleton.xml</sprite>
    <sprite>monsters/skeleton.xml|#ffe8bf</sprite>
    <sprite>equipment/legs/chaps.xml</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#0d1430,21337c,4363e5</sprite>
    <sprite>equipment/head/bowler-hat.xml</sprite>
    <sprite>equipment/head/mustache.xml|#212121,ffffff</sprite>
  </npc>
  <npc id="311">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle02.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#201818,313031,424242,4e4e4e</sprite>
    <sprite>equipment/feet/boots.xml|#623a34,f0c2b4</sprite>
    <sprite>equipment/legs/chaps.xml</sprite>
    <sprite>equipment/chest/chainmail.xml|#eef1c5,ffffff</sprite>
    <sprite>equipment/chest/warlordplate.xml</sprite>
  </npc>
  <npc id="312">
  </npc>
  <npc id="313">
  </npc>
  <npc id="314">
  </npc>
  <npc id="315">
  </npc>
  <npc id="316">
  </npc>
  <npc id="317">
  </npc>
  <npc id="318">
  </npc>
  <npc id="319">
  </npc>
  <npc id="320">
  </npc>
  <npc id="321">
  </npc>
  <npc id="322">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite variant="7">equipment/weapons/polearm-chop.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d</sprite>
    <sprite>equipment/head/crusadehelm.xml</sprite>
    <sprite>equipment/chest/warlordplate.xml|#573f10,9c8226,d3c04b,ffffff</sprite>
    <sprite>equipment/hands/generic.xml|#4e2e18,c8752f</sprite>
    <sprite>equipment/feet/boots.xml|#212121</sprite>
    <sprite>equipment/legs/terranite.xml</sprite>
  </npc>
  <npc id="324">
    <particlefx>graphics/particles/pentagram-redlinedraw.particle.xml</particlefx>
  </npc>
  <npc id="325">
    <particlefx>graphics/particles/pentagram-blacklinedraw.particle.xml</particlefx>
  </npc>
  <npc id="326">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle05.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#5b280a,994312,c55818,e46c28</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#800000,9d1f1f,b52424,df2c2c,f13030</sprite>
    <sprite>equipment/legs/pants.xml|#592f36,6e3741,803e4b,9a4859,bd5666</sprite>
    <sprite>equipment/feet/boots.xml|#800000,9d1f1f,b52424,df2c2c,f13030</sprite>
  </npc>
  <npc id="327" targetSelection="false" avatar="11"/>
  <npc id="328">
    <sprite variant="6">model/child.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#1f3d23,72982c,ffeebd,ffffff;#3a3a3a,d5d5d5</sprite>
    <sprite variant="9">equipment/override/child-outfits.xml</sprite>
    <sprite variant="5">equipment/override/child-head.xml|#870a0f,931714,d22b27,ff422c</sprite>
  </npc>
  <npc id="329">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite variant="7">equipment/override/adult-outfits.xml</sprite>
    <sprite>equipment/head/santahat.xml|#870a0f,931714,d22b27,ff422c;#7eafee,bbc39c,edf4e1,ffffff</sprite>
  </npc>
  <npc id="330">
    <sprite variant="0">monsters/nutcracker.xml</sprite>
    <sprite>monsters/accessories/hairstyle07.xml|#333333</sprite>
    <sprite>monsters/accessories/nutcrackerhat.xml</sprite>
  </npc>
  <npc id="331">
    <sprite>monsters/christmas-mouboo.xml</sprite>
    <sprite>monsters/accessories/mouboo-red-nose.xml</sprite>
    <sprite>monsters/accessories/mouboo-red-saddle.xml</sprite>
    <sprite>monsters/accessories/mouboo-red-shoes.xml</sprite>
    <sprite>monsters/accessories/mouboo-santa-hat.xml</sprite>
  </npc>
  <npc id="332" targetCursor="large">
    <sprite variant="3">model/oversized.xml</sprite>
  </npc>
  <npc id="333" targetCursor="large">
    <sprite variant="4">model/oversized.xml</sprite>
  </npc>
  <npc id="334" targetCursor="large">
    <sprite variant="5">model/oversized.xml</sprite>
  </npc>
  <npc id="335" targetCursor="large">
    <sprite variant="6">model/oversized.xml</sprite>
  </npc>
  <npc id="340">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/head/minershat-female.xml</sprite>
    <sprite>equipment/chest/cotton-female.xml|#573a26,9e7654,d3b79e,ffffff</sprite>
    <sprite>equipment/legs/pants-female.xml|#2e0890,7898e8</sprite>
    <sprite>equipment/feet/boots-female.xml|#623a34,f0c2b4</sprite>
    <sprite>equipment/weapons/axe-stab-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d</sprite>
  </npc>
  <npc id="344">
    <sprite variant="12">model/unique.xml</sprite>
    <particlefx>graphics/particles/soulmenhir.particle.xml</particlefx>
  </npc>
  <npc id="345">
    <sprite variant="13">model/unique.xml</sprite>
    <particlefx>graphics/particles/soulmenhir.particle.xml</particlefx>
  </npc>
  <npc id="346">
    <sprite variant="14">model/unique.xml</sprite>
    <particlefx>graphics/particles/soulmenhir.particle.xml</particlefx>
  </npc>
  <npc id="347">
    <sprite variant="15">model/unique.xml</sprite>
    <particlefx>graphics/particles/soulmenhir.particle.xml</particlefx>
  </npc>
  <npc id="348">
    <sprite variant="16">model/unique.xml</sprite>
    <particlefx>graphics/particles/soulmenhir.particle.xml</particlefx>
  </npc>
  <npc id="349">
    <sprite variant="17">model/unique.xml</sprite>
    <particlefx>graphics/particles/soulmenhir.particle.xml</particlefx>
  </npc>
  <npc id="350">
    <sprite variant="18">model/unique.xml</sprite>
    <particlefx>graphics/particles/soulmenhir.particle.xml</particlefx>
  </npc>
  <npc id="351">
    <sprite variant="19">model/unique.xml</sprite>
    <particlefx>graphics/particles/soulmenhir.particle.xml</particlefx>
  </npc>
  <npc id="354">
  </npc>
  <npc id="355">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle11-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#bb2222,ffee33</sprite>
    <sprite>equipment/feet/boots-female.xml|#846211,dab333,fffb93,ffffff;#ec3e3e</sprite>
    <sprite>equipment/legs/pants-female.xml|#846211</sprite>
    <sprite>equipment/chest/sorcerer-robe-female.xml|#846211,dab333,fffb93,ffffff;#ec3e3e</sprite>
    <sprite>equipment/head/wizard-hat-female.xml|#846211,dab333,fffb93,ffffff</sprite>
    <sprite>equipment/weapons/polearm-blunt-female.xml|#332c19,443a20,453b1e,61532d,87733d,a58d4d</sprite>
  </npc>
  <npc id="356">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle19-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#b04810</sprite>
    <sprite>equipment/feet/boots-female.xml|#80280f,b04810,ef681f,ffb830</sprite>
    <sprite>equipment/legs/pants-female.xml|#104010,268026,56a743,3e9c3e</sprite>
    <sprite>equipment/chest/sorcerer-robe-female.xml|#80280f,b04810,ef681f,ffb830;#09BC09</sprite>
    <sprite>equipment/head/witch-hat2-female.xml|#80280f,b04810,ef681f,ffb830;#f06ce3</sprite>
    <sprite>equipment/weapons/polearm-blunt-female.xml|#332c19,443a20,453b1e,61532d,87733d,a58d4d</sprite>
  </npc>
  <npc id="357">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle02.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#994312,c55818,e46c28</sprite>
    <sprite>equipment/feet/boots.xml|#104010,208020,30c030</sprite>
    <sprite>equipment/legs/pants.xml|#115511</sprite>
    <sprite>equipment/head/beard.xml|#5b280a,994312,c55818,e46c28</sprite>
    <sprite>equipment/chest/sorcerer-robe.xml|#115511,22aa22,99dd99;#ec3e3e</sprite>
    <sprite>equipment/head/wizard-hat.xml|#104010,208020,30c030</sprite>
    <sprite>equipment/weapons/polearm-blunt.xml|#332c19,443a20,453b1e,61532d,87733d,a58d4d</sprite>
  </npc>
  <npc id="358">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle18.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#817339,FFE87C</sprite>
    <sprite>equipment/feet/boots.xml|#4f0a76,8010c0,d699f7;#ec3e3e</sprite>
    <sprite>equipment/legs/pants.xml|#4f0a76</sprite>
    <sprite>equipment/chest/sorcerer-robe.xml|#4f0a76,8010c0,d699f7;#ec3e3e</sprite>
    <sprite>equipment/head/wizard-hat.xml|#4f0a76,8010c0,d699f7</sprite>
  </npc>
  <npc id="359">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle02.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#201818,313031,424242,4e4e4e</sprite>
    <sprite>equipment/feet/boots.xml|#56002f,930050,fe70bd,feb7de,ffffff;#ec3e3e</sprite>
    <sprite>equipment/legs/pants.xml|#56002f</sprite>
    <sprite>equipment/chest/sorcerer-robe.xml|#56002f,930050,fe70bd,feb7de,ffffff;#ec3e3e</sprite>
    <sprite>equipment/head/wizard-hat.xml|#56002f,930050,fe70bd,feb7de,ffffff</sprite>
    <sprite>equipment/weapons/polearm-blunt.xml|#332c19,443a20,453b1e,61532d,87733d,a58d4d</sprite>
  </npc>
  <npc id="360">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle01-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#69006a,880884,a404a2,c000c0,ff40ff</sprite>
    <sprite>equipment/feet/boots-female.xml|#070707,202020,303030,404040</sprite>
    <sprite>equipment/legs/pants-female.xml|#070707</sprite>
    <sprite>equipment/chest/robe-female.xml|#000000</sprite>
    <sprite>equipment/head/wizard-hat-female.xml|#070707,202020,303030,404040</sprite>
    <sprite>equipment/weapons/polearm-stab-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d</sprite>
  </npc>
  <npc id="361">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle11-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#dbd41e,867f1a,a49c2e,b2aa4f,c6c170,d9d394,e0dcb3</sprite>
    <sprite>equipment/feet/boots-female.xml|#070707,202020,303030,404040</sprite>
    <sprite>equipment/legs/pants-female.xml|#070707</sprite>
    <sprite>equipment/chest/robe-female.xml|#5e7480,f1ffff,ffffff</sprite>
    <sprite>equipment/head/circlet-female.xml</sprite>
    <sprite>equipment/weapons/polearm-stab-female.xml|#48488c,48488e,48488f,695c21,5f5fbe,827229,6e6edb,9493a4,a4adff,bab8c2,bcbbc6,e3eaff;#332c19,443a20,453b1e,61532d,87733d,a58d4d</sprite>
  </npc>
  <npc id="362">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle02.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#5b280a,994312,c55818,e46c28</sprite>
    <sprite>equipment/feet/boots.xml|#212121</sprite>
    <sprite>equipment/legs/pants.xml|#222255</sprite>
    <sprite>equipment/chest/sorcerer-robe.xml|#222255,6666ff;#2050BE</sprite>
    <sprite>equipment/head/beard.xml|#5b280a,994312,c55818,e46c28</sprite>
    <sprite>equipment/head/woolen.xml|#222255,EFEFEF</sprite>
    <sprite variant="6">equipment/override/adult-outfits.xml</sprite>
  </npc>
  <npc id="363">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle08-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#994312,c55818,e46c28</sprite>
    <sprite>equipment/feet/boots-female.xml|#212121</sprite>
    <sprite>equipment/legs/pants-female.xml|#16486e,498ec5,e4f2fc</sprite>
    <sprite>equipment/chest/sorcerer-robe-female.xml|#16486e,498ec5,e4f2fc;#8000FF</sprite>
    <sprite>equipment/head/funkywinter-female.xml</sprite>
  </npc>
  <npc id="365">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle02.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#994312,c55818,e46c28</sprite>
    <sprite>equipment/feet/boots.xml|#212121</sprite>
    <sprite>equipment/head/beard.xml|#994312,c55818,e46c28</sprite>
    <sprite>equipment/legs/pants.xml|#498ec5</sprite>
    <sprite>equipment/chest/sorcerer-robe.xml|#16486e,498ec5,e4f2fc;#41B3FF</sprite>
    <sprite>equipment/head/santahat.xml|#16486e,498ec5,e4f2fc;#7eafee,bbc39c,edf4e1,ffffff</sprite>
  </npc>
  <npc id="366">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle02.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#5b280a,994312,c55818</sprite>
    <sprite>equipment/feet/boots.xml|#212121</sprite>
    <sprite>equipment/head/beard.xml|#5b280a,994312,c55818</sprite>
    <sprite>equipment/legs/pants.xml|#498ec5</sprite>
    <sprite>equipment/chest/sorcerer-robe.xml|#222255,6666ff;#EFEFEF</sprite>
    <sprite>equipment/head/santahat.xml|#16486e,498ec5,e4f2fc;#7eafee,bbc39c,edf4e1,ffffff</sprite>
  </npc>
  <npc id="367">
    <sprite variant="8">monsters/skeleton.xml</sprite>
  </npc>
  <npc id="368">
    <particlefx>graphics/particles/power-circle.particle.xml</particlefx>
  </npc>
  <npc id="369">
    <particlefx>graphics/particles/enchanted-door.particle.xml</particlefx>
  </npc>
  <npc id="370">
    <particlefx>graphics/particles/power-circle.particle.xml</particlefx>
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle11-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#602486,934cc3,fdc689</sprite>
    <sprite>equipment/feet/assassin-boots-female.xml</sprite>
    <sprite>equipment/legs/shorts-female.xml|#121212,343434</sprite>
    <sprite>equipment/chest/sorcerer-robe-female.xml|#121212,343434;#468AD6</sprite>
    <sprite>equipment/head/wizard-hat-female.xml|#070707,121212,5B9BC2</sprite>
  </npc>
  <npc id="371">
    <particlefx>graphics/particles/monster-luvia.particle.xml</particlefx>
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle11-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#8c6625,dab425,ffffff</sprite>
    <sprite>equipment/feet/assassin-boots-female.xml</sprite>
    <sprite>equipment/legs/shorts-female.xml|#121212,343434</sprite>
    <sprite>equipment/chest/sorcerer-robe-female.xml|#121212,343434;#8F47D6</sprite>
    <sprite>equipment/head/wizard-hat-female.xml|#070707,121212,663399</sprite>
  </npc>
  <npc id="372">
  </npc>
  <npc id="374">
    <particlefx>graphics/particles/demonfire.particle.xml</particlefx>
  </npc>
  <npc id="375" hoverCursor="pickup">
    <sprite variant="3">model/unique.xml</sprite>
  </npc>
  <npc id="376">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle11-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#dbd41e,867f1a,a49c2e,b2aa4f,c6c170,d9d394,e0dcb3</sprite>
    <sprite>equipment/chest/sorcerer-robe-female.xml|#115511,22aa22,99dd99;#FFF528</sprite>
  </npc>
  <npc id="377">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle05-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#8c6625,dab425,ffffff</sprite>
    <sprite>equipment/head/silkheadband-female.xml|#412300,c9866b,8d4900</sprite>
    <sprite>equipment/chest/leather-female.xml|#573a26,c9866b,d3b79e,ffffff;#b96b3d,fbf5f1</sprite>
    <sprite>equipment/legs/pants-female.xml|#2a2117,2f2112,493219,61411e,724c22,a97e4f</sprite>
    <sprite>equipment/feet/furboots-female.xml</sprite>
  </npc>
  <npc id="378">
    <sprite variant="9">model/unique.xml</sprite>
  </npc>
  <npc id="379" targetSelection="false">
  </npc>
  <npc id="380" targetSelection="false">
  </npc>
  <npc id="381" targetSelection="false">
  </npc>
  <npc id="382" targetSelection="false">
  </npc>
  <npc id="383" targetSelection="false">
  </npc>
  <npc id="384" targetSelection="false">
  </npc>
  <npc id="385">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/feet/boots.xml|#490000,b66d49</sprite>
    <sprite variant="0">equipment/override/adult-outfits.xml</sprite>
    <particlefx>graphics/particles/sphere-white.particle.xml</particlefx>
  </npc>
  <npc id="386">
  </npc>
  <npc id="393">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#FF2615</sprite>
    <sprite>hairstyles/hairstyle00-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/chest/tanktop-female.xml|#bf369b,f25cb1,ff87b7,ffcccf</sprite>
    <sprite>equipment/legs/skirt-female.xml|#bf369b,f25cb1,ff87b7,ffcccf</sprite>
    <sprite>equipment/head/moubootaurhead-female.xml</sprite>
  </npc>
  <npc id="394" targetSelection="false">
  </npc>
  <npc id="395" targetCursor="large">
  </npc>
  <npc id="396">
  </npc>
  <npc id="397">
  </npc>
  <npc id="398">
  </npc>
  <npc id="399" hoverCursor="action"/>
  <!-- ID 400 reserved - NPC_NO_SPRITE -->
  <npc id="400"/>
  <npc id="401">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/legs/terranite-female.xml</sprite>
    <sprite>equipment/chest/terranite-female.xml</sprite>
    <sprite>equipment/head/terranitehelm-female.xml</sprite>
  </npc>
  <npc id="402">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/legs/terranite.xml</sprite>
    <sprite>equipment/chest/terranite.xml</sprite>
    <sprite>equipment/head/terranitehelm.xml</sprite>
  </npc>
  <npc id="403">
    <sprite>monsters/terranite.xml</sprite>
  </npc>
  <npc id="404">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle11-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#bb2222,ffee33</sprite>
    <sprite>equipment/feet/boots-female.xml</sprite>
    <sprite>equipment/chest/robe-female.xml|#ffffff</sprite>
    <sprite>equipment/head/deserthat-female.xml|#ffffff</sprite>
    <sprite>equipment/feet/boots-female.xml|#a4b2b2,ffffff</sprite>
  </npc>
  <npc id="405">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle18.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#817339,FFE87C</sprite>
    <sprite>equipment/legs/chaps.xml</sprite>
    <sprite>equipment/chest/tanktop.xml</sprite>
    <sprite>equipment/chest/robe.xml|#ffffff</sprite>
    <sprite>equipment/head/deserthat.xml|#ffffff</sprite>
    <sprite>equipment/feet/boots.xml|#a4b2b2,ffffff</sprite>
  </npc>
  <npc id="406">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle11-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#bb2222,ffee33</sprite>
    <sprite>equipment/feet/boots-female.xml</sprite>
    <sprite>equipment/chest/leather-female.xml|#412300,603100,8d4900;#ffff00</sprite>
    <sprite>equipment/legs/skirt-female.xml|#2a2117,2f2112,493219,61411e,724c22,a97e4f</sprite>
    <sprite>equipment/hands/generic-female.xml|#4e2e18,c8752f</sprite>
    <sprite>equipment/head/minershat-female.xml</sprite>
  </npc>
  <npc id="407">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle14.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#817339,FFE87C</sprite>
    <sprite>equipment/legs/pants.xml|#2a2117,2f2112,493219,61411e,724c22,a97e4f</sprite>
    <sprite>equipment/feet/boots.xml|#623a34,f0c2b4</sprite>
    <sprite>equipment/head/minershat.xml</sprite>
    <sprite>equipment/hands/generic.xml|#4e2e18,c8752f</sprite>
    <sprite>equipment/chest/leather.xml|#573a26,9e7654,d3b79e,ffffff;#b96b3d,fbf5f1</sprite>
  </npc>
  <npc id="408">
  </npc>
  <npc id="409">
    <sprite>monsters/skeleton.xml</sprite>
    <sprite>monsters/accessories/hairstyle13.xml|#878787,a8a8a8,cacaca,fdfdfd</sprite>
    <sprite>equipment/chest/cotton.xml|#291b07,4a310c,6c4818,7a5525,89693b,9c7b52,af946e</sprite>
    <sprite>equipment/legs/skirt.xml|#39230f,4e2f14,5e3817,6b4422,79502e,815d3b,926d4f</sprite>
    <sprite>equipment/feet/boots.xml|#4f2d29,c89078</sprite>
  </npc>
  <npc id="410" targetSelection="false">
    <sprite variant="0">model/city-emblems.xml</sprite>
  </npc>
  <npc id="411" targetSelection="false">
    <sprite variant="4">model/city-emblems.xml</sprite>
  </npc>
  <npc id="412" targetSelection="false">
    <sprite variant="1">model/city-emblems.xml</sprite>
  </npc>
  <npc id="413" targetSelection="false">
    <sprite variant="5">model/city-emblems.xml</sprite>
  </npc>
  <npc id="414" targetSelection="false">
    <sprite variant="2">model/city-emblems.xml</sprite>
  </npc>
  <npc id="415" targetSelection="false">
    <sprite variant="6">model/city-emblems.xml</sprite>
  </npc>
  <npc id="416" targetSelection="false">
    <sprite variant="3">model/city-emblems.xml</sprite>
  </npc>
  <npc id="417" targetSelection="false">
    <sprite variant="7">model/city-emblems.xml</sprite>
  </npc>
  <npc id="418">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/legs/pants.xml|#2a2117,2f2112,493219,61411e,724c22,a97e4f</sprite>
    <sprite>equipment/chest/sorcerer-robe.xml|#2a2117,2f2112,493219,61411e,724c22,a97e4f;#2a2117</sprite>
    <sprite>equipment/feet/boots.xml|#2a2117,2f2112,493219,61411e,724c22,a97e4f</sprite>
    <sprite>equipment/chest/tanktop.xml|#2a2117,2f2112,493219,61411e,724c22,a97e4f</sprite>
    <sprite>equipment/head/gasmask.xml</sprite>
  </npc>
  <npc id="419">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle00.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/head/knighthelm.xml</sprite>
    <sprite>equipment/chest/chainmail.xml|#eef1c5,ffffff</sprite>
    <sprite>equipment/legs/pants.xml|#001720,001b25,003e55,035776</sprite>
    <sprite>equipment/chest/vnecksweater.xml|#001720,001b25,003e55,035776</sprite>
    <sprite>equipment/feet/boots.xml|#623a34,f0c2b4</sprite>
  </npc>
  <npc id="420">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle08.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#000000,202020,404040,dddddd</sprite>
    <sprite>equipment/feet/assassin-boots.xml</sprite>
    <sprite>equipment/legs/shorts.xml|#121212,343434</sprite>
    <sprite>equipment/chest/robe.xml|#ffffff</sprite>
    <!-- No folder for this -->
    <sprite>equipment/angel-wings.xml</sprite>
    <sprite>equipment/head/aureole.xml</sprite>
    <particlefx>graphics/particles/angel.particle.xml</particlefx>
  </npc>
  <npc id="421">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle08.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#000000,202020,404040,dddddd</sprite>
    <sprite>equipment/head/knighthelm.xml</sprite>
    <sprite>equipment/feet/assassin-boots.xml</sprite>
    <sprite>equipment/legs/shorts.xml|#121212,343434</sprite>
    <sprite>equipment/chest/robe.xml|#ffffff</sprite>
    <!-- No folder for this -->
    <sprite>equipment/angel-wings.xml</sprite>
    <sprite>equipment/head/aureole.xml</sprite>
    <particlefx>graphics/particles/angel.particle.xml</particlefx>
  </npc>
  <npc id="422">
  </npc>
  <npc id="423">
  </npc>
  <npc id="424">
    <particlefx>graphics/particles/pentagram-blacklinedraw.particle.xml</particlefx>
    <particlefx>graphics/particles/circle-magic.xml</particlefx>
    <particlefx>graphics/particles/power-circle.particle.xml</particlefx>
  </npc>
  <npc id="425">
  </npc>
  <npc id="426">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle18.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#5E7480,F1FFFF,FFFFFF</sprite>
    <sprite>equipment/feet/furboots.xml</sprite>
    <sprite>equipment/legs/pants.xml|#a4b2b2,ffffff</sprite>
    <sprite>equipment/chest/sorcerer-robe.xml|#000000;#2554c7</sprite>
    <!-- No folder for this -->
    <sprite>equipment/angel-wings.xml</sprite>
    <sprite>equipment/head/aureole.xml</sprite>
    <particlefx>graphics/particles/angel.particle.xml</particlefx>
  </npc>
  <npc id="427">
  </npc>
  <npc id="428">
  </npc>
  <npc id="429">
    <sprite>model/base.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite variant="0">equipment/override/adult-head.xml</sprite>
    <sprite variant="14">equipment/override/adult-outfits.xml</sprite>
    <sprite variant="2">equipment/override/adult-head.xml</sprite>
  </npc>
  <npc id="430">
    <sprite>model/female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5;#3a3a3a,d5d5d5</sprite>
    <sprite>hairstyles/hairstyle19-female.xml|#53202b,7f4f45,9e6a43,d09459,fcd3a1,fefffc;#2f312f,727471,a4a6a3,dad5f5</sprite>
    <sprite>equipment/feet/furboots-female.xml</sprite>
    <sprite>equipment/legs/pants-female.xml|#a4b2b2,ffffff</sprite>
    <sprite>equipment/chest/sorcerer-robe-female.xml|#000000;#2554c7</sprite>
    <sprite>equipment/angel-wings.xml</sprite>
    <sprite>equipment/head/bunnyears-female.xml</sprite>
    <sprite>equipment/head/afkcap.xml</sprite>
  </npc>
</npcs>