xmas.txt 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. //===== rAthena Script =======================================
  2. //= X-mas Event
  3. //===== By: ==================================================
  4. //= rAthena Dev Team
  5. //===== Current Version: =====================================
  6. //= 1.4
  7. //===== Compatible With: =====================================
  8. //= Any version of rAthena
  9. //===== Description: =========================================
  10. //= Beat up Antonios and grab his socks. Get at least 3 and
  11. //= give them to Santa Claus Claus in exchange for a present.
  12. //= Includes X-mas mobs.
  13. //= This npc will disable, the current Santa Claus npc.
  14. //===== Additional Comments: =================================
  15. //= Fixed the spawns [shadowlady]
  16. //= 1.1 Added Xmas Jakk, fixed 2 exploits, fixed reward Box ID [Lupus]
  17. //= 1.2 Added monsters to the newer fields, thanks to Muad_Dib [MasterOfMuppets]
  18. //= 1.2a Fixed a major problem with the monster spawns, thanks to Playtester [MasterOfMuppets]
  19. //= 1.2b Fixed a minor problem with the mosnter spawns, thanks to Playtester [Kayla]
  20. //= 1.3 Added Christmas Orc to the places where other orcs spawn [MasterOfMuppets]
  21. //= Added Christmas goblins to yuno_fild09, thanks to Playtester for pointing it out
  22. //= 1.4 Added a fix to make Lutie & Bard quests passable during this event [Lupus]
  23. //============================================================
  24. xmas_in,100,96,4 script Father Christmas::Santa2 718,{
  25. mes "[Santa Claus]";
  26. //For Lutie & Bard quest
  27. if(xmas_npc==0) set xmas_npc, 1;
  28. //
  29. if(#event_xmas > 0 && #event_xmas < 30 ) goto L_Start;
  30. mes "Merry Christmas!";
  31. if(Class==0 || #event_xmas>=30 ) close; //anti exploit protection
  32. mes "I have a gift for you! Ho Ho Ho!";
  33. getitem rand(664,667),1; //gives one of 4 gift boxes
  34. set #event_xmas,#event_xmas+1;
  35. close;
  36. L_Start:
  37. mes "I'm having a bit of a problem...";
  38. mes "Do you care to listen?";
  39. next;
  40. menu "Listen to Santa Claus.",M_0, "Give Santa Claus proof.",M_1, "Cancel.",M_End;
  41. M_0:
  42. mes "[Santa Claus]";
  43. mes "My problem is this.";
  44. mes "There seems to be a man out there";
  45. mes "that is impersonating me and spreading";
  46. mes "terror throughout the land.";
  47. next;
  48. mes "[Santa Claus]";
  49. mes "Like the Grinch of legend, he's taking";
  50. mes "all the childrens' toys and keeping them";
  51. mes "for himself.";
  52. next;
  53. mes "[Santa Claus]";
  54. mes "I'm too busy here creating my batch of ";
  55. mes "toys for next year, so I can't go";
  56. mes "out and find him myself.";
  57. mes "So I would like you to go out and";
  58. mes "Destroy this man for me.";
  59. next;
  60. mes "[Santa Claus]";
  61. mes "He has in his posession one of my";
  62. mes "magic sacks, however, so he will";
  63. mes "escape into it to another place each";
  64. mes "time you attack him.";
  65. next;
  66. mes "[Santa Claus]";
  67. mes "However,";
  68. mes "In his haste, he tends to drop things.";
  69. mes "If by chance he drops one of his Stockings";
  70. mes "With Holes that he uses to steal the";
  71. mes "poor childrens' toys, pick it up.";
  72. next;
  73. mes "[Santa Claus]";
  74. mes "If you collect 3 of these, I will give";
  75. mes "you a prototype mystery box that";
  76. mes "I've been keeping around the";
  77. mes "lab. It spits out random presents";
  78. mes "and saves me a ton of work.";
  79. close;
  80. M_1:
  81. mes "[Santa Claus]";
  82. if(countitem(7034) < 3) goto L_NotEnuf;
  83. delitem 7034,3;
  84. mes "Seems you've been doing a";
  85. mes "good job of taking down those";
  86. mes "fake Santas. Keep it up!";
  87. next;
  88. getitem 644,1; //Gift Box Prototype
  89. set #event_xmas,#event_xmas+1;
  90. mes "[Santa Claus]";
  91. mes "There's your reward.";
  92. mes "If you get 3 more, I'll give you another.";
  93. mes "Hope you get a good item.";
  94. close;
  95. L_NotEnuf:
  96. mes "You don't have enough socks as proof.";
  97. mes "Go take down those evil Santas";
  98. mes "and get more for me and I'll reward you.";
  99. close;
  100. M_End:
  101. mes "[Santa Claus]";
  102. mes "I see. Well, at the very least";
  103. mes "we shall meet again on Christmas morning.";
  104. close;
  105. OnInit:
  106. disablenpc "Santa1";
  107. end;
  108. }
  109. //========================================================================================
  110. // - Xmas Goblin Spawns
  111. //========================================================================================
  112. prt_fild11,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
  113. gef_fild11,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
  114. yuno_fild09,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
  115. //========================================================================================
  116. // - Santa Poring Spawns
  117. //========================================================================================
  118. ein_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  119. ein_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  120. ein_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  121. ein_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  122. ein_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  123. ein_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  124. ein_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  125. gef_fild00,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  126. gef_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  127. gef_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  128. gef_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  129. gef_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  130. gef_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  131. gef_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  132. gef_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  133. gef_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  134. gef_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  135. gef_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  136. gef_fild12,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  137. gef_fild13,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  138. gef_fild14,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  139. glast_01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  140. lhz_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  141. lhz_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  142. lhz_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  143. mjolnir_01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  144. mjolnir_02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  145. mjolnir_03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  146. mjolnir_04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  147. mjolnir_05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  148. mjolnir_06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  149. mjolnir_07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  150. mjolnir_08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  151. mjolnir_09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  152. mjolnir_10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  153. mjolnir_11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  154. mjolnir_12,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  155. moc_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  156. moc_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  157. moc_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  158. moc_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  159. moc_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  160. moc_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  161. moc_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  162. moc_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  163. moc_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  164. moc_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  165. moc_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  166. moc_fild12,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  167. moc_fild13,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  168. moc_fild14,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  169. moc_fild15,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  170. moc_fild16,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  171. moc_fild17,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  172. moc_fild18,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  173. pay_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  174. pay_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  175. pay_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  176. pay_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  177. pay_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  178. pay_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  179. pay_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  180. pay_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  181. pay_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  182. pay_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  183. pay_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  184. prt_fild00,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  185. prt_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  186. prt_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  187. prt_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  188. prt_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  189. prt_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  190. prt_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  191. prt_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  192. prt_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  193. prt_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  194. prt_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  195. prt_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  196. xmas_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  197. cmd_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  198. cmd_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  199. cmd_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  200. cmd_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  201. cmd_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  202. cmd_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  203. cmd_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  204. cmd_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  205. cmd_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  206. yuno_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  207. yuno_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  208. yuno_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  209. yuno_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  210. yuno_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  211. yuno_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  212. yuno_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  213. yuno_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  214. yuno_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  215. yuno_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  216. yuno_fild12,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  217. ama_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  218. gon_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  219. um_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  220. um_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  221. um_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  222. um_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  223. nif_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  224. nif_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  225. lou_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  226. hu_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  227. hu_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  228. hu_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  229. hu_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  230. //========================================================================================
  231. // - Antonio Spawns
  232. //========================================================================================
  233. ein_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  234. ein_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  235. ein_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
  236. ein_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
  237. ein_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
  238. ein_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
  239. ein_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
  240. gef_fild00,0,0,0,0 monster Antonio 1247,1,0,0,0
  241. gef_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  242. gef_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  243. gef_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  244. gef_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  245. gef_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
  246. gef_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
  247. gef_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
  248. gef_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
  249. gef_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
  250. gef_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
  251. gef_fild12,0,0,0,0 monster Antonio 1247,1,0,0,0
  252. gef_fild13,0,0,0,0 monster Antonio 1247,1,0,0,0
  253. gef_fild14,0,0,0,0 monster Antonio 1247,1,0,0,0
  254. glast_01,0,0,0,0 monster Antonio 1247,1,0,0,0
  255. lhz_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  256. lhz_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  257. lhz_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  258. mjolnir_01,0,0,0,0 monster Antonio 1247,1,0,0,0
  259. mjolnir_02,0,0,0,0 monster Antonio 1247,1,0,0,0
  260. mjolnir_03,0,0,0,0 monster Antonio 1247,1,0,0,0
  261. mjolnir_04,0,0,0,0 monster Antonio 1247,1,0,0,0
  262. mjolnir_05,0,0,0,0 monster Antonio 1247,1,0,0,0
  263. mjolnir_06,0,0,0,0 monster Antonio 1247,1,0,0,0
  264. mjolnir_07,0,0,0,0 monster Antonio 1247,1,0,0,0
  265. mjolnir_08,0,0,0,0 monster Antonio 1247,1,0,0,0
  266. mjolnir_09,0,0,0,0 monster Antonio 1247,1,0,0,0
  267. mjolnir_10,0,0,0,0 monster Antonio 1247,1,0,0,0
  268. mjolnir_11,0,0,0,0 monster Antonio 1247,1,0,0,0
  269. mjolnir_12,0,0,0,0 monster Antonio 1247,1,0,0,0
  270. moc_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  271. moc_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  272. moc_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  273. moc_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  274. moc_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
  275. moc_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
  276. moc_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
  277. moc_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
  278. moc_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
  279. moc_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
  280. moc_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
  281. moc_fild12,0,0,0,0 monster Antonio 1247,1,0,0,0
  282. moc_fild13,0,0,0,0 monster Antonio 1247,1,0,0,0
  283. moc_fild14,0,0,0,0 monster Antonio 1247,1,0,0,0
  284. moc_fild15,0,0,0,0 monster Antonio 1247,1,0,0,0
  285. moc_fild16,0,0,0,0 monster Antonio 1247,1,0,0,0
  286. moc_fild17,0,0,0,0 monster Antonio 1247,1,0,0,0
  287. moc_fild18,0,0,0,0 monster Antonio 1247,1,0,0,0
  288. pay_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  289. pay_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  290. pay_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  291. pay_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  292. pay_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
  293. pay_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
  294. pay_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
  295. pay_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
  296. pay_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
  297. pay_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
  298. pay_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
  299. prt_fild00,0,0,0,0 monster Antonio 1247,1,0,0,0
  300. prt_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  301. prt_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  302. prt_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  303. prt_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  304. prt_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
  305. prt_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
  306. prt_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
  307. prt_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
  308. prt_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
  309. prt_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
  310. prt_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
  311. xmas_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  312. cmd_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  313. cmd_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  314. cmd_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  315. cmd_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  316. cmd_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
  317. cmd_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
  318. cmd_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
  319. cmd_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
  320. cmd_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
  321. yuno_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  322. yuno_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  323. yuno_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  324. yuno_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  325. yuno_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
  326. yuno_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
  327. yuno_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
  328. yuno_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
  329. yuno_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
  330. yuno_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
  331. yuno_fild12,0,0,0,0 monster Antonio 1247,1,0,0,0
  332. ama_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  333. gon_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  334. um_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  335. um_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  336. um_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  337. um_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  338. nif_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  339. nif_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  340. lou_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  341. hu_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  342. hu_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  343. hu_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
  344. hu_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
  345. //========================================================================================
  346. // - Xmas Jakk
  347. //========================================================================================
  348. gef_dun01,0,0,0,0 monster Xmas Jakk 1244,5,0,0,0
  349. //gefenia02,0,0,0,0 monster Xmas Jakk 1244,5,0,0,0
  350. //========================================================================================
  351. // - Xmas Orc
  352. //========================================================================================
  353. gef_fild02,0,0,0,0 monster Christmas Orc 1588,5,0,0,0
  354. gef_fild03,0,0,0,0 monster Christmas Orc 1588,5,0,0,0
  355. gef_fild10,0,0,0,0 monster Christmas Orc 1588,5,0,0,0
  356. gef_fild14,0,0,0,0 monster Christmas Orc 1588,5,0,0,0
  357. alde_dun02,0,0,0,0 monster Christmas Orc 1588,5,0,0,0