brendorox

Untitled

Aug 17th, 2012
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.06 KB | None | 0 0
  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. //= Traduzido por Brendorox woow !
  24. //============================================================
  25.  
  26.  
  27. xmas_in,100,96,4 script Father Christmas::Santa2 718,{
  28. mes "[Papai Noel]";
  29. //For Lutie & Bard quest
  30. if(xmas_npc==0) set xmas_npc, 1;
  31. //
  32. if(#event_xmas > 0 && #event_xmas < 30 ) goto start;
  33. mes "Feliz Natal!";
  34. if(Class==0 || #event_xmas>=30 ) close; //anti exploit protection
  35. mes "Eu tenho um presente para você HO,HO,HO!";
  36. getitem rand(664,667),1; //gives one of 4 gift boxes
  37. set #event_xmas,#event_xmas+1;
  38. close;
  39.  
  40. start:
  41. mes "Estou tendo um pouco de problemas.";
  42. mes "você se importa de ouvir?";
  43. next;
  44. switch(select("Ouvi o papai noel:Dê a Santa Claus prova:Cancelar")) {
  45.  
  46. case 1:
  47. mes "[Papai Noel]";
  48. mes "Meu problema é esse";
  49. mes "Parece haver um homem lá fora.";
  50. mes "que está se passando por mim e espalhando.";
  51. mes "terror por toda a terra.";
  52. next;
  53. mes "[Papai Noel]";
  54. mes "Como o Grinch da lenda, ele está tomando.";
  55. mes "todos os brinquedos para crianças e mantê-los.";
  56. mes "para si mesmo.";
  57. next;
  58. mes "[Papai Noel]";
  59. mes "Eu estou muito ocupado aqui criando o meu lote de.";
  60. mes "brinquedos para o próximo ano, então eu não posso ir";
  61. mes "para fora e encontrá-lo eu mesmo.";
  62. mes "Então, eu gostaria que você sair e";
  63. mes "Destruí esse homem para mim .";
  64. next;
  65. mes "[Papai Noel]";
  66. mes "Ele tem em sua posse um dos meus.";
  67. mes "sacos mágicos, no entanto, para ele.";
  68. mes "escapar para ela,para outro lugar de cada";
  69. mes "vez que você atacá-lo.";
  70. next;
  71. mes "[Papai Noel]";
  72. mes "No entanto,";
  73. mes "Em sua pressa,ele tende a cair as coisas.";
  74. mes "Se por acaso ele cai uma de suas meias";
  75. mes "com os buracos que ele usa para roubar a";
  76. mes "brinquedos para crianças pobres, buscá-lo.";
  77. next;
  78. mes "[Papai Noel]";
  79. mes "Se você recolher 3 delas, vou dar";
  80. mes "você uma caixa de mistério protótico que";
  81. mes "Eu tenho mantido em torno da";
  82. mes "laboratório ela cospe presentes aleatórios";
  83. mes "e salva-me uma tonelada de trabalho.";
  84. close;
  85. case 2:
  86. mes "[Papai Noel]";
  87. if(countitem(7034) < 3) goto sem;
  88. delitem 7034,3;
  89. mes "Parece que você está fazendo um";
  90. mes "bom trabalho de derrubar os";
  91. mes "Santas falsos.";
  92. next;
  93. getitem 644,1; //Gift Box Prototype
  94. set #event_xmas,#event_xmas+1;
  95. mes "[Papai Noel]";
  96. mes "Não é a vossa recompensa.";
  97. mes "Se você receber 3 mais, eu vou te dar outro.";
  98. mes "Espero que você obter um item bom.";
  99. close;
  100.  
  101. sem:
  102. mes "Você não tem meias suficientes como prova.";
  103. mes "Vá tomar para baixo os Santa dos mal";
  104. mes "e obter mais e vou recompensá-lo.";
  105. close;
  106. M_End:
  107. mes "[Papai Noel]";
  108. mes "Eu vejo bem, pelo menos.";
  109. mes "nós encontraremos novamente na manhã de Natal.";
  110. close;
  111.  
  112. OnInit:
  113. disablenpc "Santa1";
  114. end;
  115. }
  116.  
  117.  
  118. //========================================================================================
  119. // - Xmas Goblin Spawns
  120. //========================================================================================
  121.  
  122. prt_fild11,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
  123. gef_fild11,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
  124. yuno_fild09,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
  125.  
  126. //========================================================================================
  127. // - Santa Poring Spawns
  128. //========================================================================================
  129.  
  130. ein_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  131. ein_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  132. ein_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  133. ein_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  134. ein_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  135. ein_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  136. ein_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  137. gef_fild00,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  138. gef_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  139. gef_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  140. gef_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  141. gef_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  142. gef_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  143. gef_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  144. gef_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  145. gef_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  146. gef_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  147. gef_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  148. gef_fild12,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  149. gef_fild13,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  150. gef_fild14,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  151. glast_01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  152. lhz_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  153. lhz_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  154. lhz_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  155. mjolnir_01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  156. mjolnir_02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  157. mjolnir_03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  158. mjolnir_04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  159. mjolnir_05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  160. mjolnir_06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  161. mjolnir_07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  162. mjolnir_08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  163. mjolnir_09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  164. mjolnir_10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  165. mjolnir_11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  166. mjolnir_12,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  167. moc_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  168. moc_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  169. moc_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  170. moc_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  171. moc_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  172. moc_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  173. moc_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  174. moc_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  175. moc_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  176. moc_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  177. moc_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  178. moc_fild12,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  179. moc_fild13,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  180. moc_fild14,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  181. moc_fild15,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  182. moc_fild16,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  183. moc_fild17,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  184. moc_fild18,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  185. pay_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  186. pay_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  187. pay_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  188. pay_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  189. pay_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  190. pay_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  191. pay_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  192. pay_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  193. pay_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  194. pay_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  195. pay_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  196. prt_fild00,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  197. prt_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  198. prt_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  199. prt_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  200. prt_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  201. prt_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  202. prt_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  203. prt_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  204. prt_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  205. prt_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  206. prt_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  207. prt_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  208. xmas_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  209. cmd_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  210. cmd_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  211. cmd_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  212. cmd_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  213. cmd_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  214. cmd_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  215. cmd_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  216. cmd_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  217. cmd_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  218. yuno_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  219. yuno_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  220. yuno_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  221. yuno_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  222. yuno_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  223. yuno_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  224. yuno_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  225. yuno_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  226. yuno_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  227. yuno_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  228. yuno_fild12,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  229. ama_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  230. gon_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  231. um_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  232. um_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  233. um_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  234. um_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  235. nif_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  236. nif_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  237. lou_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  238. hu_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  239. hu_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  240. hu_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  241. hu_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
  242.  
  243. //========================================================================================
  244. // - Antonio Spawns
  245. //========================================================================================
  246.  
  247. ein_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  248. ein_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  249. ein_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
  250. ein_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
  251. ein_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
  252. ein_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
  253. ein_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
  254. gef_fild00,0,0,0,0 monster Antonio 1247,1,0,0,0
  255. gef_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  256. gef_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  257. gef_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  258. gef_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  259. gef_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
  260. gef_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
  261. gef_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
  262. gef_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
  263. gef_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
  264. gef_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
  265. gef_fild12,0,0,0,0 monster Antonio 1247,1,0,0,0
  266. gef_fild13,0,0,0,0 monster Antonio 1247,1,0,0,0
  267. gef_fild14,0,0,0,0 monster Antonio 1247,1,0,0,0
  268. glast_01,0,0,0,0 monster Antonio 1247,1,0,0,0
  269. lhz_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  270. lhz_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  271. lhz_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  272. mjolnir_01,0,0,0,0 monster Antonio 1247,1,0,0,0
  273. mjolnir_02,0,0,0,0 monster Antonio 1247,1,0,0,0
  274. mjolnir_03,0,0,0,0 monster Antonio 1247,1,0,0,0
  275. mjolnir_04,0,0,0,0 monster Antonio 1247,1,0,0,0
  276. mjolnir_05,0,0,0,0 monster Antonio 1247,1,0,0,0
  277. mjolnir_06,0,0,0,0 monster Antonio 1247,1,0,0,0
  278. mjolnir_07,0,0,0,0 monster Antonio 1247,1,0,0,0
  279. mjolnir_08,0,0,0,0 monster Antonio 1247,1,0,0,0
  280. mjolnir_09,0,0,0,0 monster Antonio 1247,1,0,0,0
  281. mjolnir_10,0,0,0,0 monster Antonio 1247,1,0,0,0
  282. mjolnir_11,0,0,0,0 monster Antonio 1247,1,0,0,0
  283. mjolnir_12,0,0,0,0 monster Antonio 1247,1,0,0,0
  284. moc_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  285. moc_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  286. moc_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  287. moc_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  288. moc_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
  289. moc_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
  290. moc_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
  291. moc_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
  292. moc_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
  293. moc_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
  294. moc_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
  295. moc_fild12,0,0,0,0 monster Antonio 1247,1,0,0,0
  296. moc_fild13,0,0,0,0 monster Antonio 1247,1,0,0,0
  297. moc_fild14,0,0,0,0 monster Antonio 1247,1,0,0,0
  298. moc_fild15,0,0,0,0 monster Antonio 1247,1,0,0,0
  299. moc_fild16,0,0,0,0 monster Antonio 1247,1,0,0,0
  300. moc_fild17,0,0,0,0 monster Antonio 1247,1,0,0,0
  301. moc_fild18,0,0,0,0 monster Antonio 1247,1,0,0,0
  302. pay_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  303. pay_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  304. pay_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  305. pay_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  306. pay_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
  307. pay_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
  308. pay_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
  309. pay_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
  310. pay_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
  311. pay_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
  312. pay_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
  313. prt_fild00,0,0,0,0 monster Antonio 1247,1,0,0,0
  314. prt_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  315. prt_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  316. prt_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  317. prt_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  318. prt_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
  319. prt_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
  320. prt_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
  321. prt_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
  322. prt_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
  323. prt_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
  324. prt_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
  325. xmas_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  326. cmd_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  327. cmd_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  328. cmd_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  329. cmd_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  330. cmd_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
  331. cmd_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
  332. cmd_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
  333. cmd_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
  334. cmd_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
  335. yuno_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  336. yuno_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  337. yuno_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  338. yuno_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  339. yuno_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
  340. yuno_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
  341. yuno_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
  342. yuno_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
  343. yuno_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
  344. yuno_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
  345. yuno_fild12,0,0,0,0 monster Antonio 1247,1,0,0,0
  346. ama_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  347. gon_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  348. um_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  349. um_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  350. um_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
  351. um_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  352. nif_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  353. nif_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
  354. lou_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  355. hu_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
  356. hu_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
  357. hu_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
  358. hu_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
  359.  
  360. //========================================================================================
  361. // - Xmas Jakk
  362. //========================================================================================
  363.  
  364. gef_dun01,0,0,0,0 monster Xmas Jakk 1244,5,0,0,0
  365. //gefenia02,0,0,0,0 monster Xmas Jakk 1244,5,0,0,0
  366.  
  367. //========================================================================================
  368. // - Xmas Orc
  369. //========================================================================================
  370.  
  371. gef_fild02,0,0,0,0 monster Christmas Orc 1588,5,0,0,0
  372. gef_fild03,0,0,0,0 monster Christmas Orc 1588,5,0,0,0
  373. gef_fild10,0,0,0,0 monster Christmas Orc 1588,5,0,0,0
  374. gef_fild14,0,0,0,0 monster Christmas Orc 1588,5,0,0,0
  375. alde_dun02,0,0,0,0 monster Christmas Orc 1588,5,0,0,0
Advertisement
Add Comment
Please, Sign In to add comment