summaryrefslogtreecommitdiff
path: root/npc/re/events/christmas_2013.txt
blob: 8ebf5879ab4e79b8fee9ccf466b0b5c160a0c8ff (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
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
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
//================= Hercules Script =======================================
//=       _   _                     _
//=      | | | |                   | |
//=      | |_| | ___ _ __ ___ _   _| | ___  ___
//=      |  _  |/ _ \ '__/ __| | | | |/ _ \/ __|
//=      | | | |  __/ | | (__| |_| | |  __/\__ \
//=      \_| |_/\___|_|  \___|\__,_|_|\___||___/
//================= License ===============================================
//= This file is part of Hercules.
//= http://herc.ws - http://github.com/HerculesWS/Hercules
//=
//= Copyright (C) 2015  Hercules Dev Team
//= Copyright (C)  Euphy
//=
//= Hercules is free software: you can redistribute it and/or modify
//= it under the terms of the GNU General Public License as published by
//= the Free Software Foundation, either version 3 of the License, or
//= (at your option) any later version.
//=
//= This program is distributed in the hope that it will be useful,
//= but WITHOUT ANY WARRANTY; without even the implied warranty of
//= MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//= GNU General Public License for more details.
//=
//= You should have received a copy of the GNU General Public License
//= along with this program.  If not, see <http://www.gnu.org/licenses/>.
//=========================================================================
//= iRO/kRO 2013 Christmas Event
//================= Description ===========================================
//= Join the Singles Union Army to break up couples and hunt raccoons for
//= rewards.
//================= Current Version =======================================
//= 1.0
//=========================================================================

//== Main Quest :: 2013_xmas_en ============================
xmas,150,134,3	script	Union Commander Cliff	4_XMAS_CAT1,{
	if (BaseLevel < 40) {
		mes "[Union Commander Cliff]";
		mes "No words for noob!! Level 40 below cannot join Singles Union Army!";
		close;
	}
	if (checkweight(Knife,1) == 0 || Weight >= MaxWeight) {
		mes "^ff0000You are overweight. Check your inventory and speak to me later.^000000";
		close;
	}
	.@playtime = questprogress(15059,PLAYTIME);
	if (.@playtime == 1) {
		mes "- You can repeat this quest after 24 hours.";
		close;
	} else if (.@playtime > 1) {
		erasequest 15059;
		xmas2013_01 = 0;
	}
	if (questprogress(15057) == 1) {
		if (countitem(Stolen_Cookie) < 10 || countitem(Stolen_Candy) < 10 || countitem(Bag_Of_Selling_Goods) < 10) {
			mes "[Union Commander Cliff]";
			mes "We need more materials to hold a Christmas party for the Singles Union Army!";
			next;
			mes "[Union Commander Cliff]";
			mes "Bring ^ff000010 Stolen Cookie, 10 Stolen Candy, and 10 Bag Of Selling Goods^000000 from those damn raccoons!";
			close;
		}
		mes "[Union Commander Cliff]";
		mes "Did you kick the ass of the Raccoon Hooray team? Oh! You've brought all the items we need. We will be able to feel some Christmas mood with it!";
		next;
		mes "[Union Commander Cliff]";
		mes "I will take ALL the items you brought. For that, I'll give you an exclusive reward only for Singles Union Army. You-must-open-it-ALONE!";
		next;
		if (countitem(Stolen_Cookie) < 10 || countitem(Stolen_Candy) < 10 || countitem(Bag_Of_Selling_Goods) < 10) {
			mes "[Union Commander Cliff]";
			mes "Hold on, there aren't enough items here!";
			close;
		}
		mes "[Union Commander Cliff]";
		mes "Seize the holiday!";
		mes "Glory to the Singles Union Army! hihihi HAHAHAHA!!";
		delitem Stolen_Cookie, countitem(Stolen_Cookie); //Stolen_Cookie
		delitem Stolen_Candy, countitem(Stolen_Candy); //Stolen_Candy
		delitem Bag_Of_Selling_Goods, countitem(Bag_Of_Selling_Goods); //Bag_Of_Selling_Goods
		erasequest 15057;
		setquest 15059;
		getitem Solo_Christmas_Gift,1; //Solo_Christmas_Gift
		specialeffect(EF_MAGICALATTHIT, AREA, playerattached());
		specialeffect(EF_POTION2, AREA, playerattached());
		specialeffect(EF_ANGEL2, AREA, playerattached());
		close;
	}
	if (questprogress(15056) == 1) {
		if (xmas2013_01 < 5) {
			mes "[Union Commander Cliff]";
			mes "You have a total of " + xmas2013_01 + " couple breaking points.";
			mes "Break up at least 5 couples and come back to me!";
			close;
		}
		mes "[Union Commander Cliff]";
		mes "Yes! You did it!! More and more are joining the Singles Union Army!! hihihi HAHAHA-HAK! Victory is ours!!";
		erasequest 15056;
		setquest 15057;
		getitem Solo_Cookie,5; //Solo_Cookie
		next;
		mes "[Union Commander Cliff]";
		mes "BUT!!! While we're busy breaking up couples, those damn Raccoon Hooray brats stole most of our items. Without it, we cannot get the feel of Christmas mood.";
		next;
		mes "[Union Commander Cliff]";
		mes "It's time to punish them and reclaim the items for the Singles Union Army!!";
		next;
		mes "[Union Commander Cliff]";
		mes "^ff0000>10 Stolen Cookie, 10 Stolen Candy and 10 Bag Of Selling Goods^000000 should be enough for the party. Find the raccoons on field maps and dungeons!";
		next;
		mes "[Union Commander Cliff]";
		mes "It doesn't matter if you brought more, I will take them ALL!!";
		close;
	}
	if (questprogress(15055) == 1) {
		if (questprogress(15060) < 2 || questprogress(15061) < 2
		 || questprogress(15062) < 2 || questprogress(15063) < 2
		 || questprogress(15064) < 2) {
			mes "[Union Commander Cliff]";
			mes "No time to waste!";
			mes "Go find 5 singles in Lutie and make them join!";
			close;
		}
		mes "[Union Commander Cliff]";
		mes "Good job! I've met them all! They are worthy to join our cause hihihi HAHAHA-HAK!!";
		next;
		mes "[Union Commander Cliff]";
		mes "While you were gathering more Singles Union Army members, I've made badges..";
		next;
		mes "[Union Commander Cliff]";
		mes "It might not be useful but this kind of small token can make our bonds solid and strong!";
		next;
		mes "[Union Commander Cliff]";
		mes "Well, take this! Now you are the proud member of Singles Union Army!!";
		xmas2013_01 = 0;
		completequest 15055;
		getitem Solo_Troops_Badge,1; //Solo_Troops_Badge
		next;
		// fall through to the next branch
	}
	if (questprogress(15055) == 2) {
		mes "[Union Commander Cliff]";
		mes "Now it is time to show our power to couples as we've got enough members!!";
		next;
		mes "[Union Commander Cliff]";
		mes "On to the second mission!";
		mes "Go to Lutie and make couples separate. Doesn't matter how you do it, just them break up!!";
		mes "hihihi HAHAHA-HAK!";
		next;
		mes "[Union Commander Cliff]";
		mes "Well there is one more thing...";
		mes "When you disturb couple, if they broke up, you will gain 2 point, in case of just simple argument will grant you 1 point.";
		mes "But if they become more into each others, your score will be minus 1 point. So when you got 5 points and come here for report, it means mission accomplished.";
		next;
		mes "[Union Commander Cliff]";
		mes "Surely you won't have minus score so don't worry.";
		if (!questprogress(15056))
			setquest 15056;
		close;
	}
	// else: (questprogress(15055) == 0)
	mes "[Union Commander Cliff]";
	mes "Hey you!! Yes! You right there! You!!";
	next;
	mes "[Union Commander Cliff]";
	mes "Let me ask you bluntly.";
	mes "You must be single. I've got a feeling. Right?!??";
	next;
	if (select("- ...maybe...?", "WHAT! I'm in a relationship!!") == 2) {
		mes "[Union Commander Cliff]";
		mes "What? ...in a relationship?!!";
		mes "...Not single, but a couple...";
		mes "......";
		mes "Damn you! Taste the wrath of the Singles Union Army!!!";
		close2;
		specialeffect(EF_MAGICALATTHIT, AREA, playerattached());
		specialeffect(EF_POTION2, AREA, playerattached());
		specialeffect(EF_CRASHEARTH, AREA, playerattached());
		specialeffect(EF_COIN, AREA, playerattached());
		end;
	}
	mes "[Union Commander Cliff]";
	mes "hihihi HAHAHA-HAK!";
	mes "I knew it! First glance I can tell!";
	mes "Don't underestimate me, I've been single all my life! hihihi HAHAHA-HAK!";
	mes "My name is Union Commander Cliff!";
	next;
	mes "[Union Commander Cliff]";
	mes "Anyway, this December, the day is coming....";
	next;
	mes "[Union Commander Cliff]";
	mes "Christmas songs everywhere, bright colored lights, pouring white snow, and couples seeing each other with smile on their faces...couples...COUPPPLEEES...!!!!";
	next;
	mes "[Union Commander Cliff]";
	mes "In the beginning was a celebration of the birth of our Lord! Then, why...how...when did it became a day for couples??!";
	next;
	mes "[Union Commander Cliff]";
	mes "I can't stand this....";
	mes "I will not forgive them for the happiness they bring only for themselves!!";
	next;
	mes "[Union Commander Cliff]";
	mes "Christmas for couples?";
	mes "No way! This Christmas will be a day for singles!!";
	next;
	mes "[Union Commander Cliff]";
	mes "However, I will need members to stand against them. Its name would be, Singles Union Army!!";
	next;
	mes "[Union Commander Cliff]";
	mes "What do you think? Would you join my Singles Union Army and make Christmas day for singles?";
	next;
	select("Count me in!", "I'll help.", "I can't say no, can I?");
	mes "[Union Commander Cliff]";
	mes "Yeah! That's it! but we need more members to stand against couples.";
	next;
	mes "[Union Commander Cliff]";
	mes "Here is your first mission!";
	mes "Go find someone in Lutie and make them join us. 5 singles should be enough, now gogogo~!";
	mes "hihihi HAHAHA-HAK!";
	setquest 15055;
	close;
}

xmas,172,126,3	script	Lonely Kwami#xmas	4_XMAS_CAT4,{
	if (!questprogress(15055)) {
		mes "[Kwami]";
		mes "Haa.....breaking up right before Christmas....I'm alone...a single! ...AM I??!!";
		close;
	}
	if (questprogress(15055) == 1 && !questprogress(15060)) {
		mes "[Kwami]";
		mes "Haa.....breaking up right before Christmas....I'm alone...a single! ...AM I??!!";
		next;
		mes "[Kwami]";
		mes "Who are you!?";
		mes "What's your business with me?";
		next;
		select("- Singles Union Army has come to you. -");
		mes "[Kwami]";
		mes "err? Singles Union Army? What is that?";
		next;
		select("- Explain about the club -");
		mes "[Kwami]";
		mes "...yeah. You're right!";
		next;
		mes "[Kwami]";
		mes "As I'm single! I'd never let couples enjoy this Christmas!!";
		next;
		mes "[Kwami]";
		mes "I will join to the Singles Union Army!!";
		next;
		mes "- Kwami has become a member of Singles Union Army. -";
		setquest 15060;
		completequest 15060;
		close;
	}
	mes "[Singles Union Kwami]";
	mes "First of all, I've got to have revenge on my ex...No?";
	close;
}

xmas,113,161,5	script	Lonely Willer#xmas	4_XMAS_CAT5,{
	if (!questprogress(15055)) {
		mes "[Willer]";
		mes "Hoooooo... it is so boring to play alone....";
		close;
	}
	if (questprogress(15055) == 1 && !questprogress(15061)) {
		mes "[Willer]";
		mes "Hoooooo... it is so boring to play alone....";
		next;
		mes "[Willer]";
		mes "Isn't there anything exciting?";
		mes "...hey, would you play with me??";
		next;
		select("- Singles Union Army has come to you. -");
		mes "[Willer]";
		mes "Singles Union what? Why come to me?";
		next;
		select("- Explain about the club -");
		mes "[Willer]";
		mes "Sooo...";
		mes "Break up couples and make Christmas party only for singles?";
		next;
		mes "[Willer]";
		mes "That must be fun! I don't understand exactly but I will join, I'm in!!";
		next;
		mes "- Willer has become a member of Singles Union Army. -";
		setquest 15061;
		completequest 15061;
		close;
	}
	mes "[Singles Union Willer]";
	mes "Break up couples...this should be fun!!";
	close;
}

xmas,131,97,5	script	Lonely Rinka#xmas	4_XMAS_CAT6,{
	if (!questprogress(15055)) {
		mes "[Rinka]";
		mes "Ewww! darn... what kind of friend would only boast about her boyfriend, disgusting! Does she really think that I can't have one?!?";
		close;
	}
	if (questprogress(15055) == 1 && !questprogress(15062)) {
		mes "[Rinka]";
		mes "Ewww! Darn... what kind of friend would only boast about her boyfriend, disgusting! Does she really think that I can't have one?!?";
		next;
		mes "[Rinka]";
		mes "- sobbing -";
		next;
		mes "[Rinka]";
		mes "I can't... in fact, there is no one... I have no one!!!!!!!!!!!!!!";
		next;
		select("- Singles Union Army has come to you. -");
		mes "[Rinka]";
		mes "EEeepp! Wow!!";
		mes "You surprised me. What are you talking about, what is that?!";
		next;
		select("- Explain about the club -");
		mes "[Rinka]";
		mes "Hoho...there's something like that?";
		mes "Breaking up couples...";
		mes "Okay! Let me join!";
		next;
		mes "[Rinka]";
		mes "Is there room for another member?";
		mes "...soon another member will join!";
		mes "Wait for it~ my friend!! ...";
		next;
		mes "- Rinka has become a member of Singles Union Army. -";
		setquest 15062;
		completequest 15062;
		close;
	}
	mes "[Singles Union Rinka]";
	mes "Wait for it~ my friend!! You will... join soon!!";
	close;
}

xmas,121,127,5	script	Lonely Jee#xmas	4_XMAS_CAT3,{
	if (!questprogress(15055)) {
		mes "[Jee]";
		mes "How beautiful to be single...";
		close;
	}
	if (questprogress(15055) == 1 && !questprogress(15063)) {
		mes "[Jee]";
		mes "How beautiful to be single...";
		next;
		mes "[Jee]";
		mes "There is no one to bother you. No one to take care of. No more extra work from others. More time to spend it alone.";
		next;
		mes "[Jee]";
		mes "Why are people giving up this advantage and want to be couples??";
		next;
		select("- Singles Union Army has come to you. -");
		mes "[Jee]";
		mes "Yeah, I've heard of it recently. I knew that you would come to me.";
		next;
		mes "[Jee]";
		mes "No more words necessary. I will spread the advantage of being single!";
		next;
		mes "- Jee has become a member of Singles Union Army. -";
		setquest 15063;
		completequest 15063;
		close;
	}
	mes "[Singles Union Jee]";
	mes "I will spread the advantage of being single!";
	close;
}

xmas,150,169,3	script	Lonely Marty#xmas	4_XMAS_CAT2,{
	if (!questprogress(15055)) {
		mes "[Marty]";
		mes "umm... Zzz ... nyam-nyam...";
		close;
	}
	if (questprogress(15055) == 1 && !questprogress(15064)) {
		mes "[Marty]";
		mes "umm... Zzz ... nyamnyam...";
		next;
		select("- Singles Union Army has come to you. -");
		mes "[Marty]";
		mes "nyam.... nyamnyam... Grrr... Zzz";
		next;
		select("- Explain about the club -");
		mes "[Marty]";
		mes "Huum... nyaaa.... Zzz";
		next;
		mes "- ...you may consider him to agree to join. -";
		next;
		mes "- Marty has become a member of Singles Union Army. -";
		setquest 15064;
		completequest 15064;
		close;
	}
	mes "[Singles Union Marty]";
	mes "nyam.... nyamnyam... Grrrr... Zzz";
	close;
}

xmas,108,149,5	script	Drop Machine#xmas	2_DROP_MACHINE,{
	if (!questprogress(15056)) {
		mes "[Drop Machine]";
		mes "Dingding dong Ding!~";
		emotion e_lv;
		next;
		mes "[Slot Machine]";
		mes "!~";
		emotion e_lv,0,"Slot Machine#xmas";
		close;
	}
	if (questprogress(15056) == 1) {
		if (xmas2013_01 >= 5) {
			mes "- Couple breaking point";
			mes "- is now more than 5.";
			mes "- I should go back to Union Commander Cliff.";
			close;
		}
		mes "[Drop Machine]";
		mes "Dingdingding ding!~";
		emotion e_lv;
		next;
		mes "[Slot Machine]";
		mes "Charrrrr Sharrrrrrrr Ding!~";
		emotion e_lv,0,"Slot Machine#xmas";
		next;
		mes "- Oh no, another couple!";
		mes "- Even though they're just machines...";
		mes "- I cannot bear to see this!";
		next;
		select("- Run the machine to full power. -");
		mes "[Drop Machine]";
		mes "Ding ding ding dong ding ding ding dong Ding ding ding dong ding ding ding dong";
		next;
		mes "[Slot Machine]";
		mes "Krrrrrrrrrr Dingding dong Krrrrrr Dingding Krrrrrrrrrrr ding Krrrrrrrrr";
		next;
		hideonnpc "Drop Machine#xmas";
		hideonnpc "Slot Machine#xmas";
		initnpctimer;
		.@cu_bre = rand(1,10);
		if (.@cu_bre < 3) {
			xmas2013_01 += 2;
			mes "- I...";
			mes "- I think I broke them both!";
			mes "- Successfully broke up a couple!";
			mes "- 2 Points for a great job!";
		} else if (.@cu_bre > 7) {
			if (xmas2013_01 > 0)
				xmas2013_01--;
			mes "- I ran the machine for a while";
			mes "- But the sound of the machine";
			mes "- seems to grow louder.";
			mes "- Failed to break them, minus 1 point!";
		} else {
			xmas2013_01++;
			mes "- After running the machine for a while";
			mes "- I think I finally broke one of them!";
			mes "- Here's 1 point for a good job!";
		}
		mes "- Current couple breaking point is " + xmas2013_01 + ".";
		close;
	}
	end;

OnTimer100000:
	hideoffnpc "Drop Machine#xmas";
	hideoffnpc "Slot Machine#xmas";
	stopnpctimer;
	end;
}

xmas,111,149,3	script	Slot Machine#xmas	2_SLOT_MACHINE,{
	end;
}

xmas,181,150,5	script	Frightened Man#xmas	4_F_05,{
	if (!questprogress(15056)) {
		mes "[Frightened Man]";
		mes "It's my fault, I'm sorry. Please don't be mad.";
		emotion e_sry;
		next;
		mes "[Angry Woman]";
		mes "You're sorry? Do you know what you did? Do you have any idea why I'm mad?";
		emotion e_an,0,"Angry Woman#xmas";
		close;
	}
	if (questprogress(15056) == 1) {
		if (xmas2013_01 >= 5) {
			mes "- Couple breaking point";
			mes "- is now more than 5.";
			mes "- I should go back to Union Commander Cliff.";
			close;
		}
		mes "[Frightened Man]";
		mes "It's my bad, I'm sorry. Please don't be mad";
		emotion e_sry;
		next;
		mes "[Angry Woman]";
		mes "You're sorry? Do you know what you did? Do you have any idea why I'm mad?";
		emotion e_an,0,"Angry Woman#xmas";
		next;
		mes "[Frightened Man]";
		mes "Well, I just feel like everything's my fault";
		next;
		mes "[Angry Woman]";
		mes "You're always like this!";
		mes "You never know what you should apologize for!!";
		next;
		mes "[Frightened Man]";
		mes "Ah... What should I do?";
		mes "Hey, what do you think I should say to my girlfriend?";
		next;
		select("- Tell her 'We should stop seeing each other'!");
		mes "[Frightened Man]";
		mes "Maybe we.. should stop seeing each other?";
		mes "Oh no, I just said it out loud!";
		next;
		hideonnpc "Frightened Man#xmas";
		hideonnpc "Angry Woman#xmas";
		initnpctimer;
		.@cu_bre = rand(1,10);
		if (.@cu_bre < 3) {
			xmas2013_01 += 2;
			mes "[Angry Woman]";
			mes "What? What did you just say? We should stop seeing each other? How could you say that to me?! You're the one who's done everything wrong! Okay, you know what? Let's just break up! I'm sick of all this!";
			next;
			mes "[Frightened Man]";
			mes "No, that's not what I... okay, that's it! I'm sick of this too, sick of you whining all the time! Let's just end this today!!";
			next;
			mes "- Successfully broke up a couple!!";
			mes "- 2 Points!";
		} else if (.@cu_bre > 7) {
			if (xmas2013_01 > 0)
				xmas2013_01--;
			mes "[Angry Woman]";
			mes "What? ...What did you just say? We should stop seeing each other?";
			next;
			mes "[Angry Woman]";
			mes "I can't believe you can be such a hot, tough guy! It's like I'm falling in love all over again!";
			next;
			mes "[Angry Woman]";
			mes "Honey, can you say that again, more in a rough way?";
			next;
			mes "[Frightened Man]";
			mes "Huh? sure... Let's... let's just end this!!!";
			next;
			mes "[Angry Woman]";
			mes "Hahahaha! You're awesome! Awesome! Say it again! Say it!";
			next;
			mes "[Frightened Man]";
			mes "Let's just break up! I'm leaving you!!";
			next;
			mes "[Angry Woman]";
			mes "Hahahahahahaha! Yay! You're the best!";
			next;
			mes "- ...These people aren't normal.";
			mes "- minus 1 point for the failure!";
		} else {
			xmas2013_01++;
			mes "[Angry Woman]";
			mes "What? ...What did you just say? We should stop seeing each other?";
			next;
			mes "[Angry Woman]";
			mes "...I think we're both too upset now. Let's just talk about it later...";
			next;
			mes "[Frightened Man]";
			mes "Hmm?... ah, yes, you're right... Goodbye, get home safely...";
			next;
			mes "- Here's 1 point for ruining their date!";
		}
		mes "- Current couple breaking point is " + xmas2013_01 + ".";
		close;
	}
	end;

OnTimer100000:
	hideoffnpc "Frightened Man#xmas";
	hideoffnpc "Angry Woman#xmas";
	stopnpctimer;
	end;
}

xmas,183,150,3	script	Angry Woman#xmas	4_F_06,{
	end;
}

xmas_in,32,99,5	script	Singles Union Kwami	4_XMAS_CAT4,{
	if (!questprogress(15056)) {
		mes "[Singles Union Kwami]";
		mes "Rinka. It's a huge mystery how such a pretty girl like you ended up in this Singles Union Army.";
		emotion e_lv;
		next;
		mes "[Singles Union Rinka]";
		mes "You think I'm pretty? hoho... It's mystery for me too, that a handsome man like you joined the Singles Union Army.";
		emotion e_lv,0,"Singles Union Rinka";
		close;
	}
	if (questprogress(15056) == 1) {
		if (xmas2013_01 >= 5) {
			mes "- Couple breaking point";
			mes "- is now more than 5.";
			mes "- I should go back to Union Commander Cliff.";
			close;
		}
		mes "[Singles Union Kwami]";
		mes "Rinka. It's a huge mystery how such a pretty girl like you ended up in this Singles Union Army.";
		emotion e_lv;
		next;
		mes "[Singles Union Rinka]";
		mes "You think I'm pretty? hoho... It's mystery for me too, that a handsome man like you joined the Singles Union Army.";
		emotion e_lv,0,"Singles Union Rinka";
		next;
		mes "[Singles Union Kwami]";
		mes "Well, isn't it a shame we should spend Christmas alone? What do you say, Rinka, you and me...";
		next;
		select("- To be a couple is to be a betrayer! You betray us, you die!!!");
		hideonnpc "Singles Union Kwami";
		hideonnpc "Singles Union Rinka";
		initnpctimer;
		xmas2013_01++;
		mes "[Singles Union Rinka]";
		mes "Argh!!!!! Who is this?!";
		mes "Isn't this the one who dragged us to the Singles Union Army?!";
		next;
		mes "[Singles Union Kwami]";
		mes "Were you.. eavesdropping?!";
		mes "I just wanted to say we should find more members for the Club! Hahahahaha!";
		next;
		mes "[Singles Union Kwami]";
		mes "I'll see you later, Rinka. I am going out to hunt down more couples. Don't tell the boss!";
		next;
		mes "[Singles Union Rinka]";
		mes "Hmm, I guess I should get going to. See you later Kwami, goodbye to you too~";
		next;
		mes "- Successfully stopped a couple from forming!";
		mes "- 1 Point for the good job!";
		mes "- Current couple breaking point is " + xmas2013_01 + ".";
		close;
	}
	end;

OnTimer300000:
	hideoffnpc "Singles Union Kwami";
	hideoffnpc "Singles Union Rinka";
	stopnpctimer;
	end;
}

xmas_in,34,99,3	script	Singles Union Rinka	4_XMAS_CAT6,{
	end;
}

xmas,156,109,5	script	Poor Alchemist#xmas	4_M_ALCHE_B,{
	if (!questprogress(15056)) {
		mes "[Poor Alchemist]";
		mes "Oh, hello.";
		emotion e_swt2;
		next;
		mes "[Florist]";
		mes "Hello, Mr. Alchemist.";
		mes "Are you working today, too?";
		emotion e_ho,0,"Florist#xmas";
		close;
	}
	if (questprogress(15056) == 1 ) {
		if (xmas2013_01 >= 5) {
			mes "- Couple breaking point";
			mes "- is now more than 5.";
			mes "- I should go back to Union Commander Cliff.";
			close;
		}
		mes "[Poor Alchemist]";
		mes "Oh, hello.";
		emotion e_swt2;
		next;
		mes "[Florist]";
		mes "Hello, Mr. Alchemist.";
		mes "Are you working today, too?";
		emotion e_ho,0,"Florist#xmas";
		next;
		mes "[Poor Alchemist]";
		mes "Actually, I have something to tell you.";
		mes "It's very important so please listen carefully.";
		next;
		mes "[Florist]";
		mes "Oh, sure, please speak freely.";
		next;
		mes "[Poor Alchemist]";
		mes "Biologically speaking, limbic system in the cerebrum enables us to be sociable, to communicate with people, to entertain etc.";
		next;
		mes "[Poor Alchemist]";
		mes "So when you see a beautiful woman, the information such as her appearance, her scent, the tone of her voice etc. goes to the limbic area.";
		next;
		mes "[Poor Alchemist]";
		mes "The limbic system then evaluates the information, to see if this lady is friendly, agressive, or charming, etc.";
		next;
		mes "[Poor Alchemist]";
		mes "When the evaluation is done, the limbic system immediately begins to secrete the chemicals.";
		next;
		mes "[Poor Alchemist]";
		mes "So if you're attracted to this lady, a hormone calls Dopamine is secreted and it makes you feel slightly happy.";
		next;
		mes "[Poor Alchemist]";
		mes "When that stage ends, you get the Adrenaline pumping, then you become more direct and enthusiastic.";
		next;
		mes "[Poor Alchemist]";
		mes "I'm in that stage now towards you! In other word, I am very...!!";
		next;
		select("- Very hungry, right?!");
		mes "[Florist]";
		mes "Huh? Is that right?";
		mes "Are you hungry now, Mr. Alchemist?";
		next;
		mes "[Poor Alchemist]";
		mes "Ah.. yes.. I think I am...";
		mes "...very hungry..";
		next;
		hideonnpc "Poor Alchemist#xmas";
		hideonnpc "Florist#xmas";
		initnpctimer;
		.@cu_bre = rand(1,10);
		if (.@cu_bre < 3) {
			xmas2013_01 += 2;
			mes "[Florist]";
			mes "There's a nice restaurant near here. Why don't you go there and have a meal?";
			next;
			mes "[Poor Alchemist]";
			mes "...Sure, thank you. Have a good day...";
			next;
			mes "- Successfully stopped a couple from forming!";
			mes "- 2 points for the great job!";
		} else if (.@cu_bre > 7) {
			if (xmas2013_01 > 0)
				xmas2013_01--;
			mes "[Florist]";
			mes "I see. I understand what you mean.";
			next;
			mes "[Florist]";
			mes "Can I cook some nice meal for you, then?";
			next;
			mes "[Florist]";
			mes "...For the rest of my life, if you want...";
			next;
			mes "[Poor Alchemist]";
			mes "Okay...";
			mes "......";
			mes "Wait, what?????";
			next;
			mes "[Poor Alchemist]";
			mes "......";
			mes "...... Yes! I want!!!!!!!!";
			next;
			mes "- Failed to break up a couple";
			mes "- minus 1 point for the failure!";
		} else {
			xmas2013_01++;
			mes "[Florist]";
			mes "There's some food in the store, please come in.";
			next;
			mes "[Poor Alchemist]";
			mes "Ah... yes, thank you.";
			next;
			mes "- You did interrupt the couple in a way. Here's 1 point for you!";
		}
		mes "- Current couple breaking point is " + xmas2013_01 + ".";
		close;
	}
	end;

OnTimer100000:
	hideoffnpc "Poor Alchemist#xmas";
	hideoffnpc "Florist#xmas";
	stopnpctimer;
	end;
}

xmas,158,109,3	script	Florist#xmas	4_F_02,{
	end;
}

xmas,166,164,5	script	Raffini Boy#xmas	4_M_FAIRYKID2,{
	if (!questprogress(15056)) {
		mes "[Raffini Boy]";
		mes "This is Lutie village...";
		emotion e_no;
		next;
		mes "[Raffini Girl]";
		mes "So much beautiful white snow flakes.";
		mes "But it's too cold here...";
		emotion e_sob,0,"Raffini Girl#xmas";
		close;
	}
	if (questprogress(15056) == 1) {
		if (xmas2013_01 >= 5) {
			mes "- Couple breaking point";
			mes "- is now more than 5.";
			mes "- I should go back to Union Commander Cliff.";
			close;
		}
		mes "[Raffini Boy]";
		mes "This is Lutie village...";
		emotion e_no;
		next;
		mes "[Raffini Girl]";
		mes "So much beautiful white snow flakes.";
		mes "But it's too cold here...";
		emotion e_sob,0,"Raffini Girl#xmas";
		next;
		mes "[Raffini Boy]";
		mes "But it's you who wanted to see the snow this Christmas.";
		next;
		mes "[Raffini Girl]";
		mes "Oh but I didn't know how much cold it is...oops...";
		next;
		mes "[Raffini Boy]";
		mes "Well, ok I see...Just come closer to me.";
		next;
		mes "[Raffini Girl]";
		mes "What? I cannot hear you. What were you saying?";
		next;
		mes "[Raffini Boy]";
		mes "...Come closer to me. To my side.";
		next;
		mes "[Raffini Girl]";
		mes "Ohh ok...";
		next;
		mes "- Hmm...there is no space at all";
		mes "- for me to interrupt...";
		next;
		hideonnpc "Raffini Boy#xmas";
		hideonnpc "Raffini Girl#xmas";
		initnpctimer;
		.@cu_bre = rand(1,10);
		if (.@cu_bre < 6) {
			xmas2013_01++;
			mes "[Raffini Girl]";
			mes "....But it's still too cold! I don't want to be here any more.";
			next;
			mes "[Raffini Girl]";
			mes "I want to go back to Eclage!";
			next;
			mes "[Raffini Boy]";
			mes "Oh? Hey...we finally just got here, but you will go back right now?";
			next;
			mes "[Raffini Boy]";
			mes "Hey! Let's go together!!";
			next;
			mes "- No sweat at all, but everything is going alright.";
			mes "- Get 1 score point!";
		} else {
			if (xmas2013_01 > 0)
				xmas2013_01--;
			mes "[Raffini Girl]";
			mes "Oh! It's much warmer than before...hehe";
			next;
			mes "[Raffini Boy]";
			mes "D..don't be too close to me!";
			next;
			mes "[Raffini Girl]";
			mes "Why not? Who cares. Let's go to grab something yummy.";
			next;
			mes "[Raffini Boy]";
			mes "You're too close too me! I, I can feel your..um..hey!";
			next;
			mes "- Oops, I was attacked by that couple even without doing anything.";
			mes "- Failed, got -1 score point!";
		}
		mes "- Current couple breaking point is " + xmas2013_01 + ".";
		close;
	}
	end;

OnTimer100000:
	hideoffnpc "Raffini Boy#xmas";
	hideoffnpc "Raffini Girl#xmas";
	stopnpctimer;
	end;
}

xmas,168,164,3	script	Raffini Girl#xmas	4_F_FAIRYKID3,{
	end;
}

xmas,147,123,5	script	Angeling#xmas	4_ANGELING,{
	if (!questprogress(15056)) {
		mes "[Angeling]";
		mes "Kkuing~";
		emotion e_lv;
		next;
		mes "[Arc Angeling]";
		mes "Kkuing Kkuing~";
		emotion e_lv,0,"Arc Angeling#xmas";
		close;
	}
	if (questprogress(15056) == 1 ) {
		if (xmas2013_01 >= 5) {
			mes "- Couple breaking point";
			mes "- is now more than 5.";
			mes "- I should go back to Union Commander Cliff.";
			close;
		}
		mes "[Angeling]";
		mes "Kkuing~";
		emotion e_lv;
		next;
		mes "[Arc Angeling]";
		mes "Kkuing Kkuing~";
		emotion e_lv,0,"Arc Angeling#xmas";
		next;
		mes "- I cannot bother them though.";
		mes "- Can't even talk to them,";
		mes "- oh well.";
		next;
		mes "- Just hunt them?";
		mes "- ......No way.";
		close;
	}
	end;
}

xmas,149,123,3	script	Arc Angeling#xmas	4_ARCHANGELING,{
	end;
}

xmas,129,115,5	script	Prenetan#xmas	4_F_UMWOMAN,{
	if (!questprogress(15056)) {
		mes "[Prenetan]";
		mes "Umba~ Umba Umba!";
		mes "Umba Umumumum!";
		next;
		mes "[Prenetan]";
		mes "Finally got you, huh? You are cheating on me until now and even made me chase after you? I'll kill you boy!";
		emotion e_an;
		next;
		mes "[Umpoucoriotan]";
		mes "Ooohh... my wife is too violent. Ohh...it hurts!";
		emotion e_sob,0,"Umpoucoriotan#xmas";
		close;
	}
	if (questprogress(15056) == 1) {
		if (xmas2013_01 >= 5) {
			mes "- Couple breaking point";
			mes "- is now more than 5.";
			mes "- I should go back to Union Commander Cliff.";
			close;
		}
		mes "[Prenetan]";
		mes "Umba~ Umba umba!";
		mes "Umba umumumum!";
		next;
		mes "[Prenetan]";
		mes "Finally got you, huh? You are cheating on me until now and even made me chase after you? I'll kill you boy!";
		emotion e_an;
		next;
		mes "[Umpoucoriotan]";
		mes "Ooohh... my wife is too violent. Ohh...it hurts!";
		emotion e_sob,0,"Umpoucoriotan#xmas";
		next;
		mes "[Umpoucoriotan]";
		mes "Wenathan, berzthan, Chabimathan";
		mes "Oooh... The girls of Umbala are here... They're waiting for me now....Arg! Don't touch me!";
		next;
		mes "[Prenetan]";
		mes "How stupid you are!";
		mes "Those girls never wanted to see you and that's just a lie that they would come here!!";
		next;
		select("- No. They are all here!");
		hideonnpc "Prenetan#xmas";
		hideonnpc "Umpoucoriotan#xmas";
		initnpctimer;
		.@cu_bre = rand(1,10);
		if (.@cu_bre < 6) {
			xmas2013_01++;
			mes "[Umpoucoriotan]";
			mes "Umm...yeah I know..Is it true those girls are here?";
			next;
			mes "[Umpoucoriotan]";
			mes "...Oh I got a stomachache... Did I have something wrong... Darling, just a second. I'll be right back soon to go to the restroom! Just wait for a while here!";
			next;
			mes "[Prenetan]";
			mes "Hey you idiot! Stop right there! Stop! ...STOP!!!";
			next;
			mes "- Well, things are quite easy. Got 1 score point!";
		} else {
			xmas2013_01++;
			mes "[Prenetan]";
			mes "Who's there? You want to be killed, too?";
			next;
			mes "- Oops";
			next;
			mes "[Prenetan]";
			mes "You still don't understand anything. Come here, I'm taking you back to Umbala!";
			next;
			mes "[Umpoucoriotan]";
			mes "ARG! ....Arrrrrrrrg!! It hurts! Noooo!!! They're waiting for me!!!";
			next;
			mes "- Well, he just made it harder for himself. Got 1 score point!";
		}
		mes "- Current couple breaking point is " + xmas2013_01 + ".";
		close;
	}
	end;

OnTimer100000:
	hideoffnpc "Prenetan#xmas";
	hideoffnpc "Umpoucoriotan#xmas";
	stopnpctimer;
	end;
}

xmas,131,115,3	script	Umpoucoriotan#xmas	4_M_UMSOLDIER,{
	end;
}

xmas,138,174,5	script	Dark Lord#xmas	4_DARKLORD,{
	if (!questprogress(15056)) {
		mes "[Dark Lord]";
		mes "Whahahahaha the world will turn into darkness soon and everyone will kneel down before me!!";
		emotion e_gasp;
		next;
		mes "[Succubus]";
		mes "My master. All worlds will follow your will.";
		emotion e_lv,0,"Succubus#xmas";
		close;
	}
	if (questprogress(15056) == 1) {
		if (xmas2013_01 >= 5) {
			mes "- Couple breaking point";
			mes "- is now more than 5.";
			mes "- I should go back to Union Commander Cliff.";
			close;
		}
		mes "[Dark Lord]";
		mes "Whahahahaha the world will turn into darkness soon and everyone will kneel down before me!!";
		emotion e_gasp;
		next;
		mes "[Succubus]";
		mes "My master. All worlds will follow your will.";
		emotion e_lv,0,"Succubus#xmas";
		next;
		mes "[Dark Lord]";
		mes "You've been loyal to me even though I've been giving difficult orders. You deserve a reward. What do you want for now? I'll definitely make it for you. I can even give you more power!";
		next;
		mes "[Succubus]";
		mes "......";
		mes "Could you really give me anything that I want...?";
		next;
		mes "[Succubus]";
		mes "What I really need is...";
		mes "......";
		mes "Only you, my master.";
		next;
		mes "[Dark Lord]";
		mes "......";
		mes "?!!!!!";
		next;
		mes "[Succubus]";
		mes "I've been in love with you...";
		mes "for a very long time...";
		next;
		mes "[Dark Lord]";
		mes "......";
		next;
		mes "[Dark Lord]";
		mes "It's not that I didn't know about that.";
		next;
		mes "[Dark Lord]";
		mes "I also...";
		next;
		mes "[Dark Lord]";
		mes "...But we're demons. Demons choosing a path towards love?! Ridiculous, the dark world will never forgive us! We will be hiding for the rest of our lives!";
		next;
		mes "[Succubus]";
		mes "It doesn't matter as long as I am with you, my master...";
		next;
		select("- I'm sorry to bother you... but weren't you discussing about conquering the world?");
		hideonnpc "Dark Lord#xmas";
		hideonnpc "Succubus#xmas";
		initnpctimer;
		.@cu_bre = rand(1,10);
		if (.@cu_bre < 5) {
			xmas2013_01 += 2;
			mes "[Dark Lord]";
			mes "Ye..yes. That's right, succubus! We've already had such a high goal!";
			next;
			mes "[Dark Lord]";
			mes "I appreciated the thought but know your place! Just be my subordinate as you already are.";
			next;
			mes "[Succubus]";
			mes "Oh yes...my master, please forgive me. I'll try my best to make your the world yours.";
			next;
			mes "[Dark Lord]";
			mes "Yes! There is nothing better than turning this world into darkness. Everyone will kneel down before me. Hahahahahahahahah!!!";
			next;
			mes "- Even though the world will";
			mes "- be engulfed in darkness soon...";
			mes "- I got a big success to break up a couple!";
			mes "- 2 score points!";
		} else {
			if (xmas2013_01 > 0)
				xmas2013_01--;
			mes "[Dark Lord]";
			mes "Conquering the world... It's useless compared to what we've feeling right now.";
			mes "Dear Succubus, can you really overcome any kind of agony if you are with me?";
			next;
			mes "[Succubus]";
			mes "...Master!";
			next;
			mes "[Succubus]";
			mes "Of course, I'm prepared and will keep going... I'll follow you forever even if I shall be in any kind of agony.";
			next;
			mes "[Succubus]";
			mes "I'll be yours forever!";
			next;
			mes "[Dark Lord]";
			mes "I see...I can feel your heart now. Ok, let's go together... no matter how hard it will be!!";
			next;
			mes "- I saved this world from darkess.";
			mes "- though a couple was formed!";
			mes "- very sad...";
			mes "- Failed, -1 score point!";
		}
		mes "- Current couple breaking point is " + xmas2013_01 + ".";
		close;
	}
	end;

OnTimer100000:
	hideoffnpc "Dark Lord#xmas";
	hideoffnpc "Succubus#xmas";
	stopnpctimer;
	end;
}

xmas,141,174,3	script	Succubus#xmas	SUCCUBUS,{
	end;
}

//== Monster Spawns :: EventMonster-131209_xmas ============
gld_dun01_2,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gld_dun02_2,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gld_dun03_2,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gld_dun04_2,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gld2_ald,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gld2_gef,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gld2_pay,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gld2_prt,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
lhz_dun04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
iz_dun05,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mal_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
dic_dun03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
dew_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
dew_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
dew_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mal_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
iz_dun05,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
man_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
man_fild03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
spl_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
spl_fild03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
man_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
spl_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
nyd_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
bra_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
bra_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
bra_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
dic_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
dic_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
dic_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
dic_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
bif_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
bif_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
abbey01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
abbey02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
abbey03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
abyss_01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
abyss_02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
abyss_03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
alde_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
alde_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
alde_dun03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
alde_dun04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ama_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ama_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ama_dun03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ama_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
anthell01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
anthell02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ayo_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ayo_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ayo_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ayo_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
beach_dun,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
beach_dun2,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
beach_dun3,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
c_tower1,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
c_tower2,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
c_tower3,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
c_tower4,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
cmd_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
cmd_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
cmd_fild03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
cmd_fild04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
cmd_fild06,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
cmd_fild07,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
cmd_fild08,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
cmd_fild09,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ein_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ein_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ein_fild03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ein_fild04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ein_fild05,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ein_fild06,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ein_fild07,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ein_fild08,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ein_fild09,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gef_dun00,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gef_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gef_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gef_fild00,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gef_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gef_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gef_fild03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gef_fild04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gef_fild05,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gef_fild06,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gef_fild07,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gef_fild08,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gef_fild09,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gef_fild10,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gef_fild11,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gef_fild13,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gefenia01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gefenia02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gefenia03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gefenia04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_cas01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_cas02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_church,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_chyard,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_in01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_knt01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_knt02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_prison,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_prison1,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_sew01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_sew02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_sew03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_sew04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_step,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
glast_01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gon_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gon_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gon_dun03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gon_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
hu_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
hu_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
hu_fild04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
hu_fild05,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
hu_fild06,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ice_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ice_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ice_dun03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
in_sphinx1,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
in_sphinx2,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
in_sphinx3,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
in_sphinx4,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
in_sphinx5,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
iz_dun00,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
iz_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
iz_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
iz_dun03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
iz_dun04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
jupe_core,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
juperos_01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
juperos_02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
kh_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
kh_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
lhz_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
lhz_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
lhz_dun03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
lhz_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
lhz_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
lhz_fild03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
lou_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
lou_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
lou_dun03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
lou_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mag_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mag_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
man_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mjo_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mjo_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mjo_dun03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mjolnir_01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mjolnir_02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mjolnir_03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mjolnir_04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mjolnir_05,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mjolnir_06,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mjolnir_07,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mjolnir_08,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mjolnir_09,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mjolnir_10,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mjolnir_11,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
mjolnir_12,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild05,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild06,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild07,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild08,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild09,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild10,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild11,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild12,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild13,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild14,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild15,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild16,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild17,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_fild18,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_pryd01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_pryd02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_pryd03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_pryd04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_pryd05,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_pryd06,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
nameless_n,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
nif_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
nif_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
nyd_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
odin_tem01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
odin_tem02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
odin_tem03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
orcsdun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
orcsdun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
pay_dun00,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
pay_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
pay_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
pay_dun03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
pay_dun04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
pay_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
pay_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
pay_fild03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
pay_fild04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
pay_fild06,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
pay_fild07,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
pay_fild08,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
pay_fild09,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
pay_fild10,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_fild00,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_fild03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_fild04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_fild05,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_fild06,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_fild07,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_fild08,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_fild09,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_fild10,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_fild11,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_maze01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_maze02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_maze03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_sewb1,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_sewb2,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_sewb3,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ra_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ra_fild03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ra_fild04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ra_fild05,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ra_fild06,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ra_fild08,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ra_fild12,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ra_san01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ra_san02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ra_san03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ra_san04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ra_san05,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
spl_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
tha_t01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
tha_t02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
tha_t03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
tha_t04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
tha_t05,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
tha_t06,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
tha_t07,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
tha_t08,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
tha_t09,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
tha_t10,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
tha_t11,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
tha_t12,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
thor_v01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
thor_v02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
thor_v03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
treasure01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
treasure02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
tur_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
tur_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
tur_dun03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
tur_dun04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
um_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
um_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
um_fild03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
um_fild04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ve_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ve_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ve_fild03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ve_fild04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ve_fild05,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ve_fild07,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
xmas_dun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
xmas_dun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
xmas_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
yuno_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
yuno_fild02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
yuno_fild03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
yuno_fild04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
yuno_fild06,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
yuno_fild07,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
yuno_fild08,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
yuno_fild09,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
yuno_fild10,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
yuno_fild12,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gld_dun01_2,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gld_dun02_2,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gld_dun03_2,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gld_dun04_2,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gld2_ald,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gld2_gef,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gld2_pay,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gld2_prt,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
lhz_dun04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
iz_dun05,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mal_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
dic_dun03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
dew_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
dew_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
dew_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mal_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
iz_dun05,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
man_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
man_fild03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
spl_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
spl_fild03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
man_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
spl_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
nyd_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
bra_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
bra_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
bra_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
dic_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
dic_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
dic_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
dic_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
bif_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
bif_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
abbey01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
abbey02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
abbey03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
abyss_01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
abyss_02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
abyss_03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
alde_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
alde_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
alde_dun03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
alde_dun04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ama_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ama_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ama_dun03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ama_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
anthell01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
anthell02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ayo_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ayo_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ayo_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ayo_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
beach_dun,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
beach_dun2,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
beach_dun3,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
c_tower1,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
c_tower2,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
c_tower3,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
c_tower4,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
cmd_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
cmd_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
cmd_fild03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
cmd_fild04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
cmd_fild06,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
cmd_fild07,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
cmd_fild08,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
cmd_fild09,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ein_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ein_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ein_fild03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ein_fild04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ein_fild05,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ein_fild06,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ein_fild07,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ein_fild08,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ein_fild09,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gef_dun00,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gef_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gef_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gef_fild00,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gef_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gef_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gef_fild03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gef_fild04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gef_fild05,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gef_fild06,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gef_fild07,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gef_fild08,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gef_fild09,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gef_fild10,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gef_fild11,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gef_fild13,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gefenia01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gefenia02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gefenia03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gefenia04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_cas01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_cas02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_church,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_chyard,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_in01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_knt01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_knt02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_prison,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_prison1,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_sew01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_sew02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_sew03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_sew04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_step,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
glast_01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gon_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gon_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gon_dun03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gon_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
hu_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
hu_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
hu_fild04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
hu_fild05,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
hu_fild06,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ice_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ice_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ice_dun03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
in_sphinx1,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
in_sphinx2,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
in_sphinx3,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
in_sphinx4,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
in_sphinx5,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
iz_dun00,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
iz_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
iz_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
iz_dun03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
iz_dun04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
jupe_core,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
juperos_01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
juperos_02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
kh_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
kh_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
lhz_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
lhz_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
lhz_dun03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
lhz_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
lhz_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
lhz_fild03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
lou_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
lou_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
lou_dun03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
lou_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mag_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mag_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
man_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mjo_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mjo_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mjo_dun03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mjolnir_01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mjolnir_02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mjolnir_03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mjolnir_04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mjolnir_05,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mjolnir_06,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mjolnir_07,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mjolnir_08,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mjolnir_09,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mjolnir_10,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mjolnir_11,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
mjolnir_12,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild05,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild06,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild07,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild08,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild09,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild10,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild11,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild12,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild13,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild14,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild15,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild16,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild17,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_fild18,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_pryd01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_pryd02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_pryd03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_pryd04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_pryd05,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_pryd06,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
nameless_n,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
nif_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
nif_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
nyd_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
odin_tem01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
odin_tem02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
odin_tem03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
orcsdun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
orcsdun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
pay_dun00,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
pay_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
pay_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
pay_dun03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
pay_dun04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
pay_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
pay_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
pay_fild03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
pay_fild04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
pay_fild06,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
pay_fild07,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
pay_fild08,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
pay_fild09,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
pay_fild10,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_fild00,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_fild03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_fild04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_fild05,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_fild06,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_fild07,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_fild08,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_fild09,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_fild10,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_fild11,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_maze01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_maze02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_maze03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_sewb1,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_sewb2,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_sewb3,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ra_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ra_fild03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ra_fild04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ra_fild05,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ra_fild06,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ra_fild08,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ra_fild12,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ra_san01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ra_san02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ra_san03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ra_san04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ra_san05,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
spl_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
tha_t01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
tha_t02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
tha_t03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
tha_t04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
tha_t05,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
tha_t06,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
tha_t07,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
tha_t08,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
tha_t09,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
tha_t10,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
tha_t11,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
tha_t12,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
thor_v01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
thor_v02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
thor_v03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
treasure01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
treasure02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
tur_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
tur_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
tur_dun03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
tur_dun04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
um_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
um_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
um_fild03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
um_fild04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ve_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ve_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ve_fild03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ve_fild04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ve_fild05,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ve_fild07,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
xmas_dun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
xmas_dun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
xmas_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
yuno_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
yuno_fild02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
yuno_fild03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
yuno_fild04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
yuno_fild06,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
yuno_fild07,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
yuno_fild08,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
yuno_fild09,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
yuno_fild10,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
yuno_fild12,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ecl_fild01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ecl_fild01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ecl_tdun01,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ecl_tdun01,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ecl_tdun02,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ecl_tdun02,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
ecl_tdun03,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
ecl_tdun03,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
//ecl_tdun04,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
//ecl_tdun04,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_prydn1,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_prydn1,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
moc_prydn2,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
moc_prydn2,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_fild08a,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_fild08a,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_fild08b,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_fild08b,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_fild08c,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_fild08c,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
prt_fild08d,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
prt_fild08d,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_chyard_,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_chyard_,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0
gl_cas02_,0,0,0,0	monster	Gift Stealing Raccoon	2380,5,5000,0,0
gl_cas02_,0,0,0,0	monster	Sock Stealing Raccoon	2379,5,5000,0,0