diff --git a/.gitignore b/.gitignore index 9a3934bb8c..22064ab333 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ Thumbs.db # / /*_fifo /*.exe +/*.exe.* /*.ilk /*.log /*.ncb @@ -133,4 +134,5 @@ Thumbs.db /.idea/rathena.iml /.idea/vcs.xml /.idea/workspace.xml -/build/ \ No newline at end of file +/build/ + diff --git a/conf/battle/client.conf b/conf/battle/client.conf index c810044814..6ff1133572 100644 --- a/conf/battle/client.conf +++ b/conf/battle/client.conf @@ -52,6 +52,12 @@ packet_ver_flag: 0x7FFFFFFF // 0x00000008: 2013-07-10 Ragexe (version 43) // 0x00000010: 2013-07-17 Ragexe (version 44) // 0x00000020: 2013-08-07 Ragexe (version 45) +// 0x00000040: 2013-12-23 Ragexe (version 46) +// 0x00000080: ???? +// 0x00000100: ???? +// 0x00000200: ???? +// 0x00000400: 2014-10-16 Ragexe (version 50) +// 0x00000800: 2014-10-22 Ragexe (version 51) // default value: 0x7FFFFFFF (all clients/versions [41;72]) packet_ver_flag2: 0x7FFFFFFF diff --git a/conf/battle/feature.conf b/conf/battle/feature.conf index 66908989b1..38f068ea60 100644 --- a/conf/battle/feature.conf +++ b/conf/battle/feature.conf @@ -57,3 +57,8 @@ feature.autotrade_sit: 1 // Delay in miliseconds to open vending/buyingsotre after player logged in. feature.autotrade_open_delay: 5000 + +// Roulette (Note 1) +// Requires: 2014-10-22bRagexe or later +// Off by default while test version is out; enable at your own risk. +feature.roulette: off diff --git a/conf/battle/items.conf b/conf/battle/items.conf index 3f6a5f77c3..118b5cb82b 100644 --- a/conf/battle/items.conf +++ b/conf/battle/items.conf @@ -51,15 +51,14 @@ random_monster_checklv: no // NOTE: Wedding Rings and Whips/Musical Instruments will check gender regardless of setting. ignore_items_gender: yes -// Item check? -// On map change it will check for items not tagged as "available" and +// On map change it will check for items not tagged as "available" and // auto-delete them from inventory/cart/storage. -// NOTE: An item is not available if it was not loaded from the item_db or you -// specify it as unavailable in db/item_avail.txt -// 1: Inventory -// 2: Cart -// 4: Storage -item_check: 0 +// NOTE: An item is not available if it was not loaded from the item_db or +// specified as unavailable in db/item_avail.txt +// 0x1: Inventory +// 0x2: Cart +// 0x4: Storage +item_check: 0x0 // How much time must pass between item uses? // Only affects the delay between using items, prevents healing item abuse. Recommended ~500 ms diff --git a/conf/char_athena.conf b/conf/char_athena.conf index 590a362f93..f0f9cb0f7f 100644 --- a/conf/char_athena.conf +++ b/conf/char_athena.conf @@ -51,6 +51,17 @@ char_port: 6121 //If redirected output contains escape sequences (color codes) stdout_with_ansisequence: no +//Makes server log selected message types to a file in the /log/ folder +//1: Log Warning Messages +//2: Log Error and SQL Error messages. +//4: Log Debug Messages +//Example: "console_msg_log: 7" logs all 3 kinds +//Messages logged by this overrides console_silent setting +console_msg_log: 0 + +// File path to store the console messages above +console_log_filepath: ./log/char-msg_log.log + //Makes server output more silent by ommitting certain types of messages: //1: Hide Information messages //2: Hide Status messages diff --git a/conf/inter_athena.conf b/conf/inter_athena.conf index 41ae45ca13..2a8d642a17 100644 --- a/conf/inter_athena.conf +++ b/conf/inter_athena.conf @@ -80,9 +80,12 @@ mysql_reconnect_count: 1 // Login Database Tables login_server_account_db: login -login_server_accreg_db: global_reg_value ipban_table: ipbanlist +// Shared +global_acc_reg_num_table: global_acc_reg_num +global_acc_reg_str_table: global_acc_reg_str + // Char Database Tables char_db: char hotkey_db: hotkey @@ -91,7 +94,6 @@ cart_db: cart_inventory inventory_db: inventory charlog_db: charlog storage_db: storage -reg_db: global_reg_value skill_db: skill interlog_db: interlog memo_db: memo @@ -117,6 +119,10 @@ elemental_db: elemental ragsrvinfo_db: ragsrvinfo skillcooldown_db: skillcooldown bonus_script_db: bonus_script +acc_reg_num_table: acc_reg_num +acc_reg_str_table: acc_reg_str +char_reg_str_table: char_reg_str +char_reg_num_table: char_reg_num // Map Database Tables buyingstore_db: buyingstores @@ -135,10 +141,11 @@ mob_skill_db_db: mob_skill_db mob_skill_db_re_db: mob_skill_db_re mob_skill_db2_db: mob_skill_db2 //mob_skill_db2_db: mob_skill_db2_re -mapreg_db: mapreg +mapreg_table: mapreg vending_db: vendings vending_items_db: vending_items market_table: market +db_roulette_table: db_roulette // Use SQL item_db, mob_db and mob_skill_db for the map server? (yes/no) use_sql_db: no diff --git a/conf/log_athena.conf b/conf/log_athena.conf index 6667c606af..39b0169838 100644 --- a/conf/log_athena.conf +++ b/conf/log_athena.conf @@ -8,31 +8,34 @@ //-------------------------------------------------------------- // Enable Logs? (Note 3) -// 0x00000 - Don't log at all -// 0x00001 - (T) Log trades -// 0x00002 - (V) Log vending transactions -// 0x00004 - (P) Log items drop/picked by players -// 0x00008 - (L) Log items drop/looted by monsters -// 0x00010 - (S) Log NPC transactions (buy/sell) -// 0x00020 - (N) Log Script transactions (items deleted/acquired through quests) -// 0x00040 - (D) Log items stolen from mobs (Steal/Gank) -// 0x00080 - (C) Log player-used items (consumables/pet&hom&merc food/items used for skills&attacks) -// 0x00100 - (O) Log produced/ingredient items -// 0x00200 - (U) Log MVP prize items -// 0x00400 - (A) Log player created/deleted items (through @/# commands) -// 0x00800 - (R) Log items placed/retrieved from storage. -// 0x01000 - (G) Log items placed/retrieved from guild storage. -// 0x02000 - (E) Log mail system transactions. -// 0x04000 - (I) Log auction system transactions. -// 0x08000 - (B) Log buying store transactions -// 0x10000 - (X) Log all other transactions (rentals expiring/inserting cards/items removed by item_check/ +// 0x000000 - Don't log at all +// 0x000001 - (T) Log trades +// 0x000002 - (V) Log vending transactions +// 0x000004 - (P) Log items drop/picked by players +// 0x000008 - (L) Log items drop/looted by monsters +// 0x000010 - (S) Log NPC transactions (buy/sell) +// 0x000020 - (N) Log Script transactions (items deleted/acquired through quests) +// 0x000040 - (D) Log items stolen from mobs (Steal/Gank) +// 0x000080 - (C) Log player-used items (consumables/pet&hom&merc food/items used for skills&attacks) +// 0x000100 - (O) Log produced/ingredient items +// 0x000200 - (U) Log MVP prize items +// 0x000400 - (A) Log player created/deleted items (through @/# commands) +// 0x000800 - (R) Log items placed/retrieved from storage. +// 0x001000 - (G) Log items placed/retrieved from guild storage. +// 0x002000 - (E) Log mail system transactions. +// 0x004000 - (I) Log auction system transactions. +// 0x008000 - (B) Log buying store transactions +// 0x010000 - (X) Log all other transactions (rentals expiring/inserting cards/items removed by item_check/ // rings deleted by divorce/pet egg (un)hatching/pet armor (un)equipping/Weapon Refine skill/Remove Trap skill) -// 0x20000 - ($) Log cash transactions -// 0x40000 - (K) Log account bank transactions -// 0x80000 - (F) Removed bound items when guild/party is broken +// 0x020000 - ($) Log cash transactions +// 0x040000 - (K) Log account bank transactions +// 0x080000 - (F) Removed bound items when guild/party is broken +// 0x100000 - (Y) Roulette Lottery +// 0x200000 - (Z) Merged items from item mergers process. +// 0x400000 - (Q) Log items given from quest-granted drops. // Example: Log trades+vending+script items+created items: 1+2+32+1024 = 1059 // Please note that moving items from inventory to cart and back is not logged by design. -enable_logs: 0xFFFFF +enable_logs: 0xFFFFFF // Use MySQL Logs? [SQL Version Only] (Note 1) sql_logs: yes @@ -118,6 +121,15 @@ log_chat: 0 // Disable chat logging when WoE is running? (Note 1) log_chat_woe_disable: no +//Time-stamp format which will be printed for log file. +//Can at most be 20 characters long. +//Common formats: +// %I:%M:%S %p (hour:minute:second 12 hour, AM/PM format) +// %H:%M:%S (hour:minute:second, 24 hour format) +// %d/%b/%Y (day/Month/year) +//For full format information, consult the strftime() manual. +log_timestamp_format: %m/%d/%Y %H:%M:%S + // Logging files/tables // Following settings specify where to log to. If 'sql_logs' is // enabled, SQL tables are assumed, otherwise flat files. diff --git a/conf/login_athena.conf b/conf/login_athena.conf index 27f26e8f1f..8529a3e014 100644 --- a/conf/login_athena.conf +++ b/conf/login_athena.conf @@ -25,6 +25,17 @@ login_port: 6900 //If redirected output contains escape sequences (color codes) stdout_with_ansisequence: no +//Makes server log selected message types to a file in the /log/ folder +//1: Log Warning Messages +//2: Log Error and SQL Error messages. +//4: Log Debug Messages +//Example: "console_msg_log: 7" logs all 3 kinds +//Messages logged by this overrides console_silent setting +console_msg_log: 0 + +// File path to store the console messages above +console_log_filepath: ./log/login-msg_log.log + //Makes server output more silent by omitting certain types of messages: //1: Hide Information messages //2: Hide Status messages diff --git a/conf/map_athena.conf b/conf/map_athena.conf index de550e88fd..5df09c33b2 100644 --- a/conf/map_athena.conf +++ b/conf/map_athena.conf @@ -55,6 +55,9 @@ stdout_with_ansisequence: no //Messages logged by this overrides console_silent setting console_msg_log: 0 +// File path to store the console messages above +console_log_filepath: ./log/map-msg_log.log + //Makes server output more silent by omitting certain types of messages: //1: Hide Information messages //2: Hide Status messages diff --git a/conf/msg_conf/map_msg.conf b/conf/msg_conf/map_msg.conf index e00f5ee326..3fa92fd405 100644 --- a/conf/msg_conf/map_msg.conf +++ b/conf/msg_conf/map_msg.conf @@ -742,8 +742,7 @@ 715: Point Shop List: '%s' 716: Your '%s' now: %d -// Item Group -717: [%s] has won [%s] from '%s' +//717: Free // @showrate 718: Personal rate information is not displayed now. @@ -1593,5 +1592,8 @@ 1495: You can't withdraw that much money 1496: Banking is disabled +// Roulette +1497: Roulette is disabled + //Custom translations //import: conf/msg_conf/import/map_msg_eng_conf.txt diff --git a/conf/msg_conf/map_msg_idn.conf b/conf/msg_conf/map_msg_idn.conf index 128a3fae2b..06a7ba09f5 100644 --- a/conf/msg_conf/map_msg_idn.conf +++ b/conf/msg_conf/map_msg_idn.conf @@ -404,7 +404,7 @@ 387: Emblem yang dipilih tidak bisa digunakan karena terlalu banyak transparency (batas=%d) //lainnya 388: Kamu tidak bis menggunakan item ini ketika storage sedang dibuka. -//389 kosong +389: Speed kembali ke normal. //NoAsk 390: Penolakan otomatis diaktifkan. 391: Penolakan otomatis ditidakaktifkan. @@ -427,7 +427,8 @@ //berkaitan dengan chrif 408: Dibutuhkan pemutusan koneksi untuk melakukan permintaan ubah jenis kelamin ... 409: Jenis kelaminmu telah diganti (membutuhkan pemutusan koneksi oleh server) ... -//410-411 digunakan untuk cash shop +410: %d Cash Point telah dikurangi. Total point %d. +411: %d Kafra Point telah dikurangi. Total point %d. 412: Akunmu 'Tidak terdaftar' 413: Akunmu memiliki 'Password yang salah'... 414: Akunmu sudah kadaluarsa. @@ -436,7 +437,7 @@ 417: File game EXE-mu bukanlah versi terakhir. 418: Akunmu dilarang untuk masuk 419: Server sedang macet karena populasi yang berlebihan. -420: Akunmu sudah tidak diizinkan +420: Akunmu sudah tidak diizinkan. 421: Akunmu sudah dihapus keseluruhan. 423: Akunmu telah dibuang hingga %s 424: Login-serv meminta untuk %s pemain '%.*s'. @@ -500,8 +501,6 @@ 504: %d kafra poin dan %d cash poin sudah digunakan. Sisa: %d kafra dan %d cash poin. 505: %d cash poin sudah bertambah. Total %d poin. 506: %d kafra poin sudah bertambah. Total %d poin. -410: %d cash poin sudah dipakai. Total %d poin. -411: %d kafra poin sudah dipakai. Total %d poin. // Char ban 507: Pemain ini sudah dihukum selama %d menit. @@ -513,7 +512,7 @@ 510: Kamu memiliki %d pesan baru (ada %d pesan yang belum dibaca) // Instancing -515: Intance kamu sudha dimuat ulang. +515: Instance kamu sudah dimuat ulang. 516: Database Instance sudah dimuat ulang. // @auction @@ -537,7 +536,7 @@ 532: Shadow Right Accessory, 533: Shadow Left Accessory, -//534: kosong +534: Toko kehabisan stok! Datang lagi nanti. // Pesan yang berhubungan dengan deteksi Bot (Saat ini belum diimplementasikan) 535: Kemungkinan BOT (99%%) atau client yang digunakan sudah dimodifikasi '%s' (akun: %d, char_id: %d). Pemain ini bisa melihat nama kamu saat kamu sedang tidak terlihat. @@ -686,7 +685,7 @@ 662: Kamu harus setidaknya %d kotak jauhnya dari NPC. 663: Duel: Tidak dapat menggunakan item ini saat duel. 664: Kamu tidak dapat menggunakan perintah ini ketika mati. -665: TIdak daapt membuat ruang chat di area ini. +665: Tidak dapat membuat ruang chat di area ini. 666: Peliharaan tidak diperbolehkan di Guild Wars. 667: Kamu tidak mati. 668: Posisi memomu saat ini adalah: @@ -736,9 +735,9 @@ 711: Item %hu telah dihapus dari storage-mu. //Item shop -712: %s (%d) yang kamu miliki tidak cukup. +712: %s (%hu) yang kamu miliki tidak cukup. 713: '%s' yang kamu miliki tidak cukup. -714: Item Shop: %s (%d) +714: Item Shop: %s (%hu) 715: Point Shop: '%s' 716: '%s' milikmu saat ini: %d @@ -788,7 +787,7 @@ 900: Penggunaan: 901: @send len 902: @send {}* -903: Data: atau S"" +903: Data: atau S\"\" 904: Paket 0x%x panjang: %d 905: Paket tidak diketahui: 0x%x 906: Bukan sebuah kata: @@ -923,18 +922,12 @@ 1020: Kamu tidak diperbolehkan untuk memindahkan pemain tersebut. // @charblock -1021: Harap masukkan nama pemain. (Penggunaan: @charblock/@block ). +1021: Harap masukkan nama pemain. (Penggunaan: %s ). // @charban -1022: Harap masukkan waktu hukuman dan nama pemain. (Penggunaan: @charban/@ban/@banish/@charbanish ). +1022: Harap masukkan waktu hukuman dan nama pemain. (Penggunaan: %s ). 1023: Kamu tidak diperbolehkan untuk mengubah waktu hukuman. -// @charunblock -1024: Harap masukkan nama pemain. (Penggunaan: @charunblock ). - -// @charunban -1025: Harap masukkan nama pemain. (Penggunaan: @charunban ). - // @kick 1026: Harap masukkan nama pemain. (Penggunaan: @kick ). @@ -996,9 +989,9 @@ 1119: Kamu sudah menaiki seekor naga. 1120: Kamu sudah melepaskan nagamu. 1121: Kamu sudah menaiki seekor Warg. -1122: Kamu sudah melepaskan Warg-mu. +1122: Kamu sudah melepaskan Warg. 1123: Kamu sudah menaiki sebuah Mado Gear. -1124: Kamu sudah melepaskan Mado Gear-mu. +1124: Kamu sudah melepaskan Mado Gear. // @guildspy 1125: Perintah 'spy' (memata-matai) dinonaktifkan di mapserver. @@ -1146,8 +1139,8 @@ 1193: Kamu saat ini sedang tidak mengambil item ini secara otomatis. 1194: Item dihilangkan: '%s'/'%s' {%hu} dari daftar pengambilan otomatismu. 1195: Kamu hanya memiliki item %d di daftarmu. -1196: Untuk menambahkan item ke daftar, gunakan "@alootid +". Untuk menghilangkannya, gunakan "@alootid -". -1197: "@alootid reset" akan membersihkan daftar autolootitem. +1196: Untuk menambahkan item ke daftar, gunakan \"@alootid +\". Untuk menghilangkannya, gunakan \"@alootid -\". +1197: \"@alootid reset\" akan membersihkan daftar autolootitem. 1198: Daftar autolootitemmu kosong. 1199: Item yang berada di daftar autolootitem: 1200: Daftar autolootitem telah direset. @@ -1352,8 +1345,8 @@ // @mapflag 1311: Mapflag yang ada di map ini: -1312: Penggunaan: "@mapflag monster_noteleport 1" (0=Mati | 1=Hidup) -1313: Ketikkan "@mapflag available" untuk melihat daftar mapflag yang tersedia. +1312: Penggunaan: \"@mapflag monster_noteleport 1\" (0=Mati | 1=Hidup) +1313: Ketikkan \"@mapflag available\" untuk melihat daftar mapflag yang tersedia. 1314: Flag atau nama flag salah. 1315: Flag yang tersedia: @@ -1391,7 +1384,7 @@ // @itemlist 1332: ------ %s daftar item dari '%s' ------ -1333: | Dipakai: +1333: | Lokasi: 1334: Jubah, 1335: Aksesori kiri, 1336: Badan/armor, @@ -1432,13 +1425,13 @@ // @accinfo 1365: Penggunaan: @accinfo/@accountinfo -1366: Kamu boleh mencari bagian nama dengan menggunakan '%' dalam pencarian, misal "@accinfo %Mario%" akan menampilkan daftar semua karakter dengan nama "Mario". +1366: Kamu boleh mencari bagian nama dengan menggunakan '%' dalam pencarian, misal \"@accinfo %Mario%\" akan menampilkan daftar semua karakter dengan nama \"Mario\". // @set 1367: Penggunaan: @set -1368: Contoh penggunaan: "@set PoringCharVar 50" -1369: Contoh penggunaan: "@set PoringCharVarSTR$ Super Duper String" -1370: Contoh penggunaan: "@set PoringCharVarSTR$" menampilkan nilainya, Super Duper String. +1368: Contoh penggunaan: \"@set PoringCharVar 50\" +1369: Contoh penggunaan: \"@set PoringCharVarSTR$ Super Duper String\" +1370: Contoh penggunaan: \"@set PoringCharVarSTR$\" menampilkan nilainya, Super Duper String. 1371: Variabel pada NPC tidak boleh digunakan dengan @set. 1372: Variabel instansi tidak boleh digunakan dengan @set. 1373: Nilai %s saat ini: %d @@ -1579,22 +1572,24 @@ 1482: Daftar autoloottype-mu sudah memiliki semua tipe. Kamu dapat menghilangkan beberapa tipe item dengan @autoloottype -. 1483: Meng-autoloot tipe item: '%s' {%d} 1484: Kamu sudah tidak meng-autoloot tipe item ini. -1485: Tipe item: '%s' {%d} dihilangkan dari daftar autoloottype-mu. -1486: Untuk menambahkan tipe item ke dalam daftar, gunakan "@aloottype +". Untuk menghilangkan sebuah tipe item, gunakan "@aloottype -". +1485: Tipe item: '%s' {%d} dihilangkan dari daftar autoloottype anda. +1486: Untuk menambahkan tipe item ke dalam daftar, gunakan \"@aloottype +\". Untuk menghilangkan sebuah tipe item, gunakan \"@aloottype -\". 1487: Daftar tipe: healing = 0, usable = 2, etc = 3, weapon = 4, armor = 5, card = 6, petegg = 7, petarmor = 8, ammo = 10 -1488: "@aloottype reset" akan membersihkan daftar autoloottype-mu. -1489: Dafatr autoloottype-mu kosong. -1490: Tipe item yang berada di daftar autoloottype-mu: -1491: Daftar autoloottype-mu telah direset. +1488: \"@aloottype reset\" akan membersihkan daftar autoloottype anda. +1489: Daftar autoloottype anda kosong. +1490: Tipe item yang berada di daftar autoloottype anda: +1491: Daftar autoloottype anda telah direset. // @dropall 1492: Penggunaan: @dropall {} 1493: Daftar 'tipe': (default) all = -1, healing = 0, usable = 2, etc = 3, weapon = 4, armor = 5, card = 6, petegg = 7, petarmor = 8, ammo = 10 -1494: %d item telah dijatuhkan! +1494: %d item telah dijatuhkan! (%d tidak bisa dijatuhkan) //Banking 1495: Kamu tidak dapat mengambil uang sebanyak itu. 1496: Fitur banking tidak sedang aktif. +1497: Roulette tidak tersedia. + //Bila ada terjemahan lain //import: conf/msg_conf/import/map_msg_idn_conf.txt diff --git a/conf/msg_conf/map_msg_tha.conf b/conf/msg_conf/map_msg_tha.conf index d0f39fad2e..e2976dd929 100644 --- a/conf/msg_conf/map_msg_tha.conf +++ b/conf/msg_conf/map_msg_tha.conf @@ -1467,5 +1467,35 @@ // @reloadpacketdb 1477: ฐานข้อมูล Packet ได้ถูกโหลดใหม่เรียบร้อย. +// @partysharelvl +1478: ระดับ Level สำหรับการแชร์ ได้ถูกปรับเปลี่ยนเรียบร้อยแล้ว. +1479: การปรับค่าการแชร์ผิดพลาด. Character server จะถูกปิดลง. + +// @autoloottype +1480: ไม่พบไอเทม. +1481: คุณกำลัง autoloot ไอเทมชนิดนี้อยู่. +1482: ลิสรายการ autoloot ของคุณเต็ม. คุณสามารถปรับลดได้ด้วยคำสั่ง @autoloottype -<ชื่อไอเทม หรือ ID>. +1483: ไอเทมที่กำลัง autolooting: '%s' {%d} +1484: คุณไม่ได้สั่งเก็บไอเทมชนิดนี้. +1485: ยกเลิกการเก็บไอเทมชนิดนี้: '%s' {%d} จากลิสรายการ autoloot ของคุณ. +1486: วิธีนำไอเทมที่จะเก็บเข้าสู่ลิส ให้พิมพ์คำสั่ง "@aloottype +<ชื่อไอเทม หรือ ID>". ยกเลิกการเก็บไอเทมชนิดนี้ พิพม์คำสั่ง "@aloottype -<ชื่อไอเทม หรือ ID>". +1487: ประเภทไอเทมต่างๆ : healing = 0, usable = 2, etc = 3, armor = 4, weapon = 5, card = 6, petegg = 7, petarmor = 8, ammo = 10 +1488: "@aloottype reset" เคลียร์ไอเทมที่อยู่ในลิสของคุณทั้งหมด. +1489: ลิสกรายการเก็บไอเทมของคุณเต็ม. +1490: ลิสรายการ autoloottype มีดังนี้: +1491: ลิสรายการ autoloottype ได้ถูกลบไปแล้ว . + +// @dropall +1492: พิมพ์คำสั่ง: @dropall {<ชนิดของไอเทม>} +1493: ชนิดของไอเทม: (ค่าเริ่มต้น) ดรอปทุกชนิด = -1, healing = 0, usable = 2, etc = 3, armor = 4, weapon = 5, card = 6, petegg = 7, petarmor = 8, ammo = 10 +1494: ไอเทม %d ได้หล่นออกจากตัวคุณแล้ว (%d ข้าม)! + +// Banking +1495: คุณไม่สามารถถอนเงิน มากกว่าที่ฝากไว้ได้ +1496: ระบบฝากเงิน Banking ปิดการใช้งาน + +// Roulette +1497: ระบบ Roulette ปิดการใช้งาน + //Custom translations //import: conf/msg_conf/import/map_msg_tha_conf.txt diff --git a/ragit.cfg b/conf/valkyrie_sample.cfg similarity index 80% rename from ragit.cfg rename to conf/valkyrie_sample.cfg index 54f9798e97..0fe8a9d4f0 100644 --- a/ragit.cfg +++ b/conf/valkyrie_sample.cfg @@ -40,19 +40,19 @@ xml=yes xml-user-comment= [valkyrie] -binary=/home/lighta/Documents/Myscript/RO/Servs/ragit/char-server +binary=./char-server binary-flags=--run-once browser=/usr/bin/perl -default-logdir=/tmp/valkyrie_lighta/ +default-logdir=./tmp font-gen-sys=true font-gen-user="Luxi Sans,10,-1,5,50,0,0,0,0,0" font-tool-user="Misc Fixed,11,-1,5,50,0,0,0,0,0" -project-file= +project-file=/home/lighta/Documents/Dev/RO/rathena/conf/valkyrie_sample.cfg show-butt-text=false show-tooltips=true -src-editor=gvim +src-editor=/bin/geany src-lines=2 use-vk-palette=true -vg-exec=valgrind +vg-exec=/bin/valgrind view-log= -working-dir=/home/lighta/Documents/Myscript/RO/Servs/ragit +working-dir=../ diff --git a/db/const.txt b/db/const.txt index d279193c89..890993dff2 100644 --- a/db/const.txt +++ b/db/const.txt @@ -175,7 +175,6 @@ EAJL_2 0x300 EAJL_UPPER 0x1000 EAJL_BABY 0x2000 EAJL_THIRD 0x4000 -EAJL_SUPER_NOVICE 0x8000 EAJ_BASEMASK 0x00ff EAJ_UPPERMASK 0x0fff @@ -299,10 +298,10 @@ EAJ_BABY_SURA 0x6204 EAJ_BABY_GENETIC 0x6205 EAJ_BABY_CHASER 0x6206 -EAJ_SUPER_NOVICE 0x8100 -EAJ_SUPER_BABY 0xA100 -EAJ_SUPER_NOVICE_E 0xC100 -EAJ_SUPER_BABY_E 0xE100 +EAJ_SUPER_NOVICE 0x100 +EAJ_SUPER_BABY 0x2100 +EAJ_SUPER_NOVICE_E 0x4100 +EAJ_SUPER_BABY_E 0x6100 bc_all 0 bc_map 1 @@ -433,6 +432,9 @@ CharMoves 124 1 CharRename 125 1 Font 126 1 BankVault 127 1 +RouletteBronze 128 1 +RouletteSilver 129 1 +RouletteGold 130 1 bMaxHP 6 bMaxSP 8 @@ -539,8 +541,8 @@ bSPDrainValue 1080 bWeaponAtk 1081 bWeaponAtkRate 1082 bDelayrate 1083 -bHpDrainValueRace 1084 -bSpDrainValueRace 1085 +bHPDrainValueRace 1084 +bSPDrainValueRace 1085 bIgnoreMdefRaceRate 1086 bIgnoreDefRaceRate 1087 bSkillHeal2 1088 @@ -596,8 +598,8 @@ bMagicSPGainValue 2043 bMagicHPGainValue 2044 bAddMonsterIdDropItem 2045 bMatk 2046 -bSPGainRaceAttack 2047 -bHPGainRaceAttack 2048 +bComaClass 2047 +bComaRace 2048 bSkillUseSPrate 2049 bSkillCooldown 2050 @@ -629,6 +631,9 @@ bAddMaxWeight 2072 bAddItemGroupHealRate 2073 bHPVanishRaceRate 2074 bSPVanishRaceRate 2075 +bAbsorbDmgMaxHP 2076 +bSubSkill 2077 +bSubDefEle 2078 EQI_HEAD_TOP 1 EQI_ARMOR 2 @@ -679,6 +684,7 @@ Eff_Bleeding 9 Eff_DPoison 10 Eff_Fear 309 Eff_Burning 310 +Eff_Crystalize 388 Ele_Neutral 0 Ele_Water 1 @@ -1163,8 +1169,39 @@ IG_Gift_Buff_Set 419 IG_Lucky_Silvervine_Fruit_Box_III10 420 IG_Lucky_Silvervine_Fruit_Box_III110 421 IG_Old_Ore_Box 422 +IG_Blessing_Lucky_Egg 423 +IG_Sograt_Lucky_Egg 424 +IG_Garnet_Lucky_Egg 425 +IG_Amora_Lucky_Egg 426 +IG_Venus_Lucky_Egg 427 +IG_Erzulie_Lucky_Egg 428 +IG_Majestic_Lucky_Egg 429 +IG_Epic_Heroes_Lucky_Egg 430 +IG_Hero_Midgard_Egg 431 +IG_Midgard_Celebration_Lucky_Egg 432 +IG_Rune_Midgard_Imortal_Lucky_Egg 433 +IG_Rise_Midgard_Lucky_Egg 434 +IG_Time_Travel_Lucky_Egg 435 +IG_Solaris_Festival_Scroll 436 +IG_Midgard_Festival_Egg 437 +IG_Midgard_Egg 438 +IG_Sweet_Midgard_Egg 439 +IG_Winter_Midgard_Egg 440 +IG_Spring_Festival_Lucky_Egg 441 +IG_Birthday_IdRO10th_Scroll 442 +IG_Requiem_Egg 443 +IG_Holy_Spirit_Egg 444 +IG_Memorial_Garuda_Lucky_Egg 445 +IG_Miracle_Lucky_Egg 446 +IG_Legend_Hero_Lucky_Egg 447 +IG_Blessing_Midgard_Lucky_Egg 448 +IG_Chronosian_Lucky_Egg 449 +IG_Sanctuary_Lucky_Egg 450 +IG_Cyborg_Lucky_Egg 451 +IG_Undine_Lucky_Egg 452 SC_ALL -1 +SC_NONE -1 SC_STONE 0 SC_FREEZE 1 SC_STUN 2 @@ -1752,8 +1789,8 @@ SC_ALL_RIDING 592 SC_TEARGAS_SOB 593 SC__FEINTBOMB 594 SC__CHAOS 595 -SC_ELEMENTAL_SHIELD 596 -SC_CHASEWALK2 597 +SC_CHASEWALK2 596 +SC_VACUUM_EXTREME_POSTDELAY 597 SC_MTF_ASPD2 598 SC_MTF_RANGEATK2 599 SC_MTF_MATK2 600 @@ -1763,7 +1800,23 @@ SC_MTF_MHP 603 SC_MTF_MSP 604 SC_MTF_PUMPKIN 605 SC_MTF_HITFLEE 606 -SC_EXTREMITYFIST2 607 +SC_CRIFOOD 607 +SC_ATTHASTE_CASH 608 +SC_REUSE_LIMIT_A 609 +SC_REUSE_LIMIT_B 610 +SC_REUSE_LIMIT_C 611 +SC_REUSE_LIMIT_D 612 +SC_REUSE_LIMIT_E 613 +SC_REUSE_LIMIT_F 614 +SC_REUSE_LIMIT_G 615 +SC_REUSE_LIMIT_H 616 +SC_REUSE_LIMIT_MTF 617 +SC_REUSE_LIMIT_ASPD_POTION 618 +SC_REUSE_MILLENNIUMSHIELD 619 +SC_REUSE_CRUSHSTRIKE 620 +SC_REUSE_STORMBLAST 621 +SC_ALL_RIDING_REUSE_LIMIT 622 +SC_EXTREMITYFIST2 623 //Status Icon SI_BLANK -1 @@ -4627,6 +4680,67 @@ THANATOS_KEEP 10009 4_JP_EDGA_H 10111 4_JP_BRAGOLEM_H 10112 4_EL_AQUA 10113 +4_EP16_NIHIL 10114 +4_EP16_SPICA 10115 +4_EP16_SKIA 10116 +4_EP16_PETER 10117 +4_EP16_CRUX 10118 +4_EP16_GRANZ 10119 +4_EP16_STOLZ 10120 +4_EP16_EGEO 10121 +4_EP16_COOK 10122 +4_EP16_MARK 10123 +4_EP16_TAMARIN 10124 +4_EP16_POE 10125 +4_EP16_ISAAC 10126 +4_EP16_HELMUT 10127 +4_EP16_WOLF 10128 +4_EP16_MEYER 10129 +4_EP16_AGNES 10130 +4_EP16_FOOD 10131 +4_EP16_LOUVIERE 10132 +4_EP16_MAX 10133 +4_EP16_SPIEGEL 10134 +4_MOONLIGHT 10135 +4_MISTRESS 10136 +4_DRACULA 10137 +4_STORMKNIGHT 10138 +4_TATTER 10139 +4_AS_RAGGED_GOLEM 10140 +4_AS_BLOODY_KNIGHT 10141 +4_AS_WIND_GHOST 10142 +4_F_BIJOU 10143 +4_EP16_COOK2 10144 +4_SERVICE_30_M_01 10145 +4_SERVICE_30_F_01 10146 +4_SCR_AT_ROBOTS 10147 +4_F_RANGER 10148 +4_WAG 10149 +4_NPC_TRAP 10150 +4_RAGGLER 10151 +4_DR_PEPE 10152 +4_DR_GAMBERI 10153 +4_DR_AGLIO 10154 +4_DR_OLIO 10155 +4_DR_STELO 10156 +4_DR_TORTEL 10157 +4_BASIL_SLAVE 10158 +4_DOU_JINDO 10159 +4_DOU_SIBA 10160 +4_TARUTUPI 10161 +4_DR_SOLDIER 10162 +4_DR_M_01 10163 +4_DR_M_02 10164 +4_DR_F_01 10165 +4_DR_F_02 10166 +4_DR_KID_01 10167 +4_JP_2015EVT 10168 +4_ALLIGATOR 10169 +4_ANOLIAN 10170 +4_TACNU 10171 +4_CENERE 10172 +4_F_ARUNA_POP2 10173 +4_JACK_HEAD 10174 HAVEQUEST 0 PLAYTIME 1 @@ -4710,5 +4824,11 @@ SKILL_TEMP 1 SKILL_TEMPLEVEL 2 SKILL_PERM_GRANT 3 +MOBG_Branch_Of_Dead_Tree 0 +MOBG_Poring_Box 1 +MOBG_Bloody_Dead_Branch 2 +MOBG_Red_Pouch_Of_Surprise 3 +MOBG_ClassChange 4 + false 0 true 1 diff --git a/db/import-tmpl/mob_random_db.txt b/db/import-tmpl/mob_random_db.txt new file mode 100644 index 0000000000..2ff2846cd7 --- /dev/null +++ b/db/import-tmpl/mob_random_db.txt @@ -0,0 +1 @@ +//import: db/import/mob_random_group.txt diff --git a/db/import-tmpl/quest_db.txt b/db/import-tmpl/quest_db.txt index e67b40feb4..61416a27a4 100644 --- a/db/import-tmpl/quest_db.txt +++ b/db/import-tmpl/quest_db.txt @@ -1,5 +1,7 @@ // Quest Database // // Structure of Database: -// Quest ID,Time Limit,Target1,Val1,Target2,Val2,Target3,Val3,Quest Title - +// Quest ID,Time Limit,Target1,Val1,Target2,Val2,Target3,Val3,MobID1,NameID1,Rate1,MobID2,NameID2,Rate2,MobID3,NameID3,Rate3,Quest Title +// +// The MobID*, NameID*, and Rate* reflect special values for quests that can drop an item at given rate from given mob. +// If no MobID* is given, then any mob has a chance to drop the given ItemID*. diff --git a/db/mob_classchange.txt b/db/mob_classchange.txt index f546681aef..85949e09ae 100644 --- a/db/mob_classchange.txt +++ b/db/mob_classchange.txt @@ -2,30 +2,30 @@ // List of monsters generated through Abracadabra's SA_CLASSCHANGE ability. // // Structure of Database: -// MobID,DummyName,Rate +// MobRandomGroupID,MobID,DummyName,Rate -0,Baphomet,1039 -1038,Osiris,1000000 -1039,Baphomet,1000000 -1046,Doppelganger,1000000 -1059,Mistress,1000000 -1086,Golden Thief Bug,1000000 -1087,Orc Hero,1000000 -1112,Drake,1000000 -1115,Eddga,1000000 -1147,Maya,1000000 -1150,Moonlight Flower,1000000 -1157,Pharaoh,1000000 -1159,Phreeoni,1000000 -1190,Orc Lord,1000000 -1251,Stormy Knight,1000000 -1252,Garm,1000000 -1272,Dark Lord,1000000 -1312,Turtle General,1000000 -1373,Lord of the Dead,1000000 -1388,Arc Angeling,1000000 -1389,Dracula,1000000 -1418,Evil Snake Lord,1000000 -1492,Samurai Specter,1000000 -1511,Amon Ra,1000000 -1583,Tao Gunka,1000000 +MOBG_ClassChange,0,Baphomet,1039 +MOBG_ClassChange,1038,Osiris,1000000 +MOBG_ClassChange,1039,Baphomet,1000000 +MOBG_ClassChange,1046,Doppelganger,1000000 +MOBG_ClassChange,1059,Mistress,1000000 +MOBG_ClassChange,1086,Golden Thief Bug,1000000 +MOBG_ClassChange,1087,Orc Hero,1000000 +MOBG_ClassChange,1112,Drake,1000000 +MOBG_ClassChange,1115,Eddga,1000000 +MOBG_ClassChange,1147,Maya,1000000 +MOBG_ClassChange,1150,Moonlight Flower,1000000 +MOBG_ClassChange,1157,Pharaoh,1000000 +MOBG_ClassChange,1159,Phreeoni,1000000 +MOBG_ClassChange,1190,Orc Lord,1000000 +MOBG_ClassChange,1251,Stormy Knight,1000000 +MOBG_ClassChange,1252,Garm,1000000 +MOBG_ClassChange,1272,Dark Lord,1000000 +MOBG_ClassChange,1312,Turtle General,1000000 +MOBG_ClassChange,1373,Lord of the Dead,1000000 +MOBG_ClassChange,1388,Arc Angeling,1000000 +MOBG_ClassChange,1389,Dracula,1000000 +MOBG_ClassChange,1418,Evil Snake Lord,1000000 +MOBG_ClassChange,1492,Samurai Specter,1000000 +MOBG_ClassChange,1511,Amon Ra,1000000 +MOBG_ClassChange,1583,Tao Gunka,1000000 diff --git a/db/mob_pouch.txt b/db/mob_pouch.txt index 72c08b8acb..dcde682402 100644 --- a/db/mob_pouch.txt +++ b/db/mob_pouch.txt @@ -1,336 +1,336 @@ // Red Pouch of Surprise Summonable Monsters Database // // Structure of Database: -// MobID,DummyName,Rate +// MobRandomGroupID,MobID,DummyName,Rate -0,Poring,1002 -1001,Scorpion,214285 -1002,Poring,1000000 -1004,Hornet,357142 -1005,Familiar,357142 -1007,Fabre,428571 -1008,Pupa,71428 -1009,Condor,357142 -1010,Willow,357142 -1011,Chonchon,357142 -1012,Roda Frog,357142 -1013,Wolf,357142 -1014,Spore,357142 -1015,Zombie,357142 -1016,Archer Skeleton,214285 -1018,Creamy,357142 -1019,Peco Peco,357142 -1020,Mandragora,357142 -1023,Orc Warrior,214285 -1024,Wormtail,357142 -1025,Boa,357142 -1026,Munak,214285 -1028,Soldier Skeleton,214285 -1029,Isis,71428 -1030,Anacondaq,214285 -1031,Poporing,357142 -1032,Verit,214285 -1033,Elder Willow,214285 -1034,Thara Frog,214285 -1035,Hunter Fly,71428 -1036,Ghoul,214285 -1037,Side Winder,71428 -1040,Golem,214285 -1041,Mummy,214285 -1042,Steel Chonchon,357142 -1044,Obeaune,214285 -1045,Marc,214285 -1047,Peco Peco Egg,71428 -1048,Thief Bug Egg,71428 -1049,Picky,357142 -1050,Picky,357142 -1051,Thief Bug,357142 -1052,Rocker,357142 -1053,Thief Bug Female,357142 -1054,Thief Bug Male,357142 -1055,Muka,357142 -1056,Smokie,357142 -1057,Yoyo,357142 -1058,Metaller,214285 -1060,Bigfoot,214285 -1061,Nightmare,71428 -1062,Santa Poring,357142 -1063,Lunatic,357142 -1064,Megalodon,214285 -1065,Strouf,214285 -1066,Vadon,357142 -1067,Cornutus,214285 -1068,Hydra,357142 -1069,Swordfish,214285 -1070,Kukre,357142 -1071,Pirate Skeleton,214285 -1072,Kaho,71428 -1073,Crab,214285 -1074,Shellfish,357142 -1076,Skeleton,357142 -1077,Poison Spore,357142 -1078,Red Plant,71428 -1079,Blue Plant,71428 -1080,Green Plant,71428 -1081,Yellow Plant,71428 -1082,White Plant,71428 -1083,Shining Plant,71428 -1084,Black Mushroom,71428 -1085,Red Mushroom,71428 -1088,Vocal,71428 -1089,Toad,71428 -1090,Mastering,71428 -1091,Dragon Fly,71428 -1092,Vagabond Wolf,71428 -1093,Eclipse,71428 -1094,Ambernite,357142 -1095,Andre,357142 -1096,Angeling,71428 -1097,Ant Egg,71428 -1099,Argiope,71428 -1100,Argos,214285 -1101,Baphomet Jr.,71428 -1102,Bathory,71428 -1103,Caramel,214285 -1104,Coco,357142 -1105,Deniro,357142 -1106,Desert Wolf,214285 -1107,Baby Desert Wolf,71428 -1108,Deviace,71428 -1109,Deviruchi,71428 -1110,Dokebi,214285 -1111,Drainliar,214285 -1113,Drops,357142 -1114,Dustiness,214285 -1116,Eggyra,214285 -1117,Evil Druid,71428 -1118,Flora,214285 -1119,Frilldora,214285 -1120,Ghostring,71428 -1121,Giearth,214285 -1122,Goblin,214285 -1123,Goblin,214285 -1124,Goblin,214285 -1125,Goblin,214285 -1126,Goblin,214285 -1127,Hode,214285 -1128,Horn,357142 -1129,Horong,214285 -1130,Jakk,214285 -1131,Joker,71428 -1132,Khalitzburg,71428 -1133,Kobold,214285 -1134,Kobold,214285 -1135,Kobold,214285 -1138,Magnolia,214285 -1139,Mantis,214285 -1140,Marduk,214285 -1141,Marina,214285 -1142,Marine Sphere,214285 -1143,Marionette,71428 -1144,Marse,214285 -1145,Martin,357142 -1146,Matyr,214285 -1148,Medusa,71428 -1149,Minorous,71428 -1151,Myst,214285 -1152,Orc Skeleton,214285 -1153,Orc Zombie,214285 -1154,Pasana,71428 -1155,Petite,71428 -1156,Petite,71428 -1158,Phen,214285 -1160,Piere,357142 -1161,Plankton,357142 -1163,Raydric,71428 -1164,Requiem,214285 -1165,Sandman,214285 -1166,Savage,214285 -1167,Savage Babe,357142 -1169,Skeleton Worker,214285 -1170,Sohee,214285 -1174,Stainer,357142 -1175,Tarou,357142 -1176,Vitata,214285 -1177,Zenorc,214285 -1178,Zerom,214285 -1179,Whisper,71428 -1180,Nine Tail,71428 -1182,Thief Mushroom,71428 -1185,Whisper,71428 -1186,Giant Whisper,71428 -1188,Bongun,214285 -1189,Orc Archer,71428 -1191,Mimic,71428 -1192,Wraith,71428 -1193,Alarm,71428 -1194,Arclouze,71428 -1195,Rideword,71428 -1196,Skeleton Prisoner,71428 -1197,Zombie Prisoner,71428 -1199,Punk,71428 -1200,Zealotus,71428 -1201,Rybio,71428 -1202,Phendark,71428 -1203,Mysteltainn,71428 -1204,Ogretooth,71428 -1205,Executioner,71428 -1206,Anolian,71428 -1207,Sting,71428 -1208,Wanderer,71428 -1209,Cramp,71428 -1211,Brilight,71428 -1212,Iron Fist,71428 -1213,High Orc,71428 -1214,Choco,71428 -1215,Stem Worm,214285 -1216,Penomena,71428 -1219,Abysmal Knight,71428 -1242,Marin,357142 -1243,Sasquatch,214285 -1245,Christmas Goblin,71428 -1246,Christmas Cookie,214285 -1248,Cruiser,214285 -1249,Myst Case,214285 -1250,Chepet,71428 -1253,Gargoyle,71428 -1254,Raggler,214285 -1255,Nereid,214285 -1256,Pest,214285 -1257,Injustice,71428 -1258,Goblin Archer,214285 -1259,Gryphon,71428 -1260,Dark Frame,71428 -1261,Wild Rose,214285 -1262,Mutant Dragonoid,71428 -1263,Wind Ghost,71428 -1264,Merman,71428 -1265,Cookie,214285 -1266,Aster,357142 -1267,Carat,71428 -1268,Bloody Knight,71428 -1269,Clock,71428 -1270,Clock Tower Manager,71428 -1271,Alligator,71428 -1273,Orc Lady,214285 -1274,Megalith,71428 -1275,Alice,71428 -1276,Raydric Archer,71428 -1277,Greatest General,214285 -1278,Stalactic Golem,71428 -1279,Tri Joint,214285 -1280,Goblin Steamrider,214285 -1281,Sage Worm,71428 -1282,Kobold Archer,214285 -1283,Chimera,71428 -1289,Maya Purple,71428 -1290,Skeleton General,71428 -1291,Wraith Dead,71428 -1292,Mini Demon,71428 -1293,Creamy Fear,71428 -1294,Killer Mantis,71428 -1295,Owl Baron,71428 -1296,Kobold Leader,71428 -1297,Ancient Mummy,71428 -1298,Zombie Master,71428 -1299,Goblin Leader,71428 -1300,Caterpillar,71428 -1301,Am Mut,71428 -1302,Dark Illusion,71428 -1303,Giant Hornet,71428 -1304,Giant Spider,71428 -1305,Ancient Worm,71428 -1306,Leib Olmai,71428 -1307,Cat o' Nine Tails,71428 -1308,Panzer Goblin,71428 -1309,Gajomart,71428 -1310,Majoruros,71428 -1311,Gullinbursti,71428 -1313,Mobster,71428 -1314,Permeter,71428 -1315,Assaulter,71428 -1316,Solider,71428 -1317,Seal,71428 -1318,Heater,71428 -1319,Freezer,71428 -1320,Owl Duke,71428 -1321,Dragon Tail,71428 -1322,Spring Rabbit,71428 -1323,Sea Otter,71428 -1365,Apocalypse,71428 -1366,Lava Golem,71428 -1367,Blazer,71428 -1368,Geographer,71428 -1369,Grand Peco,71428 -1370,Succubus,71428 -1371,False Angel,71428 -1372,Goat,71428 -1374,Incubus,71428 -1375,The Paper,71428 -1376,Harpy,71428 -1377,Elder,71428 -1378,Demon Pungus,71428 -1379,Nightmare Terror,71428 -1380,Driller,71428 -1381,Grizzly,71428 -1382,Diabolic,71428 -1383,Explosion,71428 -1384,Deleter,71428 -1385,Deleter,71428 -1386,Sleeper,71428 -1387,Gig,71428 -1390,Violy,71428 -1391,Galapago,71428 -1392,Rotar Zairo,214285 -1400,Karakasa,214285 -1401,Shinobi,71428 -1402,Poison Toad,71428 -1403,Firelock Soldier,71428 -1404,Miyabi Doll,214285 -1405,Tengu,71428 -1406,Kapha,71428 -1408,Bloody Butterfly,71428 -1409,Dumpling Child,214285 -1410,Enchanted Peach Tree,71428 -1412,Taoist Hermit,71428 -1413,Hermit Plant,71428 -1415,Baby Leopard,214285 -1416,Evil Nymph,71428 -1417,Zipper Bear,214285 -1493,Dryad,71428 -1494,Beetle King,214285 -1495,Stone Shooter,71428 -1497,Wooden Golem,71428 -1498,Wootan Shooter,214285 -1499,Wootan Fighter,71428 -1500,Parasite,214285 -1503,Gibbet,71428 -1504,Dullahan,71428 -1505,Loli Ruri,71428 -1506,Disguise,71428 -1507,Bloody Murderer,71428 -1508,Quve,214285 -1509,Lude,214285 -1510,Heirozoist,71428 -1512,Yao Jun,71428 -1513,Mao Guai,71428 -1514,Zhu Po Long,71428 -1515,Baby Hatii,71428 -1516,Mi Gao,71428 -1517,Jing Guai,71428 -1519,Green Maiden,71428 -1520,Boiled Rice,71428 -1582,Deviling,71428 -1584,Tamruan,71428 -1586,Leaf Cat,71428 -1587,Kraben,71428 -1613,Metaling,71428 -1614,Mineral,71428 -1615,Obsidian,71428 -1616,Pitman,71428 -1617,Old Stove,71428 -1618,Ungoliant,71428 -1619,Porcellio,71428 -1620,Noxious,71428 -1621,Venomous,71428 -1622,Teddy Bear,142857 +MOBG_Red_Pouch_Of_Surprise,0,Poring,1002 +MOBG_Red_Pouch_Of_Surprise,1001,Scorpion,214285 +MOBG_Red_Pouch_Of_Surprise,1002,Poring,1000000 +MOBG_Red_Pouch_Of_Surprise,1004,Hornet,357142 +MOBG_Red_Pouch_Of_Surprise,1005,Familiar,357142 +MOBG_Red_Pouch_Of_Surprise,1007,Fabre,428571 +MOBG_Red_Pouch_Of_Surprise,1008,Pupa,71428 +MOBG_Red_Pouch_Of_Surprise,1009,Condor,357142 +MOBG_Red_Pouch_Of_Surprise,1010,Willow,357142 +MOBG_Red_Pouch_Of_Surprise,1011,Chonchon,357142 +MOBG_Red_Pouch_Of_Surprise,1012,Roda Frog,357142 +MOBG_Red_Pouch_Of_Surprise,1013,Wolf,357142 +MOBG_Red_Pouch_Of_Surprise,1014,Spore,357142 +MOBG_Red_Pouch_Of_Surprise,1015,Zombie,357142 +MOBG_Red_Pouch_Of_Surprise,1016,Archer Skeleton,214285 +MOBG_Red_Pouch_Of_Surprise,1018,Creamy,357142 +MOBG_Red_Pouch_Of_Surprise,1019,Peco Peco,357142 +MOBG_Red_Pouch_Of_Surprise,1020,Mandragora,357142 +MOBG_Red_Pouch_Of_Surprise,1023,Orc Warrior,214285 +MOBG_Red_Pouch_Of_Surprise,1024,Wormtail,357142 +MOBG_Red_Pouch_Of_Surprise,1025,Boa,357142 +MOBG_Red_Pouch_Of_Surprise,1026,Munak,214285 +MOBG_Red_Pouch_Of_Surprise,1028,Soldier Skeleton,214285 +MOBG_Red_Pouch_Of_Surprise,1029,Isis,71428 +MOBG_Red_Pouch_Of_Surprise,1030,Anacondaq,214285 +MOBG_Red_Pouch_Of_Surprise,1031,Poporing,357142 +MOBG_Red_Pouch_Of_Surprise,1032,Verit,214285 +MOBG_Red_Pouch_Of_Surprise,1033,Elder Willow,214285 +MOBG_Red_Pouch_Of_Surprise,1034,Thara Frog,214285 +MOBG_Red_Pouch_Of_Surprise,1035,Hunter Fly,71428 +MOBG_Red_Pouch_Of_Surprise,1036,Ghoul,214285 +MOBG_Red_Pouch_Of_Surprise,1037,Side Winder,71428 +MOBG_Red_Pouch_Of_Surprise,1040,Golem,214285 +MOBG_Red_Pouch_Of_Surprise,1041,Mummy,214285 +MOBG_Red_Pouch_Of_Surprise,1042,Steel Chonchon,357142 +MOBG_Red_Pouch_Of_Surprise,1044,Obeaune,214285 +MOBG_Red_Pouch_Of_Surprise,1045,Marc,214285 +MOBG_Red_Pouch_Of_Surprise,1047,Peco Peco Egg,71428 +MOBG_Red_Pouch_Of_Surprise,1048,Thief Bug Egg,71428 +MOBG_Red_Pouch_Of_Surprise,1049,Picky,357142 +MOBG_Red_Pouch_Of_Surprise,1050,Picky,357142 +MOBG_Red_Pouch_Of_Surprise,1051,Thief Bug,357142 +MOBG_Red_Pouch_Of_Surprise,1052,Rocker,357142 +MOBG_Red_Pouch_Of_Surprise,1053,Thief Bug Female,357142 +MOBG_Red_Pouch_Of_Surprise,1054,Thief Bug Male,357142 +MOBG_Red_Pouch_Of_Surprise,1055,Muka,357142 +MOBG_Red_Pouch_Of_Surprise,1056,Smokie,357142 +MOBG_Red_Pouch_Of_Surprise,1057,Yoyo,357142 +MOBG_Red_Pouch_Of_Surprise,1058,Metaller,214285 +MOBG_Red_Pouch_Of_Surprise,1060,Bigfoot,214285 +MOBG_Red_Pouch_Of_Surprise,1061,Nightmare,71428 +MOBG_Red_Pouch_Of_Surprise,1062,Santa Poring,357142 +MOBG_Red_Pouch_Of_Surprise,1063,Lunatic,357142 +MOBG_Red_Pouch_Of_Surprise,1064,Megalodon,214285 +MOBG_Red_Pouch_Of_Surprise,1065,Strouf,214285 +MOBG_Red_Pouch_Of_Surprise,1066,Vadon,357142 +MOBG_Red_Pouch_Of_Surprise,1067,Cornutus,214285 +MOBG_Red_Pouch_Of_Surprise,1068,Hydra,357142 +MOBG_Red_Pouch_Of_Surprise,1069,Swordfish,214285 +MOBG_Red_Pouch_Of_Surprise,1070,Kukre,357142 +MOBG_Red_Pouch_Of_Surprise,1071,Pirate Skeleton,214285 +MOBG_Red_Pouch_Of_Surprise,1072,Kaho,71428 +MOBG_Red_Pouch_Of_Surprise,1073,Crab,214285 +MOBG_Red_Pouch_Of_Surprise,1074,Shellfish,357142 +MOBG_Red_Pouch_Of_Surprise,1076,Skeleton,357142 +MOBG_Red_Pouch_Of_Surprise,1077,Poison Spore,357142 +MOBG_Red_Pouch_Of_Surprise,1078,Red Plant,71428 +MOBG_Red_Pouch_Of_Surprise,1079,Blue Plant,71428 +MOBG_Red_Pouch_Of_Surprise,1080,Green Plant,71428 +MOBG_Red_Pouch_Of_Surprise,1081,Yellow Plant,71428 +MOBG_Red_Pouch_Of_Surprise,1082,White Plant,71428 +MOBG_Red_Pouch_Of_Surprise,1083,Shining Plant,71428 +MOBG_Red_Pouch_Of_Surprise,1084,Black Mushroom,71428 +MOBG_Red_Pouch_Of_Surprise,1085,Red Mushroom,71428 +MOBG_Red_Pouch_Of_Surprise,1088,Vocal,71428 +MOBG_Red_Pouch_Of_Surprise,1089,Toad,71428 +MOBG_Red_Pouch_Of_Surprise,1090,Mastering,71428 +MOBG_Red_Pouch_Of_Surprise,1091,Dragon Fly,71428 +MOBG_Red_Pouch_Of_Surprise,1092,Vagabond Wolf,71428 +MOBG_Red_Pouch_Of_Surprise,1093,Eclipse,71428 +MOBG_Red_Pouch_Of_Surprise,1094,Ambernite,357142 +MOBG_Red_Pouch_Of_Surprise,1095,Andre,357142 +MOBG_Red_Pouch_Of_Surprise,1096,Angeling,71428 +MOBG_Red_Pouch_Of_Surprise,1097,Ant Egg,71428 +MOBG_Red_Pouch_Of_Surprise,1099,Argiope,71428 +MOBG_Red_Pouch_Of_Surprise,1100,Argos,214285 +MOBG_Red_Pouch_Of_Surprise,1101,Baphomet Jr.,71428 +MOBG_Red_Pouch_Of_Surprise,1102,Bathory,71428 +MOBG_Red_Pouch_Of_Surprise,1103,Caramel,214285 +MOBG_Red_Pouch_Of_Surprise,1104,Coco,357142 +MOBG_Red_Pouch_Of_Surprise,1105,Deniro,357142 +MOBG_Red_Pouch_Of_Surprise,1106,Desert Wolf,214285 +MOBG_Red_Pouch_Of_Surprise,1107,Baby Desert Wolf,71428 +MOBG_Red_Pouch_Of_Surprise,1108,Deviace,71428 +MOBG_Red_Pouch_Of_Surprise,1109,Deviruchi,71428 +MOBG_Red_Pouch_Of_Surprise,1110,Dokebi,214285 +MOBG_Red_Pouch_Of_Surprise,1111,Drainliar,214285 +MOBG_Red_Pouch_Of_Surprise,1113,Drops,357142 +MOBG_Red_Pouch_Of_Surprise,1114,Dustiness,214285 +MOBG_Red_Pouch_Of_Surprise,1116,Eggyra,214285 +MOBG_Red_Pouch_Of_Surprise,1117,Evil Druid,71428 +MOBG_Red_Pouch_Of_Surprise,1118,Flora,214285 +MOBG_Red_Pouch_Of_Surprise,1119,Frilldora,214285 +MOBG_Red_Pouch_Of_Surprise,1120,Ghostring,71428 +MOBG_Red_Pouch_Of_Surprise,1121,Giearth,214285 +MOBG_Red_Pouch_Of_Surprise,1122,Goblin,214285 +MOBG_Red_Pouch_Of_Surprise,1123,Goblin,214285 +MOBG_Red_Pouch_Of_Surprise,1124,Goblin,214285 +MOBG_Red_Pouch_Of_Surprise,1125,Goblin,214285 +MOBG_Red_Pouch_Of_Surprise,1126,Goblin,214285 +MOBG_Red_Pouch_Of_Surprise,1127,Hode,214285 +MOBG_Red_Pouch_Of_Surprise,1128,Horn,357142 +MOBG_Red_Pouch_Of_Surprise,1129,Horong,214285 +MOBG_Red_Pouch_Of_Surprise,1130,Jakk,214285 +MOBG_Red_Pouch_Of_Surprise,1131,Joker,71428 +MOBG_Red_Pouch_Of_Surprise,1132,Khalitzburg,71428 +MOBG_Red_Pouch_Of_Surprise,1133,Kobold,214285 +MOBG_Red_Pouch_Of_Surprise,1134,Kobold,214285 +MOBG_Red_Pouch_Of_Surprise,1135,Kobold,214285 +MOBG_Red_Pouch_Of_Surprise,1138,Magnolia,214285 +MOBG_Red_Pouch_Of_Surprise,1139,Mantis,214285 +MOBG_Red_Pouch_Of_Surprise,1140,Marduk,214285 +MOBG_Red_Pouch_Of_Surprise,1141,Marina,214285 +MOBG_Red_Pouch_Of_Surprise,1142,Marine Sphere,214285 +MOBG_Red_Pouch_Of_Surprise,1143,Marionette,71428 +MOBG_Red_Pouch_Of_Surprise,1144,Marse,214285 +MOBG_Red_Pouch_Of_Surprise,1145,Martin,357142 +MOBG_Red_Pouch_Of_Surprise,1146,Matyr,214285 +MOBG_Red_Pouch_Of_Surprise,1148,Medusa,71428 +MOBG_Red_Pouch_Of_Surprise,1149,Minorous,71428 +MOBG_Red_Pouch_Of_Surprise,1151,Myst,214285 +MOBG_Red_Pouch_Of_Surprise,1152,Orc Skeleton,214285 +MOBG_Red_Pouch_Of_Surprise,1153,Orc Zombie,214285 +MOBG_Red_Pouch_Of_Surprise,1154,Pasana,71428 +MOBG_Red_Pouch_Of_Surprise,1155,Petite,71428 +MOBG_Red_Pouch_Of_Surprise,1156,Petite,71428 +MOBG_Red_Pouch_Of_Surprise,1158,Phen,214285 +MOBG_Red_Pouch_Of_Surprise,1160,Piere,357142 +MOBG_Red_Pouch_Of_Surprise,1161,Plankton,357142 +MOBG_Red_Pouch_Of_Surprise,1163,Raydric,71428 +MOBG_Red_Pouch_Of_Surprise,1164,Requiem,214285 +MOBG_Red_Pouch_Of_Surprise,1165,Sandman,214285 +MOBG_Red_Pouch_Of_Surprise,1166,Savage,214285 +MOBG_Red_Pouch_Of_Surprise,1167,Savage Babe,357142 +MOBG_Red_Pouch_Of_Surprise,1169,Skeleton Worker,214285 +MOBG_Red_Pouch_Of_Surprise,1170,Sohee,214285 +MOBG_Red_Pouch_Of_Surprise,1174,Stainer,357142 +MOBG_Red_Pouch_Of_Surprise,1175,Tarou,357142 +MOBG_Red_Pouch_Of_Surprise,1176,Vitata,214285 +MOBG_Red_Pouch_Of_Surprise,1177,Zenorc,214285 +MOBG_Red_Pouch_Of_Surprise,1178,Zerom,214285 +MOBG_Red_Pouch_Of_Surprise,1179,Whisper,71428 +MOBG_Red_Pouch_Of_Surprise,1180,Nine Tail,71428 +MOBG_Red_Pouch_Of_Surprise,1182,Thief Mushroom,71428 +MOBG_Red_Pouch_Of_Surprise,1185,Whisper,71428 +MOBG_Red_Pouch_Of_Surprise,1186,Giant Whisper,71428 +MOBG_Red_Pouch_Of_Surprise,1188,Bongun,214285 +MOBG_Red_Pouch_Of_Surprise,1189,Orc Archer,71428 +MOBG_Red_Pouch_Of_Surprise,1191,Mimic,71428 +MOBG_Red_Pouch_Of_Surprise,1192,Wraith,71428 +MOBG_Red_Pouch_Of_Surprise,1193,Alarm,71428 +MOBG_Red_Pouch_Of_Surprise,1194,Arclouze,71428 +MOBG_Red_Pouch_Of_Surprise,1195,Rideword,71428 +MOBG_Red_Pouch_Of_Surprise,1196,Skeleton Prisoner,71428 +MOBG_Red_Pouch_Of_Surprise,1197,Zombie Prisoner,71428 +MOBG_Red_Pouch_Of_Surprise,1199,Punk,71428 +MOBG_Red_Pouch_Of_Surprise,1200,Zealotus,71428 +MOBG_Red_Pouch_Of_Surprise,1201,Rybio,71428 +MOBG_Red_Pouch_Of_Surprise,1202,Phendark,71428 +MOBG_Red_Pouch_Of_Surprise,1203,Mysteltainn,71428 +MOBG_Red_Pouch_Of_Surprise,1204,Ogretooth,71428 +MOBG_Red_Pouch_Of_Surprise,1205,Executioner,71428 +MOBG_Red_Pouch_Of_Surprise,1206,Anolian,71428 +MOBG_Red_Pouch_Of_Surprise,1207,Sting,71428 +MOBG_Red_Pouch_Of_Surprise,1208,Wanderer,71428 +MOBG_Red_Pouch_Of_Surprise,1209,Cramp,71428 +MOBG_Red_Pouch_Of_Surprise,1211,Brilight,71428 +MOBG_Red_Pouch_Of_Surprise,1212,Iron Fist,71428 +MOBG_Red_Pouch_Of_Surprise,1213,High Orc,71428 +MOBG_Red_Pouch_Of_Surprise,1214,Choco,71428 +MOBG_Red_Pouch_Of_Surprise,1215,Stem Worm,214285 +MOBG_Red_Pouch_Of_Surprise,1216,Penomena,71428 +MOBG_Red_Pouch_Of_Surprise,1219,Abysmal Knight,71428 +MOBG_Red_Pouch_Of_Surprise,1242,Marin,357142 +MOBG_Red_Pouch_Of_Surprise,1243,Sasquatch,214285 +MOBG_Red_Pouch_Of_Surprise,1245,Christmas Goblin,71428 +MOBG_Red_Pouch_Of_Surprise,1246,Christmas Cookie,214285 +MOBG_Red_Pouch_Of_Surprise,1248,Cruiser,214285 +MOBG_Red_Pouch_Of_Surprise,1249,Myst Case,214285 +MOBG_Red_Pouch_Of_Surprise,1250,Chepet,71428 +MOBG_Red_Pouch_Of_Surprise,1253,Gargoyle,71428 +MOBG_Red_Pouch_Of_Surprise,1254,Raggler,214285 +MOBG_Red_Pouch_Of_Surprise,1255,Nereid,214285 +MOBG_Red_Pouch_Of_Surprise,1256,Pest,214285 +MOBG_Red_Pouch_Of_Surprise,1257,Injustice,71428 +MOBG_Red_Pouch_Of_Surprise,1258,Goblin Archer,214285 +MOBG_Red_Pouch_Of_Surprise,1259,Gryphon,71428 +MOBG_Red_Pouch_Of_Surprise,1260,Dark Frame,71428 +MOBG_Red_Pouch_Of_Surprise,1261,Wild Rose,214285 +MOBG_Red_Pouch_Of_Surprise,1262,Mutant Dragonoid,71428 +MOBG_Red_Pouch_Of_Surprise,1263,Wind Ghost,71428 +MOBG_Red_Pouch_Of_Surprise,1264,Merman,71428 +MOBG_Red_Pouch_Of_Surprise,1265,Cookie,214285 +MOBG_Red_Pouch_Of_Surprise,1266,Aster,357142 +MOBG_Red_Pouch_Of_Surprise,1267,Carat,71428 +MOBG_Red_Pouch_Of_Surprise,1268,Bloody Knight,71428 +MOBG_Red_Pouch_Of_Surprise,1269,Clock,71428 +MOBG_Red_Pouch_Of_Surprise,1270,Clock Tower Manager,71428 +MOBG_Red_Pouch_Of_Surprise,1271,Alligator,71428 +MOBG_Red_Pouch_Of_Surprise,1273,Orc Lady,214285 +MOBG_Red_Pouch_Of_Surprise,1274,Megalith,71428 +MOBG_Red_Pouch_Of_Surprise,1275,Alice,71428 +MOBG_Red_Pouch_Of_Surprise,1276,Raydric Archer,71428 +MOBG_Red_Pouch_Of_Surprise,1277,Greatest General,214285 +MOBG_Red_Pouch_Of_Surprise,1278,Stalactic Golem,71428 +MOBG_Red_Pouch_Of_Surprise,1279,Tri Joint,214285 +MOBG_Red_Pouch_Of_Surprise,1280,Goblin Steamrider,214285 +MOBG_Red_Pouch_Of_Surprise,1281,Sage Worm,71428 +MOBG_Red_Pouch_Of_Surprise,1282,Kobold Archer,214285 +MOBG_Red_Pouch_Of_Surprise,1283,Chimera,71428 +MOBG_Red_Pouch_Of_Surprise,1289,Maya Purple,71428 +MOBG_Red_Pouch_Of_Surprise,1290,Skeleton General,71428 +MOBG_Red_Pouch_Of_Surprise,1291,Wraith Dead,71428 +MOBG_Red_Pouch_Of_Surprise,1292,Mini Demon,71428 +MOBG_Red_Pouch_Of_Surprise,1293,Creamy Fear,71428 +MOBG_Red_Pouch_Of_Surprise,1294,Killer Mantis,71428 +MOBG_Red_Pouch_Of_Surprise,1295,Owl Baron,71428 +MOBG_Red_Pouch_Of_Surprise,1296,Kobold Leader,71428 +MOBG_Red_Pouch_Of_Surprise,1297,Ancient Mummy,71428 +MOBG_Red_Pouch_Of_Surprise,1298,Zombie Master,71428 +MOBG_Red_Pouch_Of_Surprise,1299,Goblin Leader,71428 +MOBG_Red_Pouch_Of_Surprise,1300,Caterpillar,71428 +MOBG_Red_Pouch_Of_Surprise,1301,Am Mut,71428 +MOBG_Red_Pouch_Of_Surprise,1302,Dark Illusion,71428 +MOBG_Red_Pouch_Of_Surprise,1303,Giant Hornet,71428 +MOBG_Red_Pouch_Of_Surprise,1304,Giant Spider,71428 +MOBG_Red_Pouch_Of_Surprise,1305,Ancient Worm,71428 +MOBG_Red_Pouch_Of_Surprise,1306,Leib Olmai,71428 +MOBG_Red_Pouch_Of_Surprise,1307,Cat o' Nine Tails,71428 +MOBG_Red_Pouch_Of_Surprise,1308,Panzer Goblin,71428 +MOBG_Red_Pouch_Of_Surprise,1309,Gajomart,71428 +MOBG_Red_Pouch_Of_Surprise,1310,Majoruros,71428 +MOBG_Red_Pouch_Of_Surprise,1311,Gullinbursti,71428 +MOBG_Red_Pouch_Of_Surprise,1313,Mobster,71428 +MOBG_Red_Pouch_Of_Surprise,1314,Permeter,71428 +MOBG_Red_Pouch_Of_Surprise,1315,Assaulter,71428 +MOBG_Red_Pouch_Of_Surprise,1316,Solider,71428 +MOBG_Red_Pouch_Of_Surprise,1317,Seal,71428 +MOBG_Red_Pouch_Of_Surprise,1318,Heater,71428 +MOBG_Red_Pouch_Of_Surprise,1319,Freezer,71428 +MOBG_Red_Pouch_Of_Surprise,1320,Owl Duke,71428 +MOBG_Red_Pouch_Of_Surprise,1321,Dragon Tail,71428 +MOBG_Red_Pouch_Of_Surprise,1322,Spring Rabbit,71428 +MOBG_Red_Pouch_Of_Surprise,1323,Sea Otter,71428 +MOBG_Red_Pouch_Of_Surprise,1365,Apocalypse,71428 +MOBG_Red_Pouch_Of_Surprise,1366,Lava Golem,71428 +MOBG_Red_Pouch_Of_Surprise,1367,Blazer,71428 +MOBG_Red_Pouch_Of_Surprise,1368,Geographer,71428 +MOBG_Red_Pouch_Of_Surprise,1369,Grand Peco,71428 +MOBG_Red_Pouch_Of_Surprise,1370,Succubus,71428 +MOBG_Red_Pouch_Of_Surprise,1371,False Angel,71428 +MOBG_Red_Pouch_Of_Surprise,1372,Goat,71428 +MOBG_Red_Pouch_Of_Surprise,1374,Incubus,71428 +MOBG_Red_Pouch_Of_Surprise,1375,The Paper,71428 +MOBG_Red_Pouch_Of_Surprise,1376,Harpy,71428 +MOBG_Red_Pouch_Of_Surprise,1377,Elder,71428 +MOBG_Red_Pouch_Of_Surprise,1378,Demon Pungus,71428 +MOBG_Red_Pouch_Of_Surprise,1379,Nightmare Terror,71428 +MOBG_Red_Pouch_Of_Surprise,1380,Driller,71428 +MOBG_Red_Pouch_Of_Surprise,1381,Grizzly,71428 +MOBG_Red_Pouch_Of_Surprise,1382,Diabolic,71428 +MOBG_Red_Pouch_Of_Surprise,1383,Explosion,71428 +MOBG_Red_Pouch_Of_Surprise,1384,Deleter,71428 +MOBG_Red_Pouch_Of_Surprise,1385,Deleter,71428 +MOBG_Red_Pouch_Of_Surprise,1386,Sleeper,71428 +MOBG_Red_Pouch_Of_Surprise,1387,Gig,71428 +MOBG_Red_Pouch_Of_Surprise,1390,Violy,71428 +MOBG_Red_Pouch_Of_Surprise,1391,Galapago,71428 +MOBG_Red_Pouch_Of_Surprise,1392,Rotar Zairo,214285 +MOBG_Red_Pouch_Of_Surprise,1400,Karakasa,214285 +MOBG_Red_Pouch_Of_Surprise,1401,Shinobi,71428 +MOBG_Red_Pouch_Of_Surprise,1402,Poison Toad,71428 +MOBG_Red_Pouch_Of_Surprise,1403,Firelock Soldier,71428 +MOBG_Red_Pouch_Of_Surprise,1404,Miyabi Doll,214285 +MOBG_Red_Pouch_Of_Surprise,1405,Tengu,71428 +MOBG_Red_Pouch_Of_Surprise,1406,Kapha,71428 +MOBG_Red_Pouch_Of_Surprise,1408,Bloody Butterfly,71428 +MOBG_Red_Pouch_Of_Surprise,1409,Dumpling Child,214285 +MOBG_Red_Pouch_Of_Surprise,1410,Enchanted Peach Tree,71428 +MOBG_Red_Pouch_Of_Surprise,1412,Taoist Hermit,71428 +MOBG_Red_Pouch_Of_Surprise,1413,Hermit Plant,71428 +MOBG_Red_Pouch_Of_Surprise,1415,Baby Leopard,214285 +MOBG_Red_Pouch_Of_Surprise,1416,Evil Nymph,71428 +MOBG_Red_Pouch_Of_Surprise,1417,Zipper Bear,214285 +MOBG_Red_Pouch_Of_Surprise,1493,Dryad,71428 +MOBG_Red_Pouch_Of_Surprise,1494,Beetle King,214285 +MOBG_Red_Pouch_Of_Surprise,1495,Stone Shooter,71428 +MOBG_Red_Pouch_Of_Surprise,1497,Wooden Golem,71428 +MOBG_Red_Pouch_Of_Surprise,1498,Wootan Shooter,214285 +MOBG_Red_Pouch_Of_Surprise,1499,Wootan Fighter,71428 +MOBG_Red_Pouch_Of_Surprise,1500,Parasite,214285 +MOBG_Red_Pouch_Of_Surprise,1503,Gibbet,71428 +MOBG_Red_Pouch_Of_Surprise,1504,Dullahan,71428 +MOBG_Red_Pouch_Of_Surprise,1505,Loli Ruri,71428 +MOBG_Red_Pouch_Of_Surprise,1506,Disguise,71428 +MOBG_Red_Pouch_Of_Surprise,1507,Bloody Murderer,71428 +MOBG_Red_Pouch_Of_Surprise,1508,Quve,214285 +MOBG_Red_Pouch_Of_Surprise,1509,Lude,214285 +MOBG_Red_Pouch_Of_Surprise,1510,Heirozoist,71428 +MOBG_Red_Pouch_Of_Surprise,1512,Yao Jun,71428 +MOBG_Red_Pouch_Of_Surprise,1513,Mao Guai,71428 +MOBG_Red_Pouch_Of_Surprise,1514,Zhu Po Long,71428 +MOBG_Red_Pouch_Of_Surprise,1515,Baby Hatii,71428 +MOBG_Red_Pouch_Of_Surprise,1516,Mi Gao,71428 +MOBG_Red_Pouch_Of_Surprise,1517,Jing Guai,71428 +MOBG_Red_Pouch_Of_Surprise,1519,Green Maiden,71428 +MOBG_Red_Pouch_Of_Surprise,1520,Boiled Rice,71428 +MOBG_Red_Pouch_Of_Surprise,1582,Deviling,71428 +MOBG_Red_Pouch_Of_Surprise,1584,Tamruan,71428 +MOBG_Red_Pouch_Of_Surprise,1586,Leaf Cat,71428 +MOBG_Red_Pouch_Of_Surprise,1587,Kraben,71428 +MOBG_Red_Pouch_Of_Surprise,1613,Metaling,71428 +MOBG_Red_Pouch_Of_Surprise,1614,Mineral,71428 +MOBG_Red_Pouch_Of_Surprise,1615,Obsidian,71428 +MOBG_Red_Pouch_Of_Surprise,1616,Pitman,71428 +MOBG_Red_Pouch_Of_Surprise,1617,Old Stove,71428 +MOBG_Red_Pouch_Of_Surprise,1618,Ungoliant,71428 +MOBG_Red_Pouch_Of_Surprise,1619,Porcellio,71428 +MOBG_Red_Pouch_Of_Surprise,1620,Noxious,71428 +MOBG_Red_Pouch_Of_Surprise,1621,Venomous,71428 +MOBG_Red_Pouch_Of_Surprise,1622,Teddy Bear,142857 diff --git a/db/packet_db.txt b/db/packet_db.txt index 2d48a91b13..045ddbba03 100644 --- a/db/packet_db.txt +++ b/db/packet_db.txt @@ -1477,7 +1477,7 @@ packet_ver: 25 //2009-12-01aRagexeRE 0x07fc,10 -//0x07fd,-1 +0x07fd,-1,ZC_BROADCASTING_SPECIAL_ITEM_OBTAIN,0 0x07fe,26 //0x07ff,-1 @@ -1776,6 +1776,11 @@ packet_keys: 0x01581359,0x452D6FFA,0x6AFB6E2E // [Shakto] 0x0916,26,guildinvite2,2 0x091d,41,bookingregreq,2:4:6 0x08cb,10,ZC_PERSONAL_INFOMATION,2:4:6:8:10:11:13:15 //Still need further information +// Merge Item +0x096D,-1,ZC_MERGE_ITEM_OPEN,2:4 // ZC_MERGE_ITEM_OPEN +0x096E,-1,mergeitem_req,2:4 // CZ_REQ_MERGE_ITEM +0x096F,7,ZC_ACK_MERGE_ITEM,2:4:6 // ZC_ACK_MERGE_ITEM +0x0974,2,mergeitem_cancel,0 // CZ_CANCEL_MERGE_ITEM //2012-04-18aRagexeRE [Special Thanks to Judas!] packet_ver: 31 @@ -2273,6 +2278,11 @@ packet_keys: 0x7E241DE0,0x5E805580,0x3D807D80 // [Shakto] 0x0361,5,hommenu,2:4 0x0887,36,storagepassword,2:4:20 0x09C1,10,ZC_C_MARKERINFO,2:6:8 +// Merge Item +0x096D,-1,ZC_MERGE_ITEM_OPEN,2:4 // ZC_MERGE_ITEM_OPEN +0x096E,-1,mergeitem_req,2:4 // CZ_REQ_MERGE_ITEM +0x096F,7,ZC_ACK_MERGE_ITEM,2:4:6:7 // ZC_ACK_MERGE_ITEM +0x0974,2,mergeitem_cancel,0 // CZ_CANCEL_MERGE_ITEM //2013-12-23Ragexe packet_ver: 46 @@ -2318,5 +2328,112 @@ packet_keys: 0x631C511C,0x111C111C,0x111C111C // [Shakto] 0x09D8,2,npcmarketclosed,0 0x09DF,7 +//2014-10-16Ragexe +packet_ver: 50 +packet_keys: 0x2DFF467C,0x444B37EE,0x2C1B634F // [YomRawr] +0x0369,7,actionrequest,2:6 +0x083C,10,useskilltoid,2:4:6 +0x0437,5,walktoxy,2 +0x035F,6,ticksend,2 +0x0967,5,changedir,2:4 +0x07E4,6,takeitem,2 +0x0362,6,dropitem,2:4 +0x07EC,8,movetokafra,2:4 +0x022D,8,movefromkafra,2:4 +0x0438,10,useskilltopos,2:4:6:8 +0x0366,90,useskilltoposinfo,2:4:6:8:10 +0x096A,6,getcharnamerequest,2 +0x0368,6,solvecharname,2 +0x0838,12,searchstoreinfolistitemclick,2:6:10 +0x0835,2,searchstoreinfonextpage,0 +0x0819,-1,searchstoreinfo,2:4:5:9:13:14:15 +0x0811,-1,reqtradebuyingstore,2:4:8:12 +0x0360,6,reqclickbuyingstore,2 +0x0817,2,reqclosebuyingstore,0 +0x0815,-1,reqopenbuyingstore,2:4:8:9:89 +0x0365,18,bookingregreq,2:4 +// 0x0363,8 // CZ_JOIN_BATTLE_FIELD +0x0281,-1,itemlistwindowselected,2:4:8 +0x086E,19,wanttoconnection,2:6:10:14:18 +0x0802,26,partyinvite,2 +// 0x0922,4 // CZ_GANGSI_RANK +0x094B,26,friendslistadd,2 +0x0364,5,hommenu,2:4 +0x0936,36,storagepassword,0 +0x09DF,7 +0x0A00,269 +0x0A01,3,hotkeyrowshift,2 + +// Roulette System [Yommy] +0x0A19,2,rouletteopen,0 // HEADER_CZ_REQ_OPEN_ROULETTE +0x0A1A,23 // HEADER_ZC_ACK_OPEN_ROULETTE +0x0A1B,2,rouletteinfo,0 // HEADER_CZ_REQ_ROULETTE_INFO +0x0A1C,-1 // HEADER_ZC_ACK_ROULETTE_INFO +0x0A1D,2,rouletteclose,0 // HEADER_CZ_REQ_CLOSE_ROULETTE +0x0A1E,3 // HEADER_ZC_ACK_CLOSE_ROULETTE +0x0A1F,2,roulettegenerate,0 // HEADER_CZ_REQ_GENERATE_ROULETTE +0x0A20,21 // HEADER_ZC_ACK_GENERATE_ROULETTE +0x0A21,3,rouletterecvitem,2 // HEADER_CZ_RECV_ROULETTE_ITEM +0x0A22,5 // HEADER_ZC_RECV_ROULETTE_ITEM + +//2014-10-22bRagexe +packet_ver: 51 +packet_keys: 0x290551EA,0x2B952C75,0x2D67669B // [YomRawr] +0x006d,149 +0x023b,10,useskilltopos,2:4:6:8 +0x0281,-1,itemlistwindowselected,2:4:8:12 +0x035f,6,ticksend,2 +0x0360,6,reqclickbuyingstore,2 +0x0366,90,useskilltoposinfo,2:4:6:8:10 +0x0368,6,solvecharname,2 +0x0369,7,actionrequest,2:6 +0x0437,5,walktoxy,2 +0x0438,36,storagepassword,2:4:20 +0x0811,-1,reqtradebuyingstore,2:4:8:12 +0x0815,-1,reqopenbuyingstore,2:4:8:9:89 +0x0817,2,reqclosebuyingstore,0 +0x0819,-1,searchstoreinfo,2:4:5:9:13:14:15 +0x0835,12,searchstoreinfolistitemclick,2:6:10 +0x083c,10,useskilltoid,2:4:6 +0x0878,8,movetokafra,2:4 +0x087d,6,dropitem,2:4 +0x0896,26,partyinvite2,2 +0x0899,5,hommenu,2:4 +0x08aa,8,movefromkafra,2:4 +//0x08ab,4 // CZ_GANGSI_RANK +0x08ad,5,changedir,2:4 +0x08e3,149 +0x091a,26,friendslistadd,2 +//0x092b,8 // CZ_JOIN_BATTLE_FIELD +0x093b,19,wanttoconnection,2:6:10:14:18 +0x0940,2,searchstoreinfonextpage,0 +0x094e,6,takeitem,2 +0x0955,18,bookingregreq,2:4:6 +0x096a,6,getcharnamerequest,2 +0x09e7,3 +0x09e8,11 +0x09ea,11 +0x09eb,-1 +0x09ed,3 +0x09ee,11 +0x09f1,11 +0x09f2,12 +0x09f3,11 +0x09f9,143 +0x0a03,2 +0x0a04,6 +0x0a05,49 +0x0a06,6 +0x0a07,9 +0x0a08,26 +0x0a09,45 +0x0a0a,47 +0x0a0b,47 +0x0a0c,56 +0x0a0d,-1 +0x0a13,26 +0x0A18,14 // HEADER_ZC_ACCEPT_ENTER3 +0x0a24,66 + //Add new packets here -//packet_ver: 47 +//packet_ver: 52 diff --git a/db/pre-re/item_combo_db.txt b/db/pre-re/item_combo_db.txt index 9decb66c68..7f8e623ce4 100644 --- a/db/pre-re/item_combo_db.txt +++ b/db/pre-re/item_combo_db.txt @@ -136,12 +136,12 @@ 4127:4166,{ bonus2 bAddEffWhenHit,Eff_Curse,600; } 4153:4247:4273,{ bonus3 bAddMonsterDropItem,544,RC_Fish,3000; bonus2 bAddEle,Ele_Water,30; } 4168:4169,{ bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bCastrate,-10; } -4172:4210:4230:4257:4272,{ bonus bAgi,5; bonus bStr,5; bonus bAspdRate,5; bonus bSpeedRate,25; bonus2 bSPDrainValue,1,0; if(BaseClass==Job_Thief) bonus bNoGemStone,0; } -4178:4199:4234:4252:4297,{ bonus bAgi,5; bonus bDex,3; bonus bLongAtkRate,20; bonus bPerfectHitAddRate,20; if(BaseClass==Job_Archer) { bonus2 bExpAddRace,RC_Brute,5; bonus2 bWeaponComaRace,RC_Brute,100; } } +4172:4210:4230:4257:4272,{ bonus bAgi,5; bonus bStr,5; bonus bAspdRate,5; bonus bSpeedRate,25; bonus bSPDrainValue,1; if(BaseClass==Job_Thief) bonus bNoGemStone,0; } +4178:4199:4234:4252:4297,{ bonus bAgi,5; bonus bDex,3; bonus bLongAtkRate,20; bonus bPerfectHitAddRate,20; if(BaseClass==Job_Archer) { bonus2 bExpAddRace,RC_Brute,5; bonus2 bComaRace,RC_Brute,100; } } 4178:4234:4252:4297:4381,{ bonus bDex,5; bonus2 bSkillAtk,"CG_ARROWVULCAN",5; bonus2 bSkillAtk,"DC_THROWARROW",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; if(BaseJob==Job_Bard||BaseJob==Job_Dancer) bonus3 bAutoSpellWhenHit,"CG_TAROTCARD",2,50; } 4185:4217:4280:4293:4312,{ bonus bVit,10; bonus bCastrate,-10; bonus bUseSPRate,-10; if(BaseClass==Job_Acolyte) { bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,30; bonus2 bSubRace,RC_Demon,30; } } 4185:4293:4312:4332,{ bonus bStr,3; bonus bMaxSP,80; bonus bBaseAtk,25; bonus3 bAutoSpell,"AL_CRUCIS",5,10; bonus2 bSkillAtk,"MO_EXTREMITYFIST",10; if(BaseJob==Job_Monk) { bonus bUseSPrate,-10; bonus bNoCastCancel,0; } } -4186:4206:4233:4281:4321,{ bonus bLuk,10; bonus2 bSPDrainValue,2,0; bonus2 bSkillAtk,42,20; if(BaseClass==Job_Merchant) { bonus2 bAddMonsterDropItem,617,5; bonus bMagicDamageReturn,20; } } +4186:4206:4233:4281:4321,{ bonus bLuk,10; bonus bSPDrainValue,2; bonus2 bSkillAtk,42,20; if(BaseClass==Job_Merchant) { bonus2 bAddMonsterDropItem,617,5; bonus bMagicDamageReturn,20; } } 4191:4208:4258:4309:4325:4327,{ bonus bMaxHP,500; bonus bDef,5; bonus bMdef,5; bonus2 bSkillAtk,14,10; bonus2 bSkillAtk,19,10; bonus2 bSkillAtk,20,10; if(BaseClass==Job_Mage) { bonus bMatkRate,3; bonus bCastrate,-15; } } 4193:4294,{ bonus bMaxHP,300; bonus bMaxSP,60; } 4208:4258:4325:4327:4382,{ bonus bInt,3; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",10; bonus2 bSkillAtk,"MG_THUNDERSTORM",10; if(BaseJob==Job_Sage) { bonus bMagicDamageReturn,20; bonus2 bAddMonsterDropItem,716,100; bonus2 bAddMonsterDropItem,715,100; bonus bCastrate,-20; } } diff --git a/db/pre-re/item_db.txt b/db/pre-re/item_db.txt index 12036deead..53b460e01a 100644 --- a/db/pre-re/item_db.txt +++ b/db/pre-re/item_db.txt @@ -155,7 +155,7 @@ 659,Heart_Of_Her,Her Heart,2,500,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1188; },{},{} 660,Prohibition_Red_Candle,Forbidden Red Candle,2,20000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1200; },{},{} 661,Sway_Apron,Soft Apron,2,20000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1275; },{},{} -662,Inspector_Certificate,Authoritative Badge,2,1450,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SpeedUp0,180000,0; },{},{} +662,Inspector_Certificate,Authoritative Badge,2,1450,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPEEDUP0,180000,25; },{},{} 663,Korea_Rice_Cake,Korean Rice Cake,0,1,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 10,0; },{},{} 664,Gift_Box_1,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_GiftBox_1),1; },{},{} 665,Gift_Box_2,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_GiftBox_2),1; },{},{} @@ -482,7 +482,7 @@ 1129,Flamberge,Flamberge,5,60000,,1500,150,,1,0,0x00004080,7,2,2,3,27,1,2,{},{},{} 1130,Nagan,Nagan,5,20,,500,120,,1,0,0x000654E2,7,2,2,4,40,1,2,{ skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{} 1131,Ice_Falchon,Ice Falchion,5,20,,600,100,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; bonus2 bAddEff2,Eff_Freeze,10; skill "MG_COLDBOLT",3; bonus3 bAutoSpell,"MG_COLDBOLT",3,100; },{},{} -1132,Edge,Edge,5,20,,700,115,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus2 bAddEff,Eff_Curse,30; bonus2 bWeaponComaClass,Class_Normal,10; },{},{} +1132,Edge,Edge,5,20,,700,115,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus2 bAddEff,Eff_Curse,30; bonus2 bComaClass,Class_Normal,10; },{},{} 1133,Fire_Brand,Fireblend,5,20,,500,100,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100; },{},{} 1134,Scissores_Sword,Caesar's Sword,5,20,,700,140,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus2 bAddRace,RC_Plant,25; bonus bIgnoreDefRace,RC_Plant; },{},{} 1135,Cutlas,Cutlus,5,20,,900,150,,1,0,0x000654E2,7,2,2,4,40,1,2,{ skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; },{},{} @@ -660,11 +660,11 @@ 1362,Two_Handed_Axe__,Two-Handed Axe,5,55000,,2500,185,,1,0,0x000444A2,7,2,34,3,30,1,7,{},{},{} 1363,Brood_Axe,Bloody Axe,5,20,,4000,170,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus bStr,10; bonus bSpeedRate,25; },{},{} 1364,Great_Axe,Great Axe,5,20,,1800,187,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,1500; },{},{} -1365,Sabbath,Sabbath,5,20,,2300,120,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Dark; bonus2 bWeaponComaRace,RC_Demon,50; bonus2 bCriticalAddRace,RC_Undead,50; },{},{} +1365,Sabbath,Sabbath,5,20,,2300,120,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Dark; bonus2 bComaRace,RC_Demon,50; bonus2 bCriticalAddRace,RC_Undead,50; },{},{} 1366,Right_Epsilon,Light Epsilon,5,20,,2300,180,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3; },{},{} -1367,Slaughter,Slaughter,5,20,,2500,120,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Earth; bonus bIgnoreDefRace,RC_Brute; bonus2 bWeaponComaRace,RC_Brute,40; },{},{} +1367,Slaughter,Slaughter,5,20,,2500,120,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Earth; bonus bIgnoreDefRace,RC_Brute; bonus2 bComaRace,RC_Brute,40; },{},{} 1368,Tomahawk,Tomahawk,5,20,,2500,165,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; },{},{} -1369,Guillotine,Guillotine,5,20,,3000,215,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus2 bWeaponComaRace,RC_DemiHuman,30; bonus2 bWeaponComaRace,RC_Player,30; bonus2 bSPGainRaceAttack,RC_DemiHuman,2; bonus2 bSPGainRaceAttack,RC_Player,2; bonus2 bSPGainRace,RC_DemiHuman,20; bonus2 bSPGainRace,RC_Player,20; },{},{} +1369,Guillotine,Guillotine,5,20,,3000,215,,1,0,0x000444A2,7,2,34,4,44,1,7,{ bonus2 bComaRace,RC_DemiHuman,30; bonus2 bComaRace,RC_Player,30; bonus2 bSPDrainValueRace,RC_DemiHuman,2; bonus2 bSPDrainValueRace,RC_Player,2; bonus2 bSPGainRace,RC_DemiHuman,20; bonus2 bSPGainRace,RC_Player,20; },{},{} 1370,Doom_Slayer,Doom Slayer,5,20,,6000,10,,1,0,0x000444A2,7,2,34,4,80,1,7,{ bonus bAspdRate,-40; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,340; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; } },{},{} 1371,Doom_Slayer_,Doom Slayer,5,20,,6000,10,,1,1,0x000444A2,7,2,34,4,80,1,7,{ bonus bAspdRate,-40; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,340; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; } },{},{} 1372,Right_Epsilon_C,Light Epsilon,5,1,,0,229,,1,0,0x000444A2,7,2,34,4,1,0,7,{ bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3; bonus bStr,10; bonus bSpeedRate,25; },{},{} @@ -786,7 +786,7 @@ 1523,Spike,Spike,5,20,,700,85,,1,0,0x00008110,7,2,2,4,40,1,8,{ bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67; },{},{} 1524,Golden_Mace,Golden Mace,5,20,,800,110,,1,1,0x00008110,7,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon,0; },{},{} 1525,Long_Mace,Long Mace,5,20,,800,135,,3,0,0x00008110,7,2,2,4,40,1,8,{ bonus bLongAtkDef,10; },{},{} -1526,Slash,Slash,5,20,,1000,145,,1,0,0x00008110,7,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,15; bonus2 bWeaponComaRace,RC_Undead,10; bonus2 bExpAddRace,RC_Undead,5; },{},{} +1526,Slash,Slash,5,20,,1000,145,,1,0,0x00008110,7,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,15; bonus2 bComaRace,RC_Undead,10; bonus2 bExpAddRace,RC_Undead,5; },{},{} 1527,Quadrille,Quadrille,5,20,,900,165,,1,0,0x00008110,7,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus2 bAddEle,Ele_Earth,10; },{},{} 1528,Grand_Cross,Grand Cross,5,20,,1500,140,,1,0,0x00008110,7,2,2,4,40,1,8,{ bonus bAtkEle,Ele_Holy; skill "PR_TURNUNDEAD",3; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3; },{},{} 1529,Iron_Driver,Iron Driver,5,20,,3000,155,,2,0,0x00008100,7,2,2,3,78,1,8,{},{},{} @@ -825,7 +825,7 @@ 1562,Bible_Of_Battlefield,Battlefield Textbook,5,20,,700,110,,1,1,0x00410100,7,2,2,4,80,0,15,{ bonus bInt,3; bonus3 bAutoSpell,"AL_BLESSING",3+(getskilllv("AL_BLESSING")>3)*(getskilllv("AL_BLESSING")-3),20; },{},{} 1563,Diary_Of_Great_Sage_C,Sage's Diary,5,1,,0,135,,1,2,0x00410100,7,2,2,3,1,0,15,{ bonus bMatkRate,20; bonus bAspdRate,5; },{},{} 1564,Encyclopedia,Encyclopedia,5,20,,2000,110,,1,2,0x00410100,7,2,2,3,70,1,15,{ bonus bMatkRate,15; bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); },{},{} -1565,Death_Note,Ledger of Death,5,20,,1000,137,,1,2,0x00410100,7,2,2,4,85,1,15,{ bonus bMatkRate,15; bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bWeaponComaRace,RC_DemiHuman,10; bonus2 bWeaponComaRace,RC_Player,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; },{},{} +1565,Death_Note,Ledger of Death,5,20,,1000,137,,1,2,0x00410100,7,2,2,4,85,1,15,{ bonus bMatkRate,15; bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; },{},{} 1566,Diary_Of_Great_Basil,Diary Of Great Basil,5,20,,0,120,,1,0,0x00410100,7,2,2,1,0,0,15,{ bonus2 bAddClass,Class_All,50; },{},{} 1567,Hardback_C,Refined Hardcover Book,5,1,,0,168,,1,0,0x00410100,7,2,2,4,0,0,15,{ bonus bStr,5; bonus bDex,2; bonus bMatkRate,20; },{},{} 1568,Book_Of_Billows_,Book of Billows,5,35000,,750,90,,1,3,0x00410100,7,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Water; },{},{} @@ -839,7 +839,7 @@ 1576,Krieger_Book1,Glorious Tablet,5,20,,0,90,,1,0,0x00410100,7,2,2,4,80,1,15,{ bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon,0; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(getrefine()>8) autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; },{},{} 1577,Krieger_Book2,Glorious Apocalypse,5,20,,0,90,,1,0,0x00410100,7,2,2,4,80,1,15,{ bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon,0; if(getrefine()>5) bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; if(getrefine()>8) { bonus bMatkRate,5; bonus bCastrate,-5; bonus bDelayRate,-5; } },{},{} 1578,Book_Of_Prayer,Book Of Prayer,5,20,,0,140,,1,0,0x00410100,7,2,2,3,0,0,15,{ bonus bVit,2; bonus bMdef,2; bonus bMaxSPrate,10; },{},{} -1579,Death_Note_M,Book of the Dead,5,20,,1000,137,,1,2,0x00410100,7,2,2,4,85,1,15,{ bonus bMatkRate,15; bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bWeaponComaRace,RC_DemiHuman,10; bonus2 bWeaponComaRace,RC_Player,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; },{},{} +1579,Death_Note_M,Book of the Dead,5,20,,1000,137,,1,2,0x00410100,7,2,2,4,85,1,15,{ bonus bMatkRate,15; bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; },{},{} 1580,Encyclopedia_C,Giant Encyclopedia,5,0,,0,145,,1,0,0x00410100,7,2,2,3,0,0,15,{ bonus bMatkRate,15; bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); bonus2 bAddSize,Size_All,40; },{},{} 1581,F_Diary_Of_Great_Sage_C,Diary Of Great Sage,5,1,,0,135,,1,2,0x00410100,7,2,2,3,1,0,15,{},{},{} 1582,E_Diary_Of_Great_Sage_C,Diary Of Great Sage,5,1,,0,135,,1,2,0x00410100,7,2,2,3,1,0,15,{},{},{} @@ -1417,7 +1417,7 @@ 2551,Rider_Insignia_M,Crest of the Rider,4,20,,500,,4,,1,0xFFFFFFFE,2,2,4,,55,1,0,{ bonus bAgi,2; },{},{} 2552,Mithril_Magic_Cape_M,Mithril Magic Manteau,4,20,,400,,3,,1,0x00098B1C,2,2,4,,70,1,0,{ bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; },{},{} 2553,Dragon_Manteau,Dragon Manteau,4,20,,1000,,5,,1,0xFFFFFFFE,2,2,4,,0,1,0,{ bonus bAgi,1; bonus bMdef,5; },{},{} -2554,Piece_Of_Angent_Skin,Nydhorgg's Shadow Garb,4,20,,400,,5,,1,0xFFFFFFFE,2,2,4,,90,1,0,{ bonus2 bSubEle,Ele_Neutral,7; bonus2 bSubEle,Ele_Water,7; bonus2 bSubEle,Ele_Earth,7; bonus2 bSubEle,Ele_Fire,7; bonus2 bSubEle,Ele_Wind,7; bonus2 bSubEle,Ele_Poison,7; bonus2 bSubEle,Ele_Holy,7; bonus2 bSubEle,Ele_Dark,7; bonus2 bSubEle,Ele_Ghost,7; bonus2 bSubEle,Ele_Undead,7; bonus bMaxSP,(BaseLevel/3)+(getrefine()*10); bonus3 bSPDrainRate,10,1,0; bonus bMdef,3; },{},{} +2554,Piece_Of_Angent_Skin,Nydhorgg's Shadow Garb,4,20,,400,,5,,1,0xFFFFFFFE,2,2,4,,90,1,0,{ bonus2 bSubEle,Ele_Neutral,7; bonus2 bSubEle,Ele_Water,7; bonus2 bSubEle,Ele_Earth,7; bonus2 bSubEle,Ele_Fire,7; bonus2 bSubEle,Ele_Wind,7; bonus2 bSubEle,Ele_Poison,7; bonus2 bSubEle,Ele_Holy,7; bonus2 bSubEle,Ele_Dark,7; bonus2 bSubEle,Ele_Ghost,7; bonus2 bSubEle,Ele_Undead,7; bonus bMaxSP,(BaseLevel/3)+(getrefine()*10); bonus2 bSPDrainRate,10,1; bonus bMdef,3; },{},{} // Accessories //=================================================================== 2601,Ring,Ring,4,30000,,100,,0,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus bStr,2; },{},{} @@ -1740,7 +1740,7 @@ 4112,Marduk_Card,Marduk Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Silence,10000; },{},{} 4113,Marionette_Card,Marionette Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Ghost,30; bonus bFlee,5; },{},{} 4114,Argiope_Card,Argiope Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Poison; bonus bDef,1; },{},{} -4115,Hunter_Fly_Card,Hunter Fly Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bHpDrainRate,30,15; },{},{} +4115,Hunter_Fly_Card,Hunter Fly Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bHPDrainRate,30,15; },{},{} 4116,Isis_Card,Isis Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Dark,30; bonus bFlee,5; },{},{} 4117,Side_Winder_Card,Sidewinder Card,6,20,,10,,,,,,,,2,,,,,{ skill "TF_DOUBLE",1; bonus bDoubleRate,5; },{},{} 4118,Petit_Card,Earth Petite Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Dragon,20; },{},{} @@ -1759,7 +1759,7 @@ 4131,Moonlight_Flower_Card,Moonlight Flower Card,6,20,,10,,,,,,,,64,,,,,{ bonus bSpeedRate,25; },{},{} 4132,Mistress_Card,Mistress Card,6,20,,10,,,,,,,,769,,,,,{ bonus bNoGemStone,0; bonus bUseSPrate,25; },{},{} 4133,Daydric_Card,Raydric Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,20; },{},{} -4134,Dracula_Card,Dracula Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSpDrainRate,100,5; },{},{} +4134,Dracula_Card,Dracula Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPDrainRate,100,5; },{},{} 4135,Orc_Load_Card,Orc Lord Card,6,20,,10,,,,,,,,16,,,,,{ bonus bShortWeaponDamageReturn,30; },{},{} 4136,Khalitzburg_Card,Khalitzburg Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Demon,30; },{},{} 4137,Drake_Card,Drake Card,6,20,,10,,,,,,,,2,,,,,{ bonus bNoSizeFix,0; },{},{} @@ -1797,7 +1797,7 @@ 4169,Dark_Illusion_Card,Dark Illusion Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxHPrate,-10; bonus bMaxSPrate,-10; bonus bCastrate,-10; },{},{} 4170,Dark_Frame_Card,Dark Frame Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Stone,600; },{},{} 4171,Dark_Priest_Card,Dark Priest Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPVanishRate,50,10; if(BaseJob==Job_Sage) bonus bSPDrainValue,1; },{},{} -4172,The_Paper_Card,The Paper Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,20; bonus2 bSPDrainValue,-1,0; },{},{} +4172,The_Paper_Card,The Paper Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,20; bonus bSPDrainValue,-1; },{},{} 4173,Demon_Pungus_Card,Demon Pungus Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Sleep,600; },{},{} 4174,Deviling_Card,Deviling Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,50; bonus2 bSubEle,Ele_Water,-50; bonus2 bSubEle,Ele_Earth,-50; bonus2 bSubEle,Ele_Fire,-50; bonus2 bSubEle,Ele_Wind,-50; bonus2 bSubEle,Ele_Poison,-50; bonus2 bSubEle,Ele_Holy,-50; bonus2 bSubEle,Ele_Dark,-50; bonus2 bSubEle,Ele_Ghost,-50; bonus2 bSubEle,Ele_Undead,-50; },{},{} 4175,Poison_Toad_Card,Poisonous Toad Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"TF_POISON",1,20; bonus2 bAddSkillBlow,52,5; },{},{} @@ -1901,12 +1901,12 @@ 4273,Shellfish_Card,Shell Fish Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus2 bAddDamageClass,1073,30; },{},{} 4274,Zombie_Master_Card,Zombie Master Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Undead,5; },{},{ heal 0,-5; } 4275,Zombie_Prisoner_Card,Zombie Prisoner Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Undead,-20; bonus2 bExpAddRace,RC_Undead,10; },{},{} -4276,Lord_Of_Death_Card,Lord of The Dead Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAddEff,Eff_Stun,500,ATF_SHORT; bonus3 bAddEff,Eff_Curse,500,ATF_SHORT; bonus3 bAddEff,Eff_Silence,500,ATF_SHORT; bonus3 bAddEff,Eff_Poison,500,ATF_SHORT; bonus3 bAddEff,Eff_Bleeding,500,ATF_SHORT; bonus2 bWeaponComaClass,Class_Normal,1; },{},{} +4276,Lord_Of_Death_Card,Lord of The Dead Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAddEff,Eff_Stun,500,ATF_SHORT; bonus3 bAddEff,Eff_Curse,500,ATF_SHORT; bonus3 bAddEff,Eff_Silence,500,ATF_SHORT; bonus3 bAddEff,Eff_Poison,500,ATF_SHORT; bonus3 bAddEff,Eff_Bleeding,500,ATF_SHORT; bonus2 bComaClass,Class_Normal,1; },{},{} 4277,Zherlthsh_Card,Zealotus Card,6,20,,10,,,,,,,,32,,,,,{ bonus bLuk,2; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; bonus2 bSkillAtk,"DC_THROWARROW",10; },{},{} 4278,Gibbet_Card,Gibbet Card,6,20,,10,,,,,,,,769,,,,,{ if(getrefine()<6) bonus bMdef,5; },{},{} 4279,Deleter_Card,Earth Deleter Card,6,20,,10,,,,,,,,16,,,,,{ bonus bSPrecovRate,-100; bonus bSPGainValue,10; },{},{ heal 0,-100; } 4280,Geographer_Card,Geographer Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"AL_BLESSING",2+8*(getskilllv("AL_BLESSING")==10),30; },{},{} -4281,Zipper_Bear_Card,Zipper Bear Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,30; bonus2 bSPDrainValue,-1,0; if(BaseClass==Job_Merchant) bonus bUnbreakableWeapon,0; },{},{} +4281,Zipper_Bear_Card,Zipper Bear Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,30; bonus bSPDrainValue,-1; if(BaseClass==Job_Merchant) bonus bUnbreakableWeapon,0; },{},{} 4282,Tengu_Card,Tengu Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItemGroup,IG_Recovery,600; },{},{} 4283,Greatest_General_Card,Greatest General Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"MO_CALLSPIRITS",5,2+18*(BaseClass==Job_Acolyte); },{},{} 4284,Chepet_Card,Chepet Card,6,20,,10,,,,,,,,2,,,,,{ bonus4 bAutoSpell,"AL_HEAL",5,50,1; },{},{} @@ -1992,7 +1992,7 @@ 4364,Magaleta_Card,Margaretha Sorin Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,1; bonus5 bAutoSpellWhenHit,"PR_LEXDIVINA",5,150,BF_MAGIC,1; },{},{} 4365,B_Katrinn_Card,High Wizard Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus bCastrate,100; bonus bSPrecovRate,-100; },{},{ heal 0,-2000; } 4366,Katrinn_Card,Kathryne Keyron Card,6,20,,10,,,,,,,,769,,,,,{ bonus bCastrate,getrefine()*-1; if(getrefine()>=9) { bonus bMatkRate,2; } },{},{} -4367,B_Shecil_Card,Sniper Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bHpDrainRate,50,20; bonus bHPrecovRate,-10; },{},{} +4367,B_Shecil_Card,Sniper Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bHPDrainRate,50,20; bonus bHPrecovRate,-10; },{},{} 4368,Shecil_Card,Cecil Damon Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,5; bonus bHit,-30; },{},{} 4369,Venatu_Card,Venatu Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLuk,readparam(bAgi)/18; },{},{} 4370,Dimik_Card,Dimik Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,getrefine()-5; },{},{} @@ -4564,7 +4564,7 @@ 12013,Shadow_Arrow_Container,Shadow Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1767,500; },{},{} 12014,Imma_Arrow_Container,Immaterial Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1757,500; },{},{} 12015,Rusty_Arrow_Container,Rusty Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1762,500; },{},{} -12016,Speed_Up_Potion,Speed Potion,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SpeedUp1,5000,0; },{},{} +12016,Speed_Up_Potion,Speed Potion,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPEEDUP1,5000,50; },{},{} 12017,Slow_Down_Potion,Slow Potion,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SlowDown,5000,0; },{},{} 12018,Fire_Cracker,Firecracker,2,2,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} 12019,Holy_Egg,Holy Egg,11,2,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ALL_RESURRECTION",2; },{},{} @@ -4576,7 +4576,7 @@ 12025,Egg_Boy,Dano Festival Egg,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_EggBoy),1; },{},{} 12026,Egg_Girl,Dano Festival Egg,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_EggGirl),1; },{},{} 12027,Giggling_Box,Giggling Box,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 9,0; sc_start SC_Curse,30000,0,3000,0; },{},{} -12028,Box_Of_Thunder,Box of Thunder,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SpeedUp0,20000,0; },{},{} +12028,Box_Of_Thunder,Box of Thunder,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPEEDUP0,20000,25; },{},{} 12029,Gloomy_Box,Box of Gloom,11,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "AC_CONCENTRATION",1; },{},{} 12030,Box_Of_Grudge,Box of Resentment,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ATKPOTION,60000,20; },{},{} 12031,Sleepy_Box,Box of Drowsiness,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_MATKPOTION,60000,20; },{},{} @@ -4772,13 +4772,13 @@ 12220,Adrenaline_Scroll,LV5 Adrenaline Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ set .@type,getiteminfo(getequipid(EQI_HAND_R),11); if (.@type==6||.@type==7||.@type==8) { skilleffect "BS_ADRENALINE",0; sc_start SC_ADRENALINE,150000,5; } },{},{} 12221,Megaphone_,Megaphone,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ input @megaphone$; announce strcharinfo(0) + ": " + @megaphone$,bc_all,0xFF0000; end; },{},{} 12225,Sweet_Candy_Striper,Sweet Candy Cane,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1245; },{},{} -12226,Examination1,Examination 1,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SpeedUp0,5400000,0; percentheal 100,100; sc_start SC_STRFOOD,5400000,10; sc_start SC_DEXFOOD,5400000,5; sc_start SC_ATKPOTION,5400000,22; sc_start SC_MATKFOOD,5400000,15; },{},{} -12227,Examination2,Examination 2,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SpeedUp0,5400000,0; percentheal 100,100; sc_start SC_INTFOOD,5400000,8; sc_start SC_VITFOOD,5400000,7; sc_start SC_LUKFOOD,5400000,7; sc_start SC_ATKPOTION,5400000,10; },{},{} -12228,Examination3,Examination 3,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SpeedUp0,5400000,0; percentheal 100,100; sc_start SC_AGIFOOD,5400000,15; sc_start SC_ATKPOTION,5400000,52; sc_start SC_MATKFOOD,5400000,10; },{},{} -12229,Examination4,Examination 4,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SpeedUp0,5400000,0; percentheal 100,100; sc_start SC_STRFOOD,5400000,3; sc_start SC_AGIFOOD,5400000,5; sc_start SC_VITFOOD,5400000,10; sc_start SC_MATKFOOD,5400000,52; },{},{} -12230,Examination5,Examination 5,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SpeedUp0,5400000,0; percentheal 100,100; sc_start SC_INTFOOD,5400000,3; sc_start SC_DEXFOOD,5400000,12; sc_start SC_ATKPOTION,5400000,20; sc_start SC_MATKFOOD,5400000,20; },{},{} -12231,Examination6,Examination 6,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 100,100; sc_start SC_SpeedUp0,5400000,0; sc_start SC_STRFOOD,5400000,6; sc_start SC_DEXFOOD,5400000,6; sc_start SC_AGIFOOD,5400000,6; sc_start SC_INTFOOD,5400000,6; sc_start SC_VITFOOD,5400000,6; sc_start SC_LUKFOOD,5400000,6; sc_start SC_ATKPOTION,5400000,24; sc_start SC_MATKFOOD,5400000,24; },{},{} -12232,Gingerbread,Ginger Bread,2,20,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ASPDPOTION1,900000,0; sc_start SC_SpeedUp0,900000,0; },{},{} +12226,Examination1,Examination 1,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPEEDUP0,5400000,25; percentheal 100,100; sc_start SC_STRFOOD,5400000,10; sc_start SC_DEXFOOD,5400000,5; sc_start SC_ATKPOTION,5400000,22; sc_start SC_MATKFOOD,5400000,15; },{},{} +12227,Examination2,Examination 2,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPEEDUP0,5400000,25; percentheal 100,100; sc_start SC_INTFOOD,5400000,8; sc_start SC_VITFOOD,5400000,7; sc_start SC_LUKFOOD,5400000,7; sc_start SC_ATKPOTION,5400000,10; },{},{} +12228,Examination3,Examination 3,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPEEDUP0,5400000,25; percentheal 100,100; sc_start SC_AGIFOOD,5400000,15; sc_start SC_ATKPOTION,5400000,52; sc_start SC_MATKFOOD,5400000,10; },{},{} +12229,Examination4,Examination 4,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPEEDUP0,5400000,25; percentheal 100,100; sc_start SC_STRFOOD,5400000,3; sc_start SC_AGIFOOD,5400000,5; sc_start SC_VITFOOD,5400000,10; sc_start SC_MATKFOOD,5400000,52; },{},{} +12230,Examination5,Examination 5,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPEEDUP0,5400000,25; percentheal 100,100; sc_start SC_INTFOOD,5400000,3; sc_start SC_DEXFOOD,5400000,12; sc_start SC_ATKPOTION,5400000,20; sc_start SC_MATKFOOD,5400000,20; },{},{} +12231,Examination6,Examination 6,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 100,100; sc_start SC_SPEEDUP0,5400000,25; sc_start SC_STRFOOD,5400000,6; sc_start SC_DEXFOOD,5400000,6; sc_start SC_AGIFOOD,5400000,6; sc_start SC_INTFOOD,5400000,6; sc_start SC_VITFOOD,5400000,6; sc_start SC_LUKFOOD,5400000,6; sc_start SC_ATKPOTION,5400000,24; sc_start SC_MATKFOOD,5400000,24; },{},{} +12232,Gingerbread,Ginger Bread,2,20,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ASPDPOTION1,900000,0; sc_start SC_SPEEDUP0,900000,25; },{},{} 12233,Kvass,Kvass,0,20,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 100,100; },{},{} 12234,Cacao99,Fierce Cacao 99%,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 25,0; },{},{} 12235,Strawberry_Choco,Chocolate Strawberry,2,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,5; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10; },{},{} @@ -4808,7 +4808,7 @@ 12259,Miracle_Medicine,Miracle Tonic,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ getexp 3000000,1500000; },{},{} 12260,Cool_Summer_Outfit,Cool Summer Outfit,2,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_Summer,600000,0; },{},{} 12261,Secret_Medicine,Leap of Fantasy,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ getexp 2000000,1000000; },{},{} -12262,Inspector_Certificate_,Authoritative Badge,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SpeedUp0,180000,0; },{},{} +12262,Inspector_Certificate_,Authoritative Badge,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPEEDUP0,540000,25; },{},{} 12263,Comp_Battle_Manual,Field Manual,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXPBOOST,1800000,50; },{},{} 12264,Comp_Bubble_Gum,Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ITEMBOOST,1800000,200; },{},{} 12265,Comp_Insurance,Life Insurrance,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LIFEINSURANCE,1800000,0; },{},{} @@ -5136,7 +5136,7 @@ 12707,Lucky_Cookie02,Lucky Cookie,11,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "PR_MAGNIFICAT",1; },{},{} 12708,Lucky_Cookie03,Lucky Cookie,11,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "PR_IMPOSITIO",3; },{},{} 12709,Guyak_Candy,Guyak Candy,0,0,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 30,30; },{},{} -12710,Guyak_Pudding,Guyak Pudding,2,0,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SpeedUp1,300000,0; },{},{} +12710,Guyak_Pudding,Guyak Pudding,2,0,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPEEDUP1,300000,50; },{},{} 12711,Pretzel,Pretzel,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,90),0; },{},{} 12712,Green_Beer,Green Beer,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,50; },{},{} 12713,Monster_Extract,Monster Extract,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} @@ -5438,18 +5438,18 @@ 13269,Boost500_To_Throw,Throwing Boost 500,10,100,,10,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_BOOST500,500000,10; },{},{} 13270,Full_SwingK_To_Throw,Throwing Full Swing K,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_FULL_SWING_K,500000,50; },{},{} 13271,Mana_Plus_To_Throw,Throwing Mana Plus,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_MANA_PLUS,500000,50; },{},{} -13272,Cure_Free_To_Throw,Throwing Cure Free,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_end SC_Bleeding; sc_end SC_Curse; sc_end SC_Silence; itemheal rand(1000,1200),0; },{},{} +13272,Cure_Free_To_Throw,Throwing Cure Free,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_end SC_BLEEDING; sc_end SC_CURSE; sc_end SC_SILENCE; sc_end SC_POISON; sc_end SC_ORCISH; sc_end SC_CHANGEUNDEAD; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_DPOISON; itemheal 500,0; },{},{} 13273,Stamina_Up_M_To_Throw,Throwing Muramura M,10,100,,10,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_MUSTLE_M,500000,5; },{},{} 13274,Digestive_F_To_Throw,Throwing Falmons F,10,100,,10,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_LIFE_FORCE_F,500000,5; },{},{} -13275,HP_Inc_PotS_To_Throw,Throwing Increase HP Potion (Small),10,100,,20,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_INCMHPRATE,500000,1; percentheal 1,0; },{},{}//HP and SP pots need a recheck later to correct max increases. -13276,HP_Inc_PotM_To_Throw,Throwing Increase HP Potion (Medium),10,100,,40,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_INCMHPRATE,500000,2; percentheal 2,0; },{},{} -13277,HP_Inc_PotL_To_Throw,Throwing Increase HP Potion (Large),10,100,,80,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_INCMHPRATE,500000,5; percentheal 5,0; },{},{} -13278,SP_Inc_PotS_To_Throw,Throwing Increase SP Potion (Small),10,100,,20,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_INCMSPRATE,500000,2; percentheal 0,2; },{},{} -13279,SP_Inc_PotM_To_Throw,Throwing Increase SP Potion (Medium),10,100,,40,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_INCMSPRATE,500000,4; percentheal 0,4; },{},{} -13280,SP_Inc_PotL_To_Throw,Throwing Increase SP Potion (Large),10,100,,80,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_INCMSPRATE,500000,8; percentheal 0,8; },{},{} -13281,En_White_PotZ_To_Throw,Throwing Concentrated White Potion Z,10,100,,70,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; itemheal rand(1500,1600),0; },{},{}// Check if heal amount is correct. -13282,Vitata500_To_Throw,Throwing Vitata 500,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_VITATA_500,500000,20; },{},{} -13283,En_Cel_Juice_To_Throw,Throwing Ceromain Soup,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10; itemheal rand(1500,1600),0; },{},{}// Check if heal amount is correct. +13275,HP_Inc_PotS_To_Throw,Throwing Increase HP Potion (Small),10,100,,20,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_INCMHP,500000,(500+(BaseLevel*10/3)); percentheal 1,0; },{},{} +13276,HP_Inc_PotM_To_Throw,Throwing Increase HP Potion (Medium),10,100,,40,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_INCMHP,500000,(1500+(BaseLevel*10/3)); percentheal 2,0; },{},{} +13277,HP_Inc_PotL_To_Throw,Throwing Increase HP Potion (Large),10,100,,80,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_INCMHP,500000,(2500+(BaseLevel*10/3)); percentheal 5,0; },{},{} +13278,SP_Inc_PotS_To_Throw,Throwing Increase SP Potion (Small),10,100,,20,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_INCMSP,500000,((BaseLevel/10)-5); percentheal 0,2; },{},{} +13279,SP_Inc_PotM_To_Throw,Throwing Increase SP Potion (Medium),10,100,,40,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_INCMSP,500000,((BaseLevel/10)); percentheal 0,4; },{},{} +13280,SP_Inc_PotL_To_Throw,Throwing Increase SP Potion (Large),10,100,,80,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_INCMSP,500000,((BaseLevel/10)+5); percentheal 0,8; },{},{} +13281,En_White_PotZ_To_Throw,Throwing Concentrated White Potion Z,10,100,,70,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; itemheal 1000,0; },{},{} +13282,Vitata500_To_Throw,Throwing Vitata 500,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200; },{},{} +13283,En_Cel_Juice_To_Throw,Throwing Ceromain Soup,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10; },{},{} 13284,Savage_BBQ_To_Throw,Throwing Savage Full Roast,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_SAVAGE_STEAK,300000,20; },{},{} 13285,Wug_Cocktail_To_Throw,Throwing Cocktail Warg Blood,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_COCKTAIL_WARG_BLOOD,300000,20; },{},{} 13286,M_Brisket_To_Throw,Throwing Minor Stew,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_MINOR_BBQ,300000,20; },{},{} @@ -5472,7 +5472,7 @@ 13400,Cutlas_,Cutlus,5,20,,900,150,,1,1,0x000654E2,7,2,2,4,40,1,2,{ skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; },{},{} 13401,Excalibur_C,Excalibur,5,1,,0,199,,1,0,0x000654E2,7,2,2,4,1,0,2,{ bonus bInt,10; bonus bLuk,10; bonus bAtkEle,Ele_Holy; },{},{} 13402,Cutlas_C,Cutlus,5,2,,0,185,,1,0,0x000654E2,7,2,2,4,0,0,2,{ skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; },{},{} -13403,Solar_Sword_C,Solar Sword,5,2,,0,120,,1,0,0x000654E2,7,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Fire; bonus2 bHPDrainRate,1000,1; bonus2 bSPLossRate,15,10000; },{},{} +13403,Solar_Sword_C,Solar Sword,5,2,,0,120,,1,0,0x000654E2,7,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Fire; bonus bHPDrainRate,1; bonus2 bSPLossRate,15,10000; },{},{} 13404,Platinum_Shotel,Platinum Shotel,5,20,,1500,130,,1,1,0x000654E2,7,2,2,4,55,1,2,{ bonus bCritical,50; },{},{} 13405,Curved_Sword,Curved Sword,5,20,,800,125,,1,2,0x000654E2,7,2,2,4,55,1,2,{ bonus bAspdRate,10; bonus2 bAddEff,Eff_Curse,300; },{},{} 13406,Edger,Edger,5,20,,0,120,,1,0,0x000654E2,7,2,2,1,0,0,2,{ bonus2 bAddClass,Class_All,50; },{},{} @@ -6405,7 +6405,7 @@ 14588,Pty_Blessing_Scroll,Party Blessing 10 Scroll,11,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "CASH_BLESSING",10; },{},{} 14589,Pty_Inc_Agi_Scroll,Party Increase Agi 10 Scroll,11,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "CASH_INCAGI",10; },{},{} 14590,Pty_Assumptio_Scroll,Party Assumptio 5 Scroll,11,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "CASH_ASSUMPTIO",5; },{},{} -14591,Siege_Teleport_Scroll,WoE Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashSeigeTele"; },{},{} +14591,Siege_Teleport_Scroll,WoE Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashSiegeTele"; },{},{} 14592,Job_Manual50,JOB Battle Manual,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_JEXPBOOST,1800000,50; },{},{} 14593,Magic_Power_Scroll,Mystical Amplification Scroll,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "HW_MAGICPOWER",10; },{},{} 14594,Quagmire_Scroll,Quagmire Scroll,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "WZ_QUAGMIRE",5; },{},{} diff --git a/db/pre-re/item_delay.txt b/db/pre-re/item_delay.txt index 31bc494455..d34bd34156 100644 --- a/db/pre-re/item_delay.txt +++ b/db/pre-re/item_delay.txt @@ -1,31 +1,56 @@ // Item Delay Database // // Structure of Database: -// Item ID,Delay in Milliseconds +// ,{,} // -// NOTE: -// There is a max concurrent number of entries set in src/map/itemdb.h as MAX_ITEMDELAYS. +// +// ID of item that will has reuse delay. +// +// Re-use delay in milliseconds. +// +// SC (status change) group for the item. +// Example for SC_REUSE_LIMIT_MTF +// 12658,10000,620 // Transformation Scroll(Deviruchi) +// 12659,10000,620 // Transformation Scroll(Raydric) +// -> 12658 has reuse delay for 10 seconds, and also, +// 12659 cannot be used when this delay is active. +// Since this is optional, default is -1 will ignores the +// delay group and the delay will be stored in character's +// data that has limit set in src/map/itemdb.h as MAX_ITEMDELAYS. +// SC_REUSE_LIMIT_A 609 +14538,300000,608 //Glass_Of_Illusion + +// SC_REUSE_LIMIT_B 610 +14586,180000,609 //Spark_Candy + +// SC_REUSE_LIMIT_C 611 +12208,60000,610 //Battle_Manual + +// SC_REUSE_LIMIT_D 612 +12210,60000,611 //Bubble_Gum + +// SC_REUSE_LIMIT_E 613 +11522,1000,612 //Red_Raffle_Sap +11523,2000,612 //Yellow_Raffle_Sap +11524,3000,612 //White_Raffle_Sap + +// SC_REUSE_LIMIT_F 614 +607,5000,613 //Yggdrasil_Berry + +// SC_REUSE_LIMIT_G 615 +608,3000,614 //Yggdrasil_Seed + +// SC_REUSE_LIMIT_H 616 +11525,5000,615 //Mora_Hip_Tea + +// Misc //12202,60000 //Str_Dish10_ //12203,60000 //Agi_Dish10_ //12204,60000 //Int_Dish10_ //12205,60000 //Dex_Dish10_ //12206,60000 //Luk_Dish10_ //12207,60000 //Vit_Dish10_ -12208,60000 //Battle_Manual -12210,60000 //Bubble_Gum -14538,300000 //Glass_Of_Illusion -14586,180000 //Spark_Candy -607,5000 //Yggdrasil_Berry -608,3000 //Yggdrasil_Seed - -// Bifrost Items -11522,1000 //Red_Raffle_Sap -11523,2000 //Yellow_Raffle_Sap -11524,3000 //White_Raffle_Sap -11525,5000 //Mora_Hip_Tea - -// FIX ME! Delays need confirmation. -12968,300000 //Emergency_Scroll1 -12969,300000 //Emergency_Scroll2 -12970,300000 //Emergency_Scroll3 +12968,300000 //Emergency_Scroll1 //! CHECKME: Need confirmation! +12969,300000 //Emergency_Scroll2 //! CHECKME: Need confirmation! +12970,300000 //Emergency_Scroll3 //! CHECKME: Need confirmation! diff --git a/db/pre-re/item_flag.txt b/db/pre-re/item_flag.txt index 0fe7309abf..4639dc22f0 100644 --- a/db/pre-re/item_flag.txt +++ b/db/pre-re/item_flag.txt @@ -2,10 +2,11 @@ // , // // : -// 1 - As Dead Branch item (will be logged at `branchlog` table and cannot be used at 'nobranch' mapflag) -// 2 - As item group container, check player's inventory and weight before consumed -// 4 - GUID item, cannot be stacked even same or stackable item -// 8 - Item will be bound item when equipped +// 1 - As Dead Branch item (will be logged at `branchlog` table and cannot be used at 'nobranch' mapflag) +// 2 - As item group container, check player's inventory and weight before consumed +// 4 - GUID Item: When this item is obtained, will generates GUID that cannot be stacked even same or stackable item +// 8 - Item will be bound item when equipped +// 16 - Special Broadcast: When item dropped by monster and player loot it, will be broadcasted! // NOTE: For removing flag by import file, use "-" to remove the flag. Example, 604,-1 will removes flag 1 from Branch_Of_Dead_Tree // Logged as Dead Branch item diff --git a/db/pre-re/mob_boss.txt b/db/pre-re/mob_boss.txt index c48713580d..e71bb421cb 100644 --- a/db/pre-re/mob_boss.txt +++ b/db/pre-re/mob_boss.txt @@ -1,50 +1,50 @@ // Bloody Branch Summonable Monsters Database // // Structure of Database: -// MobID,DummyName,Rate +// MobRandomGroupID,MobID,DummyName,Rate -0,Baphomet,1039 -1038,Osiris,500000 -1039,Baphomet,500000 -1046,Doppelganger,500000 -1059,Mistress,500000 -1086,Golden Thief Bug,500000 -1087,Orc Hero,500000 -1096,Angeling,500000 -1112,Drake,500000 -1115,Eddga,500000 -1120,Ghostring,500000 -1147,Maya,500000 -1150,Moonlight Flower,500000 -1157,Pharaoh,500000 -1159,Phreeoni,500000 -1190,Orc Lord,500000 -1251,Stormy Knight,500000 -1252,Hatii,500000 -1272,Dark Lord,500000 -1312,Turtle General,500000 -1373,Lord of the Dead,500000 -1388,Arc Angeling,500000 -1389,Dracula,500000 -1418,Evil Snake Lord,500000 -1492,Samurai Specter,500000 -1511,Amon Ra,500000 -1582,Deviling,500000 -1583,Tao Gunka,500000 -1623,RSX-0806,500000 -1630,White Lady,500000 -1658,Egnigem Cenia,500000 -1685,Vesper,500000 -1688,Lady Tanee,500000 -1708,Thanatos Phantom,500000 -1719,Detardeurus,500000 -1734,Kiel D-01,500000 -1751,Valkyrie Randgris,500000 -1768,Gloom Under Night,500000 -1779,Ktullanux,500000 -1785,Atroce,1000000 -1832,Ifrit,500000 -1871,Falling Bishop,500000 -1873,Beelzebub,500000 -1885,Gopinich,500000 -2022,Nidhoggur's Shadow,500000 +MOBG_Bloody_Dead_Branch,0,Baphomet,1039 +MOBG_Bloody_Dead_Branch,1038,Osiris,500000 +MOBG_Bloody_Dead_Branch,1039,Baphomet,500000 +MOBG_Bloody_Dead_Branch,1046,Doppelganger,500000 +MOBG_Bloody_Dead_Branch,1059,Mistress,500000 +MOBG_Bloody_Dead_Branch,1086,Golden Thief Bug,500000 +MOBG_Bloody_Dead_Branch,1087,Orc Hero,500000 +MOBG_Bloody_Dead_Branch,1096,Angeling,500000 +MOBG_Bloody_Dead_Branch,1112,Drake,500000 +MOBG_Bloody_Dead_Branch,1115,Eddga,500000 +MOBG_Bloody_Dead_Branch,1120,Ghostring,500000 +MOBG_Bloody_Dead_Branch,1147,Maya,500000 +MOBG_Bloody_Dead_Branch,1150,Moonlight Flower,500000 +MOBG_Bloody_Dead_Branch,1157,Pharaoh,500000 +MOBG_Bloody_Dead_Branch,1159,Phreeoni,500000 +MOBG_Bloody_Dead_Branch,1190,Orc Lord,500000 +MOBG_Bloody_Dead_Branch,1251,Stormy Knight,500000 +MOBG_Bloody_Dead_Branch,1252,Hatii,500000 +MOBG_Bloody_Dead_Branch,1272,Dark Lord,500000 +MOBG_Bloody_Dead_Branch,1312,Turtle General,500000 +MOBG_Bloody_Dead_Branch,1373,Lord of the Dead,500000 +MOBG_Bloody_Dead_Branch,1388,Arc Angeling,500000 +MOBG_Bloody_Dead_Branch,1389,Dracula,500000 +MOBG_Bloody_Dead_Branch,1418,Evil Snake Lord,500000 +MOBG_Bloody_Dead_Branch,1492,Samurai Specter,500000 +MOBG_Bloody_Dead_Branch,1511,Amon Ra,500000 +MOBG_Bloody_Dead_Branch,1582,Deviling,500000 +MOBG_Bloody_Dead_Branch,1583,Tao Gunka,500000 +MOBG_Bloody_Dead_Branch,1623,RSX-0806,500000 +MOBG_Bloody_Dead_Branch,1630,White Lady,500000 +MOBG_Bloody_Dead_Branch,1658,Egnigem Cenia,500000 +MOBG_Bloody_Dead_Branch,1685,Vesper,500000 +MOBG_Bloody_Dead_Branch,1688,Lady Tanee,500000 +MOBG_Bloody_Dead_Branch,1708,Thanatos Phantom,500000 +MOBG_Bloody_Dead_Branch,1719,Detardeurus,500000 +MOBG_Bloody_Dead_Branch,1734,Kiel D-01,500000 +MOBG_Bloody_Dead_Branch,1751,Valkyrie Randgris,500000 +MOBG_Bloody_Dead_Branch,1768,Gloom Under Night,500000 +MOBG_Bloody_Dead_Branch,1779,Ktullanux,500000 +MOBG_Bloody_Dead_Branch,1785,Atroce,1000000 +MOBG_Bloody_Dead_Branch,1832,Ifrit,500000 +MOBG_Bloody_Dead_Branch,1871,Falling Bishop,500000 +MOBG_Bloody_Dead_Branch,1873,Beelzebub,500000 +MOBG_Bloody_Dead_Branch,1885,Gopinich,500000 +MOBG_Bloody_Dead_Branch,2022,Nidhoggur's Shadow,500000 diff --git a/db/pre-re/mob_branch.txt b/db/pre-re/mob_branch.txt index 19fb9ac615..002aa94133 100644 --- a/db/pre-re/mob_branch.txt +++ b/db/pre-re/mob_branch.txt @@ -1,469 +1,469 @@ // Dead Branch Summonable Monsters Database // // Structure of Database: -// MobID,DummyName,Rate +// MobRandomGroupID,MobID,DummyName,Rate -0,Scorpion,1001 -1001,Scorpion,214285 -1002,Poring,1000000 -1004,Hornet,357142 -1005,Familiar,357142 -1007,Fabre,428571 -1008,Pupa,71428 -1009,Condor,357142 -1010,Willow,357142 -1011,Chonchon,357142 -1012,Roda Frog,357142 -1013,Wolf,357142 -1014,Spore,357142 -1015,Zombie,357142 -1016,Archer Skeleton,214285 -1018,Creamy,357142 -1019,Peco Peco,357142 -1020,Mandragora,357142 -1023,Orc Warrior,214285 -1024,Wormtail,357142 -1025,Boa,357142 -1026,Munak,214285 -1028,Soldier Skeleton,214285 -1029,Isis,71428 -1030,Anacondaq,214285 -1031,Poporing,357142 -1032,Verit,214285 -1033,Elder Willow,214285 -1034,Thara Frog,214285 -1035,Hunter Fly,71428 -1036,Ghoul,214285 -1037,Side Winder,71428 -1040,Golem,214285 -1041,Mummy,214285 -1042,Steel Chonchon,357142 -1044,Obeaune,214285 -1045,Marc,214285 -1047,Peco Peco Egg,71428 -1048,Thief Bug Egg,71428 -1049,Picky,357142 -1050,Picky,357142 -1051,Thief Bug,357142 -1052,Rocker,357142 -1053,Thief Bug Female,357142 -1054,Thief Bug Male,357142 -1055,Muka,357142 -1056,Smokie,357142 -1057,Yoyo,357142 -1058,Metaller,214285 -1060,Bigfoot,214285 -1061,Nightmare,71428 -1062,Santa Poring,357142 -1063,Lunatic,357142 -1064,Megalodon,214285 -1065,Strouf,214285 -1066,Vadon,357142 -1067,Cornutus,214285 -1068,Hydra,357142 -1069,Swordfish,214285 -1070,Kukre,357142 -1071,Pirate Skeleton,214285 -1072,Kaho,71428 -1073,Crab,214285 -1074,Shellfish,357142 -1076,Skeleton,357142 -1077,Poison Spore,357142 -1078,Red Plant,71428 -1079,Blue Plant,71428 -1080,Green Plant,71428 -1081,Yellow Plant,71428 -1082,White Plant,71428 -1083,Shining Plant,71428 -1084,Black Mushroom,71428 -1085,Red Mushroom,71428 -1088,Vocal,71428 -1089,Toad,71428 -1090,Mastering,71428 -1091,Dragon Fly,71428 -1092,Vagabond Wolf,71428 -1093,Eclipse,71428 -1094,Ambernite,357142 -1095,Andre,357142 -1096,Angeling,71428 -1097,Ant Egg,71428 -1098,Anubis,71428 -1099,Argiope,71428 -1100,Argos,214285 -1101,Baphomet Jr.,71428 -1102,Bathory,71428 -1103,Caramel,214285 -1104,Coco,357142 -1105,Deniro,357142 -1106,Desert Wolf,214285 -1107,Baby Desert Wolf,71428 -1108,Deviace,71428 -1109,Deviruchi,71428 -1110,Dokebi,214285 -1111,Drainliar,214285 -1113,Drops,357142 -1114,Dustiness,214285 -1116,Eggyra,214285 -1117,Evil Druid,71428 -1118,Flora,214285 -1119,Frilldora,214285 -1120,Ghostring,71428 -1121,Giearth,214285 -1122,Goblin,214285 -1123,Goblin,214285 -1124,Goblin,214285 -1125,Goblin,214285 -1126,Goblin,214285 -1127,Hode,214285 -1128,Horn,357142 -1129,Horong,214285 -1130,Jakk,214285 -1131,Joker,71428 -1132,Khalitzburg,71428 -1133,Kobold,214285 -1134,Kobold,214285 -1135,Kobold,214285 -1138,Magnolia,214285 -1139,Mantis,214285 -1140,Marduk,214285 -1141,Marina,214285 -1142,Marine Sphere,214285 -1143,Marionette,71428 -1144,Marse,214285 -1145,Martin,357142 -1146,Matyr,214285 -1148,Medusa,71428 -1149,Minorous,71428 -1151,Myst,214285 -1152,Orc Skeleton,214285 -1153,Orc Zombie,214285 -1154,Pasana,71428 -1155,Petite,71428 -1156,Petite,71428 -1158,Phen,214285 -1160,Piere,357142 -1161,Plankton,357142 -1163,Raydric,71428 -1164,Requiem,214285 -1165,Sandman,214285 -1166,Savage,214285 -1167,Savage Babe,357142 -1169,Skeleton Worker,214285 -1170,Sohee,214285 -1174,Stainer,357142 -1175,Tarou,357142 -1176,Vitata,214285 -1177,Zenorc,214285 -1178,Zerom,214285 -1179,Whisper,71428 -1180,Nine Tail,71428 -1182,Thief Mushroom,71428 -1185,Whisper,71428 -1186,Giant Whisper,71428 -1188,Bongun,214285 -1189,Orc Archer,71428 -1191,Mimic,71428 -1192,Wraith,71428 -1193,Alarm,71428 -1194,Arclouze,71428 -1195,Rideword,71428 -1196,Skeleton Prisoner,71428 -1197,Zombie Prisoner,71428 -1199,Punk,71428 -1200,Zealotus,71428 -1201,Rybio,71428 -1202,Phendark,71428 -1203,Mysteltainn,71428 -1204,Ogretooth,71428 -1205,Executioner,71428 -1206,Anolian,71428 -1207,Sting,71428 -1208,Wanderer,71428 -1209,Cramp,71428 -1211,Brilight,71428 -1212,Iron Fist,71428 -1213,High Orc,71428 -1214,Choco,71428 -1215,Stem Worm,214285 -1216,Penomena,71428 -1219,Abysmal Knight,71428 -1242,Marin,357142 -1243,Sasquatch,214285 -1245,Christmas Goblin,71428 -1246,Christmas Cookie,214285 -1248,Cruiser,214285 -1249,Myst Case,214285 -1250,Chepet,71428 -1253,Gargoyle,71428 -1254,Raggler,214285 -1255,Nereid,214285 -1256,Pest,214285 -1257,Injustice,71428 -1258,Goblin Archer,214285 -1259,Gryphon,71428 -1260,Dark Frame,71428 -1261,Wild Rose,214285 -1262,Mutant Dragonoid,71428 -1263,Wind Ghost,71428 -1264,Merman,71428 -1265,Cookie,214285 -1266,Aster,357142 -1267,Carat,71428 -1268,Bloody Knight,71428 -1269,Clock,71428 -1270,Clock Tower Manager,71428 -1271,Alligator,71428 -1273,Orc Lady,214285 -1274,Megalith,71428 -1275,Alice,71428 -1276,Raydric Archer,71428 -1277,Greatest General,214285 -1278,Stalactic Golem,71428 -1279,Tri Joint,214285 -1280,Goblin Steamrider,214285 -1281,Sage Worm,71428 -1282,Kobold Archer,214285 -1283,Chimera,71428 -1289,Maya Purple,71428 -1290,Skeleton General,71428 -1291,Wraith Dead,71428 -1292,Mini Demon,71428 -1293,Creamy Fear,71428 -1294,Killer Mantis,71428 -1295,Owl Baron,71428 -1296,Kobold Leader,71428 -1297,Ancient Mummy,71428 -1298,Zombie Master,71428 -1299,Goblin Leader,71428 -1300,Caterpillar,71428 -1301,Am Mut,71428 -1302,Dark Illusion,71428 -1303,Giant Hornet,71428 -1304,Giant Spider,71428 -1305,Ancient Worm,71428 -1306,Leib Olmai,71428 -1307,Cat o' Nine Tails,71428 -1308,Panzer Goblin,71428 -1309,Gajomart,71428 -1310,Majoruros,71428 -1311,Gullinbursti,71428 -1313,Mobster,71428 -1314,Permeter,71428 -1315,Assaulter,71428 -1316,Solider,71428 -1317,Seal,71428 -1318,Heater,71428 -1319,Freezer,71428 -1320,Owl Duke,71428 -1321,Dragon Tail,71428 -1322,Spring Rabbit,71428 -1323,Sea Otter,71428 -1365,Apocalypse,71428 -1366,Lava Golem,71428 -1367,Blazer,71428 -1368,Geographer,71428 -1369,Grand Peco,71428 -1370,Succubus,71428 -1371,False Angel,71428 -1372,Goat,71428 -1374,Incubus,71428 -1375,The Paper,71428 -1376,Harpy,71428 -1377,Elder,71428 -1378,Demon Pungus,71428 -1379,Nightmare Terror,71428 -1380,Driller,71428 -1381,Grizzly,71428 -1382,Diabolic,71428 -1383,Explosion,71428 -1384,Deleter,71428 -1385,Deleter,71428 -1386,Sleeper,71428 -1387,Gig,71428 -1390,Violy,71428 -1391,Galapago,71428 -1392,Rotar Zairo,214285 -1400,Karakasa,214285 -1401,Shinobi,71428 -1402,Poison Toad,71428 -1403,Firelock Soldier,71428 -1404,Miyabi Doll,214285 -1405,Tengu,71428 -1406,Kapha,71428 -1408,Bloody Butterfly,71428 -1409,Dumpling Child,214285 -1410,Enchanted Peach Tree,71428 -1412,Taoist Hermit,71428 -1413,Hermit Plant,71428 -1415,Baby Leopard,214285 -1416,Evil Nymph,71428 -1417,Zipper Bear,214285 -1493,Dryad,71428 -1494,Beetle King,214285 -1495,Stone Shooter,71428 -1497,Wooden Golem,71428 -1498,Wootan Shooter,214285 -1499,Wootan Fighter,71428 -1500,Parasite,214285 -1503,Gibbet,71428 -1504,Dullahan,71428 -1505,Loli Ruri,71428 -1506,Disguise,71428 -1507,Bloody Murderer,71428 -1508,Quve,214285 -1509,Lude,214285 -1510,Heirozoist,71428 -1512,Yao Jun,71428 -1513,Mao Guai,71428 -1514,Zhu Po Long,71428 -1515,Baby Hatii,71428 -1516,Mi Gao,71428 -1517,Jing Guai,71428 -1519,Green Maiden,71428 -1520,Boiled Rice,71428 -1582,Deviling,71428 -1584,Tamruan,71428 -1586,Leaf Cat,71428 -1587,Kraben,71428 -1613,Metaling,71428 -1614,Mineral,71428 -1615,Obsidian,71428 -1616,Pitman,71428 -1617,Old Stove,71428 -1618,Ungoliant,71428 -1619,Porcellio,71428 -1620,Noxious,71428 -1621,Venomous,71428 -1622,Teddy Bear,71428 -1627,Anopheles,71428 -1628,Holden,71428 -1629,Hill Wind,71428 -1631,Green Maiden,71428 -1632,Gremlin,71428 -1633,Beholder,71428 -1634,Seyren Windsor,71428 -1635,Eremes Guile,71428 -1636,Howard Alt-Eisen,71428 -1637,Margaretha Sorin,71428 -1638,Cecil Damon,71428 -1639,Kathryne Keyron,71428 -1652,Egnigem Cenia,71428 -1653,Wickebine Tres,71428 -1654,Armeyer Dinze,71428 -1655,Errende Ebecee,71428 -1656,Kavach Icarus,71428 -1657,Laurell Weinder,71428 -1664,Photon Cannon,71428 -1665,Photon Cannon,71428 -1666,Photon Cannon,71428 -1667,Photon Cannon,71428 -1668,Archdam,71428 -1669,Dimik,71428 -1670,Dimik,71428 -1671,Dimik,71428 -1672,Dimik,71428 -1673,Dimik,71428 -1675,Venatu,71428 -1676,Venatu,71428 -1677,Venatu,71428 -1678,Venatu,71428 -1679,Venatu,71428 -1680,Hill Wind,71428 -1681,Gemini-S58,71428 -1682,Remover,71428 -1686,Orc Baby,71428 -1687,Grove,71428 -1692,Breeze,71428 -1693,Plasma,71428 -1694,Plasma,71428 -1695,Plasma,71428 -1696,Plasma,71428 -1699,Ancient Mimic,71428 -1703,Lady Solace,71428 -1704,Odium of Thanatos,71428 -1705,Despero of Thanatos,71428 -1706,Maero of Thanatos,71428 -1707,Dolor of Thanatos,71428 -1713,Acidus,71428 -1714,Ferus,71428 -1715,Novus,71428 -1717,Ferus,71428 -1718,Novus,71428 -1720,Hydrolancer,71428 -1721,Dragon Egg,71428 -1736,Aliot,71428 -1737,Aliza,71428 -1738,Constant,71428 -1752,Skogul,71428 -1753,Frus,71428 -1754,Skeggiold,71428 -1755,Skeggiold,71428 -1769,Agav,71428 -1770,Echio,71428 -1771,Vanberk,71428 -1772,Isilla,71428 -1773,Hodremlin,71428 -1774,Seeker,71428 -1775,Snowier,71428 -1776,Siroma,71428 -1777,Ice Titan,71428 -1778,Gazeti,71428 -1780,Muscipular,71428 -1781,Drosera,71428 -1782,Roween,71428 -1783,Galion,71428 -1784,Stapo,142857 -1789,Iceicle,71428 -1796,Aunoe,142857 -1797,Fanat,142857 -1829,Sword Guardian,71428 -1830,Bow Guardian,71428 -1831,Salamander,71428 -1833,Kasa,71428 -1836,Magmaring,214285 -1837,Imp,71428 -1838,Knocker,71428 -1839,Byrogue,71428 -1864,Zombie Slaughter,71428 -1865,Ragged Zombie,71428 -1866,Hellhound,71428 -1867,Banshee,71428 -1869,Flame Skull,71428 -1870,Necromancer,71428 -1872,Hell Fly,71428 -1880,Wood Goblin,71428 -1881,Les,71428 -1882,Baba-Yaga,71428 -1883,Uzhas,71428 -1884,Mavka,71428 -1918,Incarnation of Morroc,71428 -1919,Incarnation of Morroc,71428 -1920,Incarnation of Morroc,71428 -1921,Incarnation of Morroc,71428 -1974,Banshee Master,71428 -1975,Beholder Master,71428 -1976,Cobalt Mineral,71428 -1977,Heavy Metaling,71428 -1978,Hell Vesper,71428 -1979,Zakudam,71428 -1986,Tatacho,71428 -1987,Centipede,71428 -1988,Nepenthes,71428 -1989,Hillthrion,71428 -1990,Hardrock Mammoth,71428 -1991,Tendrillion,71428 -1992,Cornus,71428 -1993,Naga,71428 -1994,Luciola Vespa,71428 -1995,Pinguicula,71428 -1999,Centipede Larva,71428 -2013,Draco,71428 -2015,Dark Pinguicula,71428 -2016,Aqua Elemental,71428 -2017,Rata,71428 -2018,Duneyrr,71428 -2019,Ancient Tree,71428 -2020,Rhyncho,71428 -2021,Phylla,71428 -2023,Dark Shadow,71428 -2024,Bradium Golem,71428 +MOBG_Branch_Of_Dead_Tree,0,Scorpion,1001 +MOBG_Branch_Of_Dead_Tree,1001,Scorpion,214285 +MOBG_Branch_Of_Dead_Tree,1002,Poring,1000000 +MOBG_Branch_Of_Dead_Tree,1004,Hornet,357142 +MOBG_Branch_Of_Dead_Tree,1005,Familiar,357142 +MOBG_Branch_Of_Dead_Tree,1007,Fabre,428571 +MOBG_Branch_Of_Dead_Tree,1008,Pupa,71428 +MOBG_Branch_Of_Dead_Tree,1009,Condor,357142 +MOBG_Branch_Of_Dead_Tree,1010,Willow,357142 +MOBG_Branch_Of_Dead_Tree,1011,Chonchon,357142 +MOBG_Branch_Of_Dead_Tree,1012,Roda Frog,357142 +MOBG_Branch_Of_Dead_Tree,1013,Wolf,357142 +MOBG_Branch_Of_Dead_Tree,1014,Spore,357142 +MOBG_Branch_Of_Dead_Tree,1015,Zombie,357142 +MOBG_Branch_Of_Dead_Tree,1016,Archer Skeleton,214285 +MOBG_Branch_Of_Dead_Tree,1018,Creamy,357142 +MOBG_Branch_Of_Dead_Tree,1019,Peco Peco,357142 +MOBG_Branch_Of_Dead_Tree,1020,Mandragora,357142 +MOBG_Branch_Of_Dead_Tree,1023,Orc Warrior,214285 +MOBG_Branch_Of_Dead_Tree,1024,Wormtail,357142 +MOBG_Branch_Of_Dead_Tree,1025,Boa,357142 +MOBG_Branch_Of_Dead_Tree,1026,Munak,214285 +MOBG_Branch_Of_Dead_Tree,1028,Soldier Skeleton,214285 +MOBG_Branch_Of_Dead_Tree,1029,Isis,71428 +MOBG_Branch_Of_Dead_Tree,1030,Anacondaq,214285 +MOBG_Branch_Of_Dead_Tree,1031,Poporing,357142 +MOBG_Branch_Of_Dead_Tree,1032,Verit,214285 +MOBG_Branch_Of_Dead_Tree,1033,Elder Willow,214285 +MOBG_Branch_Of_Dead_Tree,1034,Thara Frog,214285 +MOBG_Branch_Of_Dead_Tree,1035,Hunter Fly,71428 +MOBG_Branch_Of_Dead_Tree,1036,Ghoul,214285 +MOBG_Branch_Of_Dead_Tree,1037,Side Winder,71428 +MOBG_Branch_Of_Dead_Tree,1040,Golem,214285 +MOBG_Branch_Of_Dead_Tree,1041,Mummy,214285 +MOBG_Branch_Of_Dead_Tree,1042,Steel Chonchon,357142 +MOBG_Branch_Of_Dead_Tree,1044,Obeaune,214285 +MOBG_Branch_Of_Dead_Tree,1045,Marc,214285 +MOBG_Branch_Of_Dead_Tree,1047,Peco Peco Egg,71428 +MOBG_Branch_Of_Dead_Tree,1048,Thief Bug Egg,71428 +MOBG_Branch_Of_Dead_Tree,1049,Picky,357142 +MOBG_Branch_Of_Dead_Tree,1050,Picky,357142 +MOBG_Branch_Of_Dead_Tree,1051,Thief Bug,357142 +MOBG_Branch_Of_Dead_Tree,1052,Rocker,357142 +MOBG_Branch_Of_Dead_Tree,1053,Thief Bug Female,357142 +MOBG_Branch_Of_Dead_Tree,1054,Thief Bug Male,357142 +MOBG_Branch_Of_Dead_Tree,1055,Muka,357142 +MOBG_Branch_Of_Dead_Tree,1056,Smokie,357142 +MOBG_Branch_Of_Dead_Tree,1057,Yoyo,357142 +MOBG_Branch_Of_Dead_Tree,1058,Metaller,214285 +MOBG_Branch_Of_Dead_Tree,1060,Bigfoot,214285 +MOBG_Branch_Of_Dead_Tree,1061,Nightmare,71428 +MOBG_Branch_Of_Dead_Tree,1062,Santa Poring,357142 +MOBG_Branch_Of_Dead_Tree,1063,Lunatic,357142 +MOBG_Branch_Of_Dead_Tree,1064,Megalodon,214285 +MOBG_Branch_Of_Dead_Tree,1065,Strouf,214285 +MOBG_Branch_Of_Dead_Tree,1066,Vadon,357142 +MOBG_Branch_Of_Dead_Tree,1067,Cornutus,214285 +MOBG_Branch_Of_Dead_Tree,1068,Hydra,357142 +MOBG_Branch_Of_Dead_Tree,1069,Swordfish,214285 +MOBG_Branch_Of_Dead_Tree,1070,Kukre,357142 +MOBG_Branch_Of_Dead_Tree,1071,Pirate Skeleton,214285 +MOBG_Branch_Of_Dead_Tree,1072,Kaho,71428 +MOBG_Branch_Of_Dead_Tree,1073,Crab,214285 +MOBG_Branch_Of_Dead_Tree,1074,Shellfish,357142 +MOBG_Branch_Of_Dead_Tree,1076,Skeleton,357142 +MOBG_Branch_Of_Dead_Tree,1077,Poison Spore,357142 +MOBG_Branch_Of_Dead_Tree,1078,Red Plant,71428 +MOBG_Branch_Of_Dead_Tree,1079,Blue Plant,71428 +MOBG_Branch_Of_Dead_Tree,1080,Green Plant,71428 +MOBG_Branch_Of_Dead_Tree,1081,Yellow Plant,71428 +MOBG_Branch_Of_Dead_Tree,1082,White Plant,71428 +MOBG_Branch_Of_Dead_Tree,1083,Shining Plant,71428 +MOBG_Branch_Of_Dead_Tree,1084,Black Mushroom,71428 +MOBG_Branch_Of_Dead_Tree,1085,Red Mushroom,71428 +MOBG_Branch_Of_Dead_Tree,1088,Vocal,71428 +MOBG_Branch_Of_Dead_Tree,1089,Toad,71428 +MOBG_Branch_Of_Dead_Tree,1090,Mastering,71428 +MOBG_Branch_Of_Dead_Tree,1091,Dragon Fly,71428 +MOBG_Branch_Of_Dead_Tree,1092,Vagabond Wolf,71428 +MOBG_Branch_Of_Dead_Tree,1093,Eclipse,71428 +MOBG_Branch_Of_Dead_Tree,1094,Ambernite,357142 +MOBG_Branch_Of_Dead_Tree,1095,Andre,357142 +MOBG_Branch_Of_Dead_Tree,1096,Angeling,71428 +MOBG_Branch_Of_Dead_Tree,1097,Ant Egg,71428 +MOBG_Branch_Of_Dead_Tree,1098,Anubis,71428 +MOBG_Branch_Of_Dead_Tree,1099,Argiope,71428 +MOBG_Branch_Of_Dead_Tree,1100,Argos,214285 +MOBG_Branch_Of_Dead_Tree,1101,Baphomet Jr.,71428 +MOBG_Branch_Of_Dead_Tree,1102,Bathory,71428 +MOBG_Branch_Of_Dead_Tree,1103,Caramel,214285 +MOBG_Branch_Of_Dead_Tree,1104,Coco,357142 +MOBG_Branch_Of_Dead_Tree,1105,Deniro,357142 +MOBG_Branch_Of_Dead_Tree,1106,Desert Wolf,214285 +MOBG_Branch_Of_Dead_Tree,1107,Baby Desert Wolf,71428 +MOBG_Branch_Of_Dead_Tree,1108,Deviace,71428 +MOBG_Branch_Of_Dead_Tree,1109,Deviruchi,71428 +MOBG_Branch_Of_Dead_Tree,1110,Dokebi,214285 +MOBG_Branch_Of_Dead_Tree,1111,Drainliar,214285 +MOBG_Branch_Of_Dead_Tree,1113,Drops,357142 +MOBG_Branch_Of_Dead_Tree,1114,Dustiness,214285 +MOBG_Branch_Of_Dead_Tree,1116,Eggyra,214285 +MOBG_Branch_Of_Dead_Tree,1117,Evil Druid,71428 +MOBG_Branch_Of_Dead_Tree,1118,Flora,214285 +MOBG_Branch_Of_Dead_Tree,1119,Frilldora,214285 +MOBG_Branch_Of_Dead_Tree,1120,Ghostring,71428 +MOBG_Branch_Of_Dead_Tree,1121,Giearth,214285 +MOBG_Branch_Of_Dead_Tree,1122,Goblin,214285 +MOBG_Branch_Of_Dead_Tree,1123,Goblin,214285 +MOBG_Branch_Of_Dead_Tree,1124,Goblin,214285 +MOBG_Branch_Of_Dead_Tree,1125,Goblin,214285 +MOBG_Branch_Of_Dead_Tree,1126,Goblin,214285 +MOBG_Branch_Of_Dead_Tree,1127,Hode,214285 +MOBG_Branch_Of_Dead_Tree,1128,Horn,357142 +MOBG_Branch_Of_Dead_Tree,1129,Horong,214285 +MOBG_Branch_Of_Dead_Tree,1130,Jakk,214285 +MOBG_Branch_Of_Dead_Tree,1131,Joker,71428 +MOBG_Branch_Of_Dead_Tree,1132,Khalitzburg,71428 +MOBG_Branch_Of_Dead_Tree,1133,Kobold,214285 +MOBG_Branch_Of_Dead_Tree,1134,Kobold,214285 +MOBG_Branch_Of_Dead_Tree,1135,Kobold,214285 +MOBG_Branch_Of_Dead_Tree,1138,Magnolia,214285 +MOBG_Branch_Of_Dead_Tree,1139,Mantis,214285 +MOBG_Branch_Of_Dead_Tree,1140,Marduk,214285 +MOBG_Branch_Of_Dead_Tree,1141,Marina,214285 +MOBG_Branch_Of_Dead_Tree,1142,Marine Sphere,214285 +MOBG_Branch_Of_Dead_Tree,1143,Marionette,71428 +MOBG_Branch_Of_Dead_Tree,1144,Marse,214285 +MOBG_Branch_Of_Dead_Tree,1145,Martin,357142 +MOBG_Branch_Of_Dead_Tree,1146,Matyr,214285 +MOBG_Branch_Of_Dead_Tree,1148,Medusa,71428 +MOBG_Branch_Of_Dead_Tree,1149,Minorous,71428 +MOBG_Branch_Of_Dead_Tree,1151,Myst,214285 +MOBG_Branch_Of_Dead_Tree,1152,Orc Skeleton,214285 +MOBG_Branch_Of_Dead_Tree,1153,Orc Zombie,214285 +MOBG_Branch_Of_Dead_Tree,1154,Pasana,71428 +MOBG_Branch_Of_Dead_Tree,1155,Petite,71428 +MOBG_Branch_Of_Dead_Tree,1156,Petite,71428 +MOBG_Branch_Of_Dead_Tree,1158,Phen,214285 +MOBG_Branch_Of_Dead_Tree,1160,Piere,357142 +MOBG_Branch_Of_Dead_Tree,1161,Plankton,357142 +MOBG_Branch_Of_Dead_Tree,1163,Raydric,71428 +MOBG_Branch_Of_Dead_Tree,1164,Requiem,214285 +MOBG_Branch_Of_Dead_Tree,1165,Sandman,214285 +MOBG_Branch_Of_Dead_Tree,1166,Savage,214285 +MOBG_Branch_Of_Dead_Tree,1167,Savage Babe,357142 +MOBG_Branch_Of_Dead_Tree,1169,Skeleton Worker,214285 +MOBG_Branch_Of_Dead_Tree,1170,Sohee,214285 +MOBG_Branch_Of_Dead_Tree,1174,Stainer,357142 +MOBG_Branch_Of_Dead_Tree,1175,Tarou,357142 +MOBG_Branch_Of_Dead_Tree,1176,Vitata,214285 +MOBG_Branch_Of_Dead_Tree,1177,Zenorc,214285 +MOBG_Branch_Of_Dead_Tree,1178,Zerom,214285 +MOBG_Branch_Of_Dead_Tree,1179,Whisper,71428 +MOBG_Branch_Of_Dead_Tree,1180,Nine Tail,71428 +MOBG_Branch_Of_Dead_Tree,1182,Thief Mushroom,71428 +MOBG_Branch_Of_Dead_Tree,1185,Whisper,71428 +MOBG_Branch_Of_Dead_Tree,1186,Giant Whisper,71428 +MOBG_Branch_Of_Dead_Tree,1188,Bongun,214285 +MOBG_Branch_Of_Dead_Tree,1189,Orc Archer,71428 +MOBG_Branch_Of_Dead_Tree,1191,Mimic,71428 +MOBG_Branch_Of_Dead_Tree,1192,Wraith,71428 +MOBG_Branch_Of_Dead_Tree,1193,Alarm,71428 +MOBG_Branch_Of_Dead_Tree,1194,Arclouze,71428 +MOBG_Branch_Of_Dead_Tree,1195,Rideword,71428 +MOBG_Branch_Of_Dead_Tree,1196,Skeleton Prisoner,71428 +MOBG_Branch_Of_Dead_Tree,1197,Zombie Prisoner,71428 +MOBG_Branch_Of_Dead_Tree,1199,Punk,71428 +MOBG_Branch_Of_Dead_Tree,1200,Zealotus,71428 +MOBG_Branch_Of_Dead_Tree,1201,Rybio,71428 +MOBG_Branch_Of_Dead_Tree,1202,Phendark,71428 +MOBG_Branch_Of_Dead_Tree,1203,Mysteltainn,71428 +MOBG_Branch_Of_Dead_Tree,1204,Ogretooth,71428 +MOBG_Branch_Of_Dead_Tree,1205,Executioner,71428 +MOBG_Branch_Of_Dead_Tree,1206,Anolian,71428 +MOBG_Branch_Of_Dead_Tree,1207,Sting,71428 +MOBG_Branch_Of_Dead_Tree,1208,Wanderer,71428 +MOBG_Branch_Of_Dead_Tree,1209,Cramp,71428 +MOBG_Branch_Of_Dead_Tree,1211,Brilight,71428 +MOBG_Branch_Of_Dead_Tree,1212,Iron Fist,71428 +MOBG_Branch_Of_Dead_Tree,1213,High Orc,71428 +MOBG_Branch_Of_Dead_Tree,1214,Choco,71428 +MOBG_Branch_Of_Dead_Tree,1215,Stem Worm,214285 +MOBG_Branch_Of_Dead_Tree,1216,Penomena,71428 +MOBG_Branch_Of_Dead_Tree,1219,Abysmal Knight,71428 +MOBG_Branch_Of_Dead_Tree,1242,Marin,357142 +MOBG_Branch_Of_Dead_Tree,1243,Sasquatch,214285 +MOBG_Branch_Of_Dead_Tree,1245,Christmas Goblin,71428 +MOBG_Branch_Of_Dead_Tree,1246,Christmas Cookie,214285 +MOBG_Branch_Of_Dead_Tree,1248,Cruiser,214285 +MOBG_Branch_Of_Dead_Tree,1249,Myst Case,214285 +MOBG_Branch_Of_Dead_Tree,1250,Chepet,71428 +MOBG_Branch_Of_Dead_Tree,1253,Gargoyle,71428 +MOBG_Branch_Of_Dead_Tree,1254,Raggler,214285 +MOBG_Branch_Of_Dead_Tree,1255,Nereid,214285 +MOBG_Branch_Of_Dead_Tree,1256,Pest,214285 +MOBG_Branch_Of_Dead_Tree,1257,Injustice,71428 +MOBG_Branch_Of_Dead_Tree,1258,Goblin Archer,214285 +MOBG_Branch_Of_Dead_Tree,1259,Gryphon,71428 +MOBG_Branch_Of_Dead_Tree,1260,Dark Frame,71428 +MOBG_Branch_Of_Dead_Tree,1261,Wild Rose,214285 +MOBG_Branch_Of_Dead_Tree,1262,Mutant Dragonoid,71428 +MOBG_Branch_Of_Dead_Tree,1263,Wind Ghost,71428 +MOBG_Branch_Of_Dead_Tree,1264,Merman,71428 +MOBG_Branch_Of_Dead_Tree,1265,Cookie,214285 +MOBG_Branch_Of_Dead_Tree,1266,Aster,357142 +MOBG_Branch_Of_Dead_Tree,1267,Carat,71428 +MOBG_Branch_Of_Dead_Tree,1268,Bloody Knight,71428 +MOBG_Branch_Of_Dead_Tree,1269,Clock,71428 +MOBG_Branch_Of_Dead_Tree,1270,Clock Tower Manager,71428 +MOBG_Branch_Of_Dead_Tree,1271,Alligator,71428 +MOBG_Branch_Of_Dead_Tree,1273,Orc Lady,214285 +MOBG_Branch_Of_Dead_Tree,1274,Megalith,71428 +MOBG_Branch_Of_Dead_Tree,1275,Alice,71428 +MOBG_Branch_Of_Dead_Tree,1276,Raydric Archer,71428 +MOBG_Branch_Of_Dead_Tree,1277,Greatest General,214285 +MOBG_Branch_Of_Dead_Tree,1278,Stalactic Golem,71428 +MOBG_Branch_Of_Dead_Tree,1279,Tri Joint,214285 +MOBG_Branch_Of_Dead_Tree,1280,Goblin Steamrider,214285 +MOBG_Branch_Of_Dead_Tree,1281,Sage Worm,71428 +MOBG_Branch_Of_Dead_Tree,1282,Kobold Archer,214285 +MOBG_Branch_Of_Dead_Tree,1283,Chimera,71428 +MOBG_Branch_Of_Dead_Tree,1289,Maya Purple,71428 +MOBG_Branch_Of_Dead_Tree,1290,Skeleton General,71428 +MOBG_Branch_Of_Dead_Tree,1291,Wraith Dead,71428 +MOBG_Branch_Of_Dead_Tree,1292,Mini Demon,71428 +MOBG_Branch_Of_Dead_Tree,1293,Creamy Fear,71428 +MOBG_Branch_Of_Dead_Tree,1294,Killer Mantis,71428 +MOBG_Branch_Of_Dead_Tree,1295,Owl Baron,71428 +MOBG_Branch_Of_Dead_Tree,1296,Kobold Leader,71428 +MOBG_Branch_Of_Dead_Tree,1297,Ancient Mummy,71428 +MOBG_Branch_Of_Dead_Tree,1298,Zombie Master,71428 +MOBG_Branch_Of_Dead_Tree,1299,Goblin Leader,71428 +MOBG_Branch_Of_Dead_Tree,1300,Caterpillar,71428 +MOBG_Branch_Of_Dead_Tree,1301,Am Mut,71428 +MOBG_Branch_Of_Dead_Tree,1302,Dark Illusion,71428 +MOBG_Branch_Of_Dead_Tree,1303,Giant Hornet,71428 +MOBG_Branch_Of_Dead_Tree,1304,Giant Spider,71428 +MOBG_Branch_Of_Dead_Tree,1305,Ancient Worm,71428 +MOBG_Branch_Of_Dead_Tree,1306,Leib Olmai,71428 +MOBG_Branch_Of_Dead_Tree,1307,Cat o' Nine Tails,71428 +MOBG_Branch_Of_Dead_Tree,1308,Panzer Goblin,71428 +MOBG_Branch_Of_Dead_Tree,1309,Gajomart,71428 +MOBG_Branch_Of_Dead_Tree,1310,Majoruros,71428 +MOBG_Branch_Of_Dead_Tree,1311,Gullinbursti,71428 +MOBG_Branch_Of_Dead_Tree,1313,Mobster,71428 +MOBG_Branch_Of_Dead_Tree,1314,Permeter,71428 +MOBG_Branch_Of_Dead_Tree,1315,Assaulter,71428 +MOBG_Branch_Of_Dead_Tree,1316,Solider,71428 +MOBG_Branch_Of_Dead_Tree,1317,Seal,71428 +MOBG_Branch_Of_Dead_Tree,1318,Heater,71428 +MOBG_Branch_Of_Dead_Tree,1319,Freezer,71428 +MOBG_Branch_Of_Dead_Tree,1320,Owl Duke,71428 +MOBG_Branch_Of_Dead_Tree,1321,Dragon Tail,71428 +MOBG_Branch_Of_Dead_Tree,1322,Spring Rabbit,71428 +MOBG_Branch_Of_Dead_Tree,1323,Sea Otter,71428 +MOBG_Branch_Of_Dead_Tree,1365,Apocalypse,71428 +MOBG_Branch_Of_Dead_Tree,1366,Lava Golem,71428 +MOBG_Branch_Of_Dead_Tree,1367,Blazer,71428 +MOBG_Branch_Of_Dead_Tree,1368,Geographer,71428 +MOBG_Branch_Of_Dead_Tree,1369,Grand Peco,71428 +MOBG_Branch_Of_Dead_Tree,1370,Succubus,71428 +MOBG_Branch_Of_Dead_Tree,1371,False Angel,71428 +MOBG_Branch_Of_Dead_Tree,1372,Goat,71428 +MOBG_Branch_Of_Dead_Tree,1374,Incubus,71428 +MOBG_Branch_Of_Dead_Tree,1375,The Paper,71428 +MOBG_Branch_Of_Dead_Tree,1376,Harpy,71428 +MOBG_Branch_Of_Dead_Tree,1377,Elder,71428 +MOBG_Branch_Of_Dead_Tree,1378,Demon Pungus,71428 +MOBG_Branch_Of_Dead_Tree,1379,Nightmare Terror,71428 +MOBG_Branch_Of_Dead_Tree,1380,Driller,71428 +MOBG_Branch_Of_Dead_Tree,1381,Grizzly,71428 +MOBG_Branch_Of_Dead_Tree,1382,Diabolic,71428 +MOBG_Branch_Of_Dead_Tree,1383,Explosion,71428 +MOBG_Branch_Of_Dead_Tree,1384,Deleter,71428 +MOBG_Branch_Of_Dead_Tree,1385,Deleter,71428 +MOBG_Branch_Of_Dead_Tree,1386,Sleeper,71428 +MOBG_Branch_Of_Dead_Tree,1387,Gig,71428 +MOBG_Branch_Of_Dead_Tree,1390,Violy,71428 +MOBG_Branch_Of_Dead_Tree,1391,Galapago,71428 +MOBG_Branch_Of_Dead_Tree,1392,Rotar Zairo,214285 +MOBG_Branch_Of_Dead_Tree,1400,Karakasa,214285 +MOBG_Branch_Of_Dead_Tree,1401,Shinobi,71428 +MOBG_Branch_Of_Dead_Tree,1402,Poison Toad,71428 +MOBG_Branch_Of_Dead_Tree,1403,Firelock Soldier,71428 +MOBG_Branch_Of_Dead_Tree,1404,Miyabi Doll,214285 +MOBG_Branch_Of_Dead_Tree,1405,Tengu,71428 +MOBG_Branch_Of_Dead_Tree,1406,Kapha,71428 +MOBG_Branch_Of_Dead_Tree,1408,Bloody Butterfly,71428 +MOBG_Branch_Of_Dead_Tree,1409,Dumpling Child,214285 +MOBG_Branch_Of_Dead_Tree,1410,Enchanted Peach Tree,71428 +MOBG_Branch_Of_Dead_Tree,1412,Taoist Hermit,71428 +MOBG_Branch_Of_Dead_Tree,1413,Hermit Plant,71428 +MOBG_Branch_Of_Dead_Tree,1415,Baby Leopard,214285 +MOBG_Branch_Of_Dead_Tree,1416,Evil Nymph,71428 +MOBG_Branch_Of_Dead_Tree,1417,Zipper Bear,214285 +MOBG_Branch_Of_Dead_Tree,1493,Dryad,71428 +MOBG_Branch_Of_Dead_Tree,1494,Beetle King,214285 +MOBG_Branch_Of_Dead_Tree,1495,Stone Shooter,71428 +MOBG_Branch_Of_Dead_Tree,1497,Wooden Golem,71428 +MOBG_Branch_Of_Dead_Tree,1498,Wootan Shooter,214285 +MOBG_Branch_Of_Dead_Tree,1499,Wootan Fighter,71428 +MOBG_Branch_Of_Dead_Tree,1500,Parasite,214285 +MOBG_Branch_Of_Dead_Tree,1503,Gibbet,71428 +MOBG_Branch_Of_Dead_Tree,1504,Dullahan,71428 +MOBG_Branch_Of_Dead_Tree,1505,Loli Ruri,71428 +MOBG_Branch_Of_Dead_Tree,1506,Disguise,71428 +MOBG_Branch_Of_Dead_Tree,1507,Bloody Murderer,71428 +MOBG_Branch_Of_Dead_Tree,1508,Quve,214285 +MOBG_Branch_Of_Dead_Tree,1509,Lude,214285 +MOBG_Branch_Of_Dead_Tree,1510,Heirozoist,71428 +MOBG_Branch_Of_Dead_Tree,1512,Yao Jun,71428 +MOBG_Branch_Of_Dead_Tree,1513,Mao Guai,71428 +MOBG_Branch_Of_Dead_Tree,1514,Zhu Po Long,71428 +MOBG_Branch_Of_Dead_Tree,1515,Baby Hatii,71428 +MOBG_Branch_Of_Dead_Tree,1516,Mi Gao,71428 +MOBG_Branch_Of_Dead_Tree,1517,Jing Guai,71428 +MOBG_Branch_Of_Dead_Tree,1519,Green Maiden,71428 +MOBG_Branch_Of_Dead_Tree,1520,Boiled Rice,71428 +MOBG_Branch_Of_Dead_Tree,1582,Deviling,71428 +MOBG_Branch_Of_Dead_Tree,1584,Tamruan,71428 +MOBG_Branch_Of_Dead_Tree,1586,Leaf Cat,71428 +MOBG_Branch_Of_Dead_Tree,1587,Kraben,71428 +MOBG_Branch_Of_Dead_Tree,1613,Metaling,71428 +MOBG_Branch_Of_Dead_Tree,1614,Mineral,71428 +MOBG_Branch_Of_Dead_Tree,1615,Obsidian,71428 +MOBG_Branch_Of_Dead_Tree,1616,Pitman,71428 +MOBG_Branch_Of_Dead_Tree,1617,Old Stove,71428 +MOBG_Branch_Of_Dead_Tree,1618,Ungoliant,71428 +MOBG_Branch_Of_Dead_Tree,1619,Porcellio,71428 +MOBG_Branch_Of_Dead_Tree,1620,Noxious,71428 +MOBG_Branch_Of_Dead_Tree,1621,Venomous,71428 +MOBG_Branch_Of_Dead_Tree,1622,Teddy Bear,71428 +MOBG_Branch_Of_Dead_Tree,1627,Anopheles,71428 +MOBG_Branch_Of_Dead_Tree,1628,Holden,71428 +MOBG_Branch_Of_Dead_Tree,1629,Hill Wind,71428 +MOBG_Branch_Of_Dead_Tree,1631,Green Maiden,71428 +MOBG_Branch_Of_Dead_Tree,1632,Gremlin,71428 +MOBG_Branch_Of_Dead_Tree,1633,Beholder,71428 +MOBG_Branch_Of_Dead_Tree,1634,Seyren Windsor,71428 +MOBG_Branch_Of_Dead_Tree,1635,Eremes Guile,71428 +MOBG_Branch_Of_Dead_Tree,1636,Howard Alt-Eisen,71428 +MOBG_Branch_Of_Dead_Tree,1637,Margaretha Sorin,71428 +MOBG_Branch_Of_Dead_Tree,1638,Cecil Damon,71428 +MOBG_Branch_Of_Dead_Tree,1639,Kathryne Keyron,71428 +MOBG_Branch_Of_Dead_Tree,1652,Egnigem Cenia,71428 +MOBG_Branch_Of_Dead_Tree,1653,Wickebine Tres,71428 +MOBG_Branch_Of_Dead_Tree,1654,Armeyer Dinze,71428 +MOBG_Branch_Of_Dead_Tree,1655,Errende Ebecee,71428 +MOBG_Branch_Of_Dead_Tree,1656,Kavach Icarus,71428 +MOBG_Branch_Of_Dead_Tree,1657,Laurell Weinder,71428 +MOBG_Branch_Of_Dead_Tree,1664,Photon Cannon,71428 +MOBG_Branch_Of_Dead_Tree,1665,Photon Cannon,71428 +MOBG_Branch_Of_Dead_Tree,1666,Photon Cannon,71428 +MOBG_Branch_Of_Dead_Tree,1667,Photon Cannon,71428 +MOBG_Branch_Of_Dead_Tree,1668,Archdam,71428 +MOBG_Branch_Of_Dead_Tree,1669,Dimik,71428 +MOBG_Branch_Of_Dead_Tree,1670,Dimik,71428 +MOBG_Branch_Of_Dead_Tree,1671,Dimik,71428 +MOBG_Branch_Of_Dead_Tree,1672,Dimik,71428 +MOBG_Branch_Of_Dead_Tree,1673,Dimik,71428 +MOBG_Branch_Of_Dead_Tree,1675,Venatu,71428 +MOBG_Branch_Of_Dead_Tree,1676,Venatu,71428 +MOBG_Branch_Of_Dead_Tree,1677,Venatu,71428 +MOBG_Branch_Of_Dead_Tree,1678,Venatu,71428 +MOBG_Branch_Of_Dead_Tree,1679,Venatu,71428 +MOBG_Branch_Of_Dead_Tree,1680,Hill Wind,71428 +MOBG_Branch_Of_Dead_Tree,1681,Gemini-S58,71428 +MOBG_Branch_Of_Dead_Tree,1682,Remover,71428 +MOBG_Branch_Of_Dead_Tree,1686,Orc Baby,71428 +MOBG_Branch_Of_Dead_Tree,1687,Grove,71428 +MOBG_Branch_Of_Dead_Tree,1692,Breeze,71428 +MOBG_Branch_Of_Dead_Tree,1693,Plasma,71428 +MOBG_Branch_Of_Dead_Tree,1694,Plasma,71428 +MOBG_Branch_Of_Dead_Tree,1695,Plasma,71428 +MOBG_Branch_Of_Dead_Tree,1696,Plasma,71428 +MOBG_Branch_Of_Dead_Tree,1699,Ancient Mimic,71428 +MOBG_Branch_Of_Dead_Tree,1703,Lady Solace,71428 +MOBG_Branch_Of_Dead_Tree,1704,Odium of Thanatos,71428 +MOBG_Branch_Of_Dead_Tree,1705,Despero of Thanatos,71428 +MOBG_Branch_Of_Dead_Tree,1706,Maero of Thanatos,71428 +MOBG_Branch_Of_Dead_Tree,1707,Dolor of Thanatos,71428 +MOBG_Branch_Of_Dead_Tree,1713,Acidus,71428 +MOBG_Branch_Of_Dead_Tree,1714,Ferus,71428 +MOBG_Branch_Of_Dead_Tree,1715,Novus,71428 +MOBG_Branch_Of_Dead_Tree,1717,Ferus,71428 +MOBG_Branch_Of_Dead_Tree,1718,Novus,71428 +MOBG_Branch_Of_Dead_Tree,1720,Hydrolancer,71428 +MOBG_Branch_Of_Dead_Tree,1721,Dragon Egg,71428 +MOBG_Branch_Of_Dead_Tree,1736,Aliot,71428 +MOBG_Branch_Of_Dead_Tree,1737,Aliza,71428 +MOBG_Branch_Of_Dead_Tree,1738,Constant,71428 +MOBG_Branch_Of_Dead_Tree,1752,Skogul,71428 +MOBG_Branch_Of_Dead_Tree,1753,Frus,71428 +MOBG_Branch_Of_Dead_Tree,1754,Skeggiold,71428 +MOBG_Branch_Of_Dead_Tree,1755,Skeggiold,71428 +MOBG_Branch_Of_Dead_Tree,1769,Agav,71428 +MOBG_Branch_Of_Dead_Tree,1770,Echio,71428 +MOBG_Branch_Of_Dead_Tree,1771,Vanberk,71428 +MOBG_Branch_Of_Dead_Tree,1772,Isilla,71428 +MOBG_Branch_Of_Dead_Tree,1773,Hodremlin,71428 +MOBG_Branch_Of_Dead_Tree,1774,Seeker,71428 +MOBG_Branch_Of_Dead_Tree,1775,Snowier,71428 +MOBG_Branch_Of_Dead_Tree,1776,Siroma,71428 +MOBG_Branch_Of_Dead_Tree,1777,Ice Titan,71428 +MOBG_Branch_Of_Dead_Tree,1778,Gazeti,71428 +MOBG_Branch_Of_Dead_Tree,1780,Muscipular,71428 +MOBG_Branch_Of_Dead_Tree,1781,Drosera,71428 +MOBG_Branch_Of_Dead_Tree,1782,Roween,71428 +MOBG_Branch_Of_Dead_Tree,1783,Galion,71428 +MOBG_Branch_Of_Dead_Tree,1784,Stapo,142857 +MOBG_Branch_Of_Dead_Tree,1789,Iceicle,71428 +MOBG_Branch_Of_Dead_Tree,1796,Aunoe,142857 +MOBG_Branch_Of_Dead_Tree,1797,Fanat,142857 +MOBG_Branch_Of_Dead_Tree,1829,Sword Guardian,71428 +MOBG_Branch_Of_Dead_Tree,1830,Bow Guardian,71428 +MOBG_Branch_Of_Dead_Tree,1831,Salamander,71428 +MOBG_Branch_Of_Dead_Tree,1833,Kasa,71428 +MOBG_Branch_Of_Dead_Tree,1836,Magmaring,214285 +MOBG_Branch_Of_Dead_Tree,1837,Imp,71428 +MOBG_Branch_Of_Dead_Tree,1838,Knocker,71428 +MOBG_Branch_Of_Dead_Tree,1839,Byrogue,71428 +MOBG_Branch_Of_Dead_Tree,1864,Zombie Slaughter,71428 +MOBG_Branch_Of_Dead_Tree,1865,Ragged Zombie,71428 +MOBG_Branch_Of_Dead_Tree,1866,Hellhound,71428 +MOBG_Branch_Of_Dead_Tree,1867,Banshee,71428 +MOBG_Branch_Of_Dead_Tree,1869,Flame Skull,71428 +MOBG_Branch_Of_Dead_Tree,1870,Necromancer,71428 +MOBG_Branch_Of_Dead_Tree,1872,Hell Fly,71428 +MOBG_Branch_Of_Dead_Tree,1880,Wood Goblin,71428 +MOBG_Branch_Of_Dead_Tree,1881,Les,71428 +MOBG_Branch_Of_Dead_Tree,1882,Baba-Yaga,71428 +MOBG_Branch_Of_Dead_Tree,1883,Uzhas,71428 +MOBG_Branch_Of_Dead_Tree,1884,Mavka,71428 +MOBG_Branch_Of_Dead_Tree,1918,Incarnation of Morroc,71428 +MOBG_Branch_Of_Dead_Tree,1919,Incarnation of Morroc,71428 +MOBG_Branch_Of_Dead_Tree,1920,Incarnation of Morroc,71428 +MOBG_Branch_Of_Dead_Tree,1921,Incarnation of Morroc,71428 +MOBG_Branch_Of_Dead_Tree,1974,Banshee Master,71428 +MOBG_Branch_Of_Dead_Tree,1975,Beholder Master,71428 +MOBG_Branch_Of_Dead_Tree,1976,Cobalt Mineral,71428 +MOBG_Branch_Of_Dead_Tree,1977,Heavy Metaling,71428 +MOBG_Branch_Of_Dead_Tree,1978,Hell Vesper,71428 +MOBG_Branch_Of_Dead_Tree,1979,Zakudam,71428 +MOBG_Branch_Of_Dead_Tree,1986,Tatacho,71428 +MOBG_Branch_Of_Dead_Tree,1987,Centipede,71428 +MOBG_Branch_Of_Dead_Tree,1988,Nepenthes,71428 +MOBG_Branch_Of_Dead_Tree,1989,Hillthrion,71428 +MOBG_Branch_Of_Dead_Tree,1990,Hardrock Mammoth,71428 +MOBG_Branch_Of_Dead_Tree,1991,Tendrillion,71428 +MOBG_Branch_Of_Dead_Tree,1992,Cornus,71428 +MOBG_Branch_Of_Dead_Tree,1993,Naga,71428 +MOBG_Branch_Of_Dead_Tree,1994,Luciola Vespa,71428 +MOBG_Branch_Of_Dead_Tree,1995,Pinguicula,71428 +MOBG_Branch_Of_Dead_Tree,1999,Centipede Larva,71428 +MOBG_Branch_Of_Dead_Tree,2013,Draco,71428 +MOBG_Branch_Of_Dead_Tree,2015,Dark Pinguicula,71428 +MOBG_Branch_Of_Dead_Tree,2016,Aqua Elemental,71428 +MOBG_Branch_Of_Dead_Tree,2017,Rata,71428 +MOBG_Branch_Of_Dead_Tree,2018,Duneyrr,71428 +MOBG_Branch_Of_Dead_Tree,2019,Ancient Tree,71428 +MOBG_Branch_Of_Dead_Tree,2020,Rhyncho,71428 +MOBG_Branch_Of_Dead_Tree,2021,Phylla,71428 +MOBG_Branch_Of_Dead_Tree,2023,Dark Shadow,71428 +MOBG_Branch_Of_Dead_Tree,2024,Bradium Golem,71428 diff --git a/db/pre-re/mob_poring.txt b/db/pre-re/mob_poring.txt index f79cec7714..c7e23a9b86 100644 --- a/db/pre-re/mob_poring.txt +++ b/db/pre-re/mob_poring.txt @@ -1,18 +1,18 @@ // Poring Box Summonable Monsters Database // // Structure of Database: -// MobID,DummyName,Rate +// MobRandomGroupID,MobID,DummyName,Rate -0,Poring,1002 -1002,Poring,1000000 -1031,Poporing,1000000 -1062,Santa Poring,200000 -1090,Mastering,400000 -1096,Angeling,200000 -1113,Drops,1000000 -1120,Ghostring,200000 -1242,Marin,1000000 -1388,Arc Angeling,200000 -1582,Deviling,200000 -1613,Metaling,1000000 -1784,Stapo,1000000 +MOBG_Poring_Box,0,Poring,1002 +MOBG_Poring_Box,1002,Poring,1000000 +MOBG_Poring_Box,1031,Poporing,1000000 +MOBG_Poring_Box,1062,Santa Poring,200000 +MOBG_Poring_Box,1090,Mastering,400000 +MOBG_Poring_Box,1096,Angeling,200000 +MOBG_Poring_Box,1113,Drops,1000000 +MOBG_Poring_Box,1120,Ghostring,200000 +MOBG_Poring_Box,1242,Marin,1000000 +MOBG_Poring_Box,1388,Arc Angeling,200000 +MOBG_Poring_Box,1582,Deviling,200000 +MOBG_Poring_Box,1613,Metaling,1000000 +MOBG_Poring_Box,1784,Stapo,1000000 diff --git a/db/pre-re/mob_random_db.txt b/db/pre-re/mob_random_db.txt new file mode 100644 index 0000000000..556559c2ee --- /dev/null +++ b/db/pre-re/mob_random_db.txt @@ -0,0 +1,5 @@ +import: db/pre-re/mob_branch.txt +import: db/pre-re/mob_poring.txt +import: db/pre-re/mob_boss.txt +import: db/mob_pouch.txt +import: db/mob_classchange.txt diff --git a/db/pre-re/quest_db.txt b/db/pre-re/quest_db.txt new file mode 100644 index 0000000000..92fc0c4abc --- /dev/null +++ b/db/pre-re/quest_db.txt @@ -0,0 +1,3132 @@ +// Quest Database +// +// Structure of Database: +// Quest ID,Time Limit,Target1,Val1,Target2,Val2,Target3,Val3,MobID1,NameID1,Rate1,MobID2,NameID2,Rate2,MobID3,NameID3,Rate3,Quest Title +// +// The MobID*, NameID*, and Rate* reflect special values for quests that can drop an item at given rate from given mob. +// If no MobID* is given, then any mob has a chance to drop the given ItemID*. + +1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Transcend" +1001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Acolyte" +1002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Acolyte" +1003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Acolyte" +1004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Archer" +1005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Mage" +1006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Mage" +1007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Mage" +1008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Mage" +1009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Merchant" +1010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Merchant" +1011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Merchant" +1012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Merchant" +1013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Thief" +1014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Swordman" +1015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Your first quest" +1016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaining base levels" + +// 2010 Headgear Quests +1100,0,1178,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo in the Sphinx Dungeon!" +1101,0,1164,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soloing Sphinx Dungeon!" +1102,0,1194,40,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soloing Clock Tower!" +1103,0,1213,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soloing Clock Tower!" +1104,0,1519,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Louyang!" +1105,0,1513,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Louyang!" +1106,0,1375,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Amatsu Dungeon!" +1107,0,1403,40,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Amatsu Dungeon!" +1108,0,1631,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Louyang!" + +// Ropewa & Yuridi Quest +1109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Survivors of the Labyrinth" +1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Victims of the Labyrinth" +1111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Maze in the Labyrinth" +1112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Lost in the Labyrinth" +1113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Torn Apart" +1114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - The Cost of Restoration" +1115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Song of the Abyss" +1116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Dead Man's Song" +1117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Eternal Promise, Broken Ring" +1118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Neighborhood Knight - I Need Clues" +1119,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Neighborhood Knight - Cooldown" + +1145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1152,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend" +1175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend" +1176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend" +1177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend" +1178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend" +1179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend" +1180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" + +// 2011 X-Mas Event +1194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" + +// Find Professor Worm's Memory +1214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" + +2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 1" +2064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 2" +2065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 3" +2066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 4" +2067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 5" +2068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 6" +2069,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tierra Gorge Battle" +2070,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flavius Battle" +2071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property" +2072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property" +2073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property" +2074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property" +2075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property" +2076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property" +2077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property" +2078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property" +2079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong" +2080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong" +2081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong" +2082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong" +2083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong" +2084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong" +2085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong" +2086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon" +2110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon" +2111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon" +2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon" +2113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon" +2114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2143,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guild Dungeon Event" +2144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guild Dungeon Event" + +2147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2150,0,1995,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2151,0,1992,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2157,0,1986,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding a Fairy" +2159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding a Tree Giant" +2179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dr. Lifeguard's request" +2180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dr. Lifeguard's request" +2181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dr. Lifeguard's request" +2182,64800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rough Minerals" +2183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flower of Alfheim" +2184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flower of Alfheim" +2185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spirit of Alfheim" +2186,64800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helping Grenouille" + +2187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest" +2188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest" +2189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest" +2190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest" +2191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest" + +2192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily" +2202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily" +2203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily" +2204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily" +2205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily" +2206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily" +2207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily" +2208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost" + +2209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest" +2219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest" +2220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest" +2221,600,1718,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest" +2222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest" +2223,0,1428,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" + +// Secret in the Woods +2271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Buwaya" + +// Pyramid (Nightmare) +2289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Verit Hunting (Nightmare)" +2290,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Verit Hunting - Cooldown" +2291,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mummy Hunting - Cooldown" +2292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mummy Hunting (Nightmare)" + +// New Novice Ground +2299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training Center: Talk to Lisa" +2300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training Center: Talk to General Reindeer" +2301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training Center: Leave the boat" +2302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training Center: Formation" + +//2315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" + +3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard" +3001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard" +3002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard" +3003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard" +3004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard" +3006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk - Marathon" +3029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk - Final test" +//3030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk - Spiritual Training" +3032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk - Become a Monk" +3040,43200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Curse of Baphomet" +3041,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Curse of Baphomet" +3042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Cursed Baphomet Doll" +3043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Gigantic Magestic Goat" +3044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Gigantic Magestic Goat" +3045,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sealed Shrine" +3046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sealed Shrine After-effect" + +3050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 1" +3051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 2" +3052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 3" +3053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 4" +3054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 5" +3055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 6" +3056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 7" +3060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Where's the Little Sis?" +3061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Find a way to unlock the shackles!" +3062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Find the Locksmith!" +3063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Mr. Lockenlock?" +3064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Organic Chamelepu Soap" +3065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Soap Ingredients" +3066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - To make a Chamelepu Soap..." +3067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Camel Appetite Stimulants" +3068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Getting the Camel Dung" +3069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Where's the Silk Sand Camel?" +3070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Silk Sand Camel is gone!" +3071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Silk Sand Camel is found!" +3072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 1 lump of Camel dung obtained" +3073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 2 lumps of Camel dung obtained" +3074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 3 lumps of Camel dung obtained" +3075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 4 lumps of Camel dung obtained" +3076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 5 lumps of Camel dung obtained" +3077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Go to Ms. Ivory" +3078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Chamalepu Soap is completed!" +3079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Making the key mold" +3080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Bringing the key mold" +3081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - All you need is Steel!" +3082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - The Key is Made!" +3083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Mr. Lockenlock's key" +3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Call from the commander" +3086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Commander's Duty" +3087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Rune Midgard" +3088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Accident!" +3089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - How to restore" +3090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Location of reports" +3091,1800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Location of reports" +3092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Success to restore!" +3093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Report to the continent" +3094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Return to the expedition" + +3100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Lost Bond of Debt" +3101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Strange Heap of Earth" +3102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Bond of Debt Found, but..." +3103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Inventor Dorian" +3104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repair Materials of Magic Dryer" +3105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer" +3106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer Failed" +3107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer Successful" +3108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Let's Run the Magic Dryer" +3109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Restoring the Bond of Debt" +3110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Tracking the Diamond" +3111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Leblo's Favor" +3112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor" +3113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor" +3114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor" +3115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Leblo's Information" +3116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Information from Rogue Investigator" +3117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Odd Switches" +3118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Diamond Found!" +3119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Wanted Notice" +3120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - About Z Gang" +3121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Valdes's Favor" +3122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Information from Valdes" +3123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Marybell's Test" +3124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Challenging Moonho Ahn" +3125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Challenging Moonho Ahn" +3126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Information from Marybell" +3127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Z Gang's Attack" +3128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Z Gang's Attack" +3129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Strange Letter" +3130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Decrypting the letter..." +3131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Code's Broken!" +3132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Find the Z Gang's Agit" +3133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Agit Found!" +3134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Clean Sweep of Z Gang" +3135,259200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nidhoggur's Nest" +3136,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nidhoggur's Nest Time Limit" + +3200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Recommendation for Rune knight" +3201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Secret rendezvous of Rune knight" +3202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The first test" +3203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The first test" +3204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the first test" +3205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" +3206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" +3207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" +3208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" +3209,0,1504,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy1" +3210,0,1506,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy2" +3211,0,1508,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy3" +3212,0,1510,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy4" +3213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" +3214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" +3215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the second test" +3216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The final test" +3217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The final test" +3218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the final test" +3219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The end of all test" +3220,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Waiting time of test" + +3250,0,1041,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - What is this bandage for?" +3251,0,1271,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - An alligator of Counterattack" +3252,0,1264,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - My mermaid don't do like this way!" +3253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Missing occult mania" +3254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A country wants you" +3255,0,1166,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A wild boar subjugate operation" +3256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Ready for waiting summer" +3257,0,1170,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A grudge of women" +3258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A material of delicacy" +3259,0,1143,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A agony of a doll master" +3260,0,1035,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Tiresome flies" +3261,0,1026,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Unclean girl" +3262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Queer hobby" +3263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A mallet of goblin" +3265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Missing occult mania" + +4000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sherin's Job Interview" +4001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter - Test" +4012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" + +// Following entries are depreciated - use 10000-10025 +//4015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Becoming an Adventurer Appraiser" +//4016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Proof of Qualification" +//4017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Qualification Test" +//4018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Preparations for Meeting Princes" +//4020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince" +//4021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince" +//4022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince" +//4023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince" +//4024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince" +//4025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince" +//4026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince" +//4027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince" +//4028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The prince, Peter's Favor" +//4029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Girl's Favor" +//4030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Story of Ahrum and Ernst" +//4031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Story of Ahrum and Ernst" +//4032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conspiracy of the two families" +//4033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Death of Ahrum" + +4133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Iara" +4134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Iara" +4135,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Iara" + +4154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus Researcher" +4155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 1" +4156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 2" +4157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 3" +4158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 4" +4159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 5" +4160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 6" + +4161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Siege Expert" +4162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Party Recruiting Expert" +4163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battleground Expert" +4164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memorial Dungeon Expert" +4165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Map Expert" +4166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Passing Grades" + +// Paradise 86 - 90 [Chilly] +4167,0,1321,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Dragon Tail Handling" +4168,0,1322,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Spring Rabbit Handling" +4169,0,1256,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Pest Handling" +4170,0,1102,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Bathory Handling" +4171,0,1193,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Alarm Handling" +4172,0,1882,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Babayaga Handling" +4173,0,1512,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Hyegun Handling" +4174,0,1403,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Antique Firelock Handling" +4175,0,1417,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Zipper Bear Handling" +4176,0,1155,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Earth Petite Handling" +4177,0,1162,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Rafflesia Handling" +4178,0,1621,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Venomous Handling" +4179,0,1616,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Pitman Handling" +4180,0,1718,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Yellow Novus Handling" + +// Paradise 91 - 99 [Chilly] +4181,0,1316,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Solider Handling" +4182,0,1319,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Freezer Handling" +4183,0,1318,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Heater Handling" +4184,0,1257,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Injustice Handling" +4185,0,1201,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Rybio Handling" +4186,0,1198,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Dark Priest Handling" +4187,0,1784,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Stapo Handling" +4188,0,1782,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Roween Handling" +4189,0,1776,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Siroma Handling" +4190,0,1401,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Shinobi Handling" +4191,0,1416,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Evil Nymph Handling" +4192,0,1109,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Deviruchi Handling" +4193,0,1614,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Mineral Handling" +4194,0,1072,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Kaho Handling" +4195,0,1255,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Neraid Handling" +4196,0,1506,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Disguise Handling" + +4197,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Octopus" + +// Paradise Cooldowns +4198,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4199,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4200,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4201,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4202,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4203,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4204,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4205,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4206,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4207,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4208,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4209,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4210,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4211,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4212,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4213,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4214,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4215,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4216,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4217,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4218,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4219,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4220,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4221,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4222,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4223,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4224,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4225,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4226,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4227,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" + +4229,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Devil in the Cave" + +4254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fairy with a stomache" +4255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revenge!" +4256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An accomplice?" +4257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conspiracy" +4258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eirinn" +4259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bourbon" +4260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bee" +4261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Counterattack (1)" +4262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Counterattack (2)" +4263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Counteroffensive (1)" +4264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Counteroffensive (2)" +4265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bookshelf use" +4266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"????? ??" +4267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"????? ??" +//4303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//4304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//4305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +4999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Extermination Crisis" +5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 7" +5001,0,1037,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"King Froggie VII's revenge" +5002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The hero of the frogs" +5003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Frog Hiding Skill" +5004,0,1099,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Food Shortage" + +// Researcher's Quest +5016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bring me a Research Tool Bag" +5017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revenge of the Reseacher" +5018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revenge of the Reseacher" +5019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Sample Studying" +5020,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sample Researching" +5021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sample Collecting" +5022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sample Collecting" +5023,21600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of the Sample" +5024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eastern Pool Research" +5025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Western Pool Research" +5026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Southern Pool Research" +5027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Northern Pool Research" +5028,43200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of the Sample" +5029,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unidentified Creature" +5030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The creature's family" +5031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The creature's family" +5032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The creature's family" +5033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The creature's family" +5034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"News from the family" +5035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5043,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5044,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Weapon" +5053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Weapon" +5054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Weapon" +5055,0,2071,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Local Rising - Headless Horse" +5056,0,1584,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Local Rising - Tamruan" +5057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Local Rising - Ready the Festival" +5058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The mood of the players-(1)" +5059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The mood of the players-(2)" +5060,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Shock" +5061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Am I scared?" +5062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I met Eryu." +5063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I met Stew." +5064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I met Ketchup." +5065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I met Eff." +5066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scary image-(1)" +5067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scary image-(2)" +5068,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting complaint" +5069,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Token of honor" +5070,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rock Paper Scissors" +5071,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Chamchamcham" +5072,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kkongnyangkkong" +5073,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Challenging of flag wave" +5074,0,1158,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat's Meal" +5075,0,1144,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Health food" +5076,0,1282,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Enemies" +5077,0,1209,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reaction Training" +5078,0,1019,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Light bird food" +5079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to stabilize the mind" +5080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lack of Snack" +5081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Banned foods" +5082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cool food" +5083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Eryu-(1)" +5084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Eryu-(2)" +5085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Stew-(1)" +5086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Stew-(2)" +5087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Ketchup-(1)" +5088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Ketchup-(2)" +5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Eff-(1)" +5090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Eff-(2)" +5091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Go Malangdo" + +5092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" +5093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" +5094,0,1002,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" +5095,0,1063,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" +5096,0,1007,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" +5097,0,1049,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" +5098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" +5099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" +5100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" + +5109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Light but Unconfirmed Rumor" +5110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Rumored Character" +5111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the Lab..." +5112,259200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laboratory Restricted Access" +5113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Lord Knight" +5114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Paladin" +5115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] High Priest" +5116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Champion" +5117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] High Wizard" +5118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Professor" +5119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Whitesmith" +5120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Creator" +5121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Assassin Cross" +5122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Stalker" +5123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Sniper" +5124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Clown" +5125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Gypsy" + +// Kagerou/Oboro Job Quest +5131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Conversation" +5132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Family Business-(1)" +5133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Family Business-(2)" +5134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New path" +5135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"4 tests" +5136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Knowledge test" +5137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Survival test" +5138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Weapons test" +5139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The guy looks familiar!!" +5140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Uncertain chilliness" +5141,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Got a curse!!" +5142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prototype-(1)" +5143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prototype-(2)" +5144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prototype-(2)" +5145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prototype-(3)" +5146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle test" + +// 2012 Headgear Quests +5161,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request[Stand by]" +5162,0,1164,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request" +5163,0,1102,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request" +5164,0,1322,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request" +5165,0,1386,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request" +5166,0,1117,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request" +5167,0,1155,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request" +5168,0,1269,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request" +5169,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request[Stand by]" +5170,0,1776,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request" +5171,0,1198,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request" +5172,0,1784,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request" +5173,0,1316,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request" +5174,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collectiong request[Stand by]" +5175,0,1106,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collection request" +5176,0,1148,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collection request" +5177,0,1995,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collection request" +5178,0,1310,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collection request" +5179,0,1163,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Highest level collection request" +5180,0,1993,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Highest level collection request" +5181,0,1297,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Highest level collection request" +5182,0,1699,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Highest level collection request" +5222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving the energy crystals" +5223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving the energy crystals" +5224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving the energy crystals" +5225,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving energy crystal[Stand by]" +5226,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving energy crystal[Stand by]" +5227,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving energy crystal[Stand by]" + +6000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Taekwon" +6001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Taekwon" +6002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Taekwon" +6005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Soul-Linker" +6006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Soul-Linker" +6007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Soul-Linker" +6008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Soul-Linker" +6010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Super Novice" +6015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A favor from Cougar" +6016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A favor from a Suspicious Man" +6017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red Leopard Joe's Reply" +6018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cougar's Madness" +6020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Master Miller's Letter" +6021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wise Bull Horn's voucher" +6022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Making a voucher" +6023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wise Bull Horn's Favor" +6024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Gunslinger!" +6025,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"KVM Guillaume" +6026,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"KVM Croix" +6027,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"KVM Indicator" +7000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!" +7001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!" +7002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!" +7003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!" +7004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!" +7005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!" +7006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!" +7007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars" +7008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - Nature" +7009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - the Altar" +7010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - Stars?" +7011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars" +7012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Case closed?" +7038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Passion for Baked Sweet Potatoes" +7039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dodging the conversation" +7040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dodging the conversation" +7041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Politics is for the Politicians" +7042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Tatacho's feed" +7043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Cornus's feed" +7044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Hillthrion's feed1" +7045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Hillthrion's feed2" +7046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - warm rugs" +7047,18000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Let's call it a day!" +7048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Burled's Favor" +7049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower" +7050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower" +7051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower" +7052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower" +7053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - What they want is.." +7054,0,1282,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Myu's Favor - Teach them a lesson!" +7055,0,1261,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Myu's Favor - Not the cat!" +7056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Arc's Favor" +7057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Arc's Favor" +7058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Arc's Favor" +7059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" +7060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" +7061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" +7062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" +7063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" +7064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" +7065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" +7066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Prove the Truth" +7067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Prove the Truth" +7068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Prove the Truth" +7069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Too late!" +7070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Return" +7071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Invitation" +//7072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7073,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +7074,0,2017,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rata Hunt" +7075,0,2018,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Duneyrr Hunt" +7076,0,2026,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanted: Dandelion" +7077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting Dragon Eggs" +7078,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting Dragon Eggs" +7079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Refined Bradium" +7080,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Refined Bradium" +7081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helping the Laphine Craftsman" +7082,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helping the Laphine Craftsman" + +7091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 01" +7092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 02" +7093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 03" +7094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 04" +7095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 05" +7096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A proof of new requirement" +7097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A proof of new requirement" +7098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A proof of new requirement" +7099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A proof of new requirement" +7100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A message of Bercascell" +7101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 1" +7102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 2" +7103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 3" +7104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 4" +7105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 4" +7106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 5" +7107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 6" +7108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 7" +7109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 8" +7110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 9" +7111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 10" +7112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of Madelle" +7113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of Crave" +7114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of Trovan" +7115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of a peddler" +7116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of a old man" + +// Novice Training Grounds +7117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Your first quest!" +7118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Novice Training" +7119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Novice Training" +7120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Novice Training" +7121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Novice Training" +7122,0,1002,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"First battle - Poring Hunt" +7123,0,1049,2,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle Basics -Swordman" +7124,0,1063,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle Basics -Mage" +//7125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"not used" +7126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Selling items" +7127,0,1010,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle Basics -Thief" + +7128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training course 'conquest a desert!' -start" +7129,0,1009,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - A real battle 1" +7130,0,1107,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - A real battle 2" +7131,0,1001,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - A real battle 3" +7132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - Complete a quest" +7133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - Start" +7134,0,1051,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 1" +7135,0,1175,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 2" +7136,0,1005,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 3" +7137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - Complete a quest" +7138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - Start" +7139,0,1076,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - A real battle 1" +7140,0,1031,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - A real battle 2" +7141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - Complete a quest" +7142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - Start" +7143,0,1160,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 1" +7144,0,1095,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 2" +7145,0,1176,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 3" +7146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - Complete a quest" +7147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - start" +7148,0,1686,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 1" +7149,0,1023,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 2" +7150,0,1273,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 3" +7151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - Complete a quest" +7152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!' - start" +7153,0,1153,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!' - A real battle 1" +7154,0,1152,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!'- A real battle 2" +7155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!' - complete a quest" +7156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - start" +7157,0,1264,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - A real battle 1" +7158,0,1065,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - A real battle 2" +7159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - Complete a quest" + +7160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram" +7161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd" +7162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd" +7163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd" +7164,0,2076,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt for shadow of deception" +7165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Key of deception" +7166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rachel Branch of Shadow Workshop" +7167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd" +7168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd" +7169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd" +7170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd" +7171,0,2077,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt for shadow of delusion" +7172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Key of delusion" +7173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Message to Halled from Paul" +7174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 4th" +7175,0,2078,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunft for shadow of gaiety" +7176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Key of Gaiety" +7177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A young guy in Lighthalzen" +7178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Destination of Deception, Delusion and Gaiety" +7179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vicente, you dare!" +7180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Message from Doomk" + +7181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Karakas's ring" + +// El Dicastes +7182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sapha's Visit" +7183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Invitation from Sapha" +7184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To El Dicastes!" +7185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspector Doha" +7186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Order from Doha - Investigation" +7187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Order from Doha - Shay" +7188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information Gathering - in the Plaza" +7189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information Gathering - in the Factory" +7190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information Gathering - at the Guards" +7191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shay's designation - BK" +7192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"BK's Information" +7193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dimensional Crack Investigation" +7194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What's this bloodstain?" +7195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What's this skin piece?" +7196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What's this suspicious magic power?" +7197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sapha Certifications?" +7198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Audience with Ahat" +7199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Order from Ahat" +7200,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cheshire's call" +7201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Removing traces" +7202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret order from Doha - Collect proof" +7203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret order from Doha - Final Report" +7206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Day for Cheshire" +7207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cheshire's Box" +7208,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wait for Cheshire?" +7209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Forget the box." +7210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Daily delivery" + +// Misty Forest Labyrinth +7211,9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Misty Forest Labyrinth Exploration" +7212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loki's Search" +7213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wandering Protector" + +// Paradise Gear Advanced Quests [Chilly] +7214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Training" +7215,0,1278,3,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Hunt 1" +7216,0,1278,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Hunt 2" +7217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Hunt 3" +7218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Complete" +7219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Johan Training" +7220,0,1192,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Johan Hunt 1" +7221,0,1117,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Johan Hunt 2" +7222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Johan Complete" +7223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Training" +7224,0,1619,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Hunt 1" +7225,0,1620,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Removed" +7226,0,1621,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Hunt 2 (Part A)" +7227,0,1622,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Hunt 2 (Part B)" +7228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Complete" +7229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Training" +7230,0,1776,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Hunt 1" +7231,0,1776,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Hunt 2" +7232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Complete" +7233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Training" +7234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret's Favor" +7235,0,1988,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Hunt 1" +7236,0,1995,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Hunt 2" +7237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Complete" +7238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toren's Errands (Easy)" +7239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toren's Errands (Normal)" +7240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strengthening Equipment" +7241,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toren's Errands - Tomorrow" +7242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Play with the baby cat" +7243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Duruduru Compass" +7244,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Duruduru Race" +7245,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Duruduru Race" +7246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-I'm coming now." +7247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Stop the Bang!" +//7248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +7249,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Bang! See you next time" +7250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Hidden Treasure?" +7251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The First piece of Painting" +7252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Second piece of Painting" +7253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Third piece of Painting" +7254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Fourth piece of Painting" +7255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Fifth piece of Painting" +7256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Sixth piece of Painting" +7257,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Race, Come back tomorrow!" +7258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Painting completed" +7259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gift from the Mew Bravery Team" +7260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The origin of Bugs" +7261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Table" +7262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Mattress" +7263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Grill" +7264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Chef Nyas" +7265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rage of Chef Nyas" +7266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Declaration of Chef Nyas" +7267,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Appointed time with Cleanyang" +7268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Cat's hard biscuits!" +7269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Resting Place" +7270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Sand" +7271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Bottom of the Stairs" +7272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Corner" +7273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Locker" +7274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Foothold" +7275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Sand" +7276,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Promise to deliver more food" +7281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" + +// Hall of Abyss +7349,1800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vote" + +// Port Malaya +7350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cautious Village" +7351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Better than My Old Button" +7352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sailor Wants a Button" +7353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Man Wants a Button" +7354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Young Man Wants a Button" +7355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Merchant Wants a Button" +7356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Little Kid Wants a Button" +7357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Middle-aged Guy Wants a Button" +7358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Why do they want my Buttons?" +7359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Sailor" +7360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Old Man" +7361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Young Man" +7362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Merchant" +7363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Little Kid" +7364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Middle-aged Man" +7365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Better than My Old Button-2" +7366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Spiritual Protection and Impudent Girl-1" +7367,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Spiritual Protection and Impudent Girl-2" +7368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Pedro" +7369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Nardo" +7370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Pandoi" +7371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Woeon" +7372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Talah" +7373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Romel" +7374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Love and Spiritual Protection for All" +7375,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Love and Spiritual Protection Continues" +7376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-1" +7377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-2" +7378,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-Regular Trades" +7379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Peace Preacher" +7380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Smith a Traditional Spiritual Protection" +7381,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"High Demand on Spiritual Protection Material" +7382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Pedro" +7383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Nardo" +7384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Pandoi" +7385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Woeon" +7386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Talah" +7387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Romel" +7388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Maries's Child" +7389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Give the Shirt to Maries's Child" +7390,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Worried about Maries's Child" +7391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jejeling and Jejellopy" +7392,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect Jejellopy Regularly" +7393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shiny Silver Blade" +7394,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shiny Tomorrow" +7395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ghost on the Ferry Ship" +7396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Angry Soul on Ferry Ship" +7397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mumbaki Phong's Advice" +7398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Offering Bouquet Recommended by Mumbaki" +7399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soul Diwata's Story" +7400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mumbaki of Port Malaya" +7401,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"All Aboard for Perry Sailing" +7402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bouquet for Diwata" +7403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stabilized Perry" +7404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Jejeling" +7405,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Jejeling - Same Time Tomorrow" +7406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Agree to Collecting Bones!" +7407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Purified Bone" +7408,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Agree to Come Back Tomorrow?" +7409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cannot Meet Eyes with Him!" +7410,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Teach Another Lesson Tomorrow!" + +// Eclage +7411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The traveler, Fome's story" +7412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The traveler, Litrip's story" +7413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The traveler, Chiba's story" +7414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eclage guard's message" +7415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laphine's Chief of Staff" +7416,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Waiting to meet" +7417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kardui's request" +7418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Eclage 1" +7419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Eclage 2" +7420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Eclage 3" +7421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"That's enough" +7422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kardui's gift" +7423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A rumor about the King 1" +7424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A rumor about the King 2" +7425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A rumor about the King 3" +7426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A rumor about the King 4" +7427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"At times like this, face it straight on!" +7428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Yai of the wild" +7429,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wild recent trend!" +7430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliveryman that runs through space" +7431,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A mailman never rests!" +7432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The troublemakers in the land of blooming flowers" +7433,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Need constant guidance" + +// Twins and Scholar of Magics +7434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kardui's big brother" +7435,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Time for reading the letter" +7436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Avant the Scholar of Magics" +7437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shenime's favor" +7438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret sponsorship" +7439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The scholar of magics sponsored by Shenime" +7440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Minuel's witness" +7441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mail is here!" +7442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The identity of the scholar of magics" +7443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interfere with the research!" +7444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What Avant was researching" + +// Orb +7445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Avant's back" +7446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unfruitful conversation" +7447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dilemma surrounding the Orb" +7448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Something's not right" +7449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Temptation toward the Orb" +7450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orb's lighting room" +7451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Betrayal" +7452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the chief of staff!" +7453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The last of the chief of staff" + +//7619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" + +8000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quitting Job Change" +8001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin" +8002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin" +8003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin" +8004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin" +8005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin" +8006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Guild Master!" +8007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Acceptance from the Guild Master" +8008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin" +8009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Applying for Job Change to Priest" +8010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest" +8011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest" +8012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest" +8013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest" +8014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest" +8015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest" +8016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest" +8017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tarlock's Favor" +8033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ferlock's Favor" +8034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ferlock's Favor" +8035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How the Airship Works" +8036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hallen's Favor" +8037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Dice Roller" +8038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Dice Roller" +8039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships" +8040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships" +8041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships" +8042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships" +8043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships" +8044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Euslan's Fiancee" +8045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tips from Kaci" +8046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ferlock's Passengers list" +8047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Euslan's Favor" +8048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eukran's Testimony" +8049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thierry's Favor" +8050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Danger coming on to Thierry" +8051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Euslan's Medicine" +8052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thierry's Favor" +8053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Postell" +8054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Message from Postell" +8055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nursing Allen" +8056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Little something in return" +8057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Grumbling Manainne" +8058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with El Schatt" +8059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Perfitz" +8060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stubborn El Schatt" +8061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stories of the past" +8062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kanainne" +8063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kanainne's spirit" +8064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Gemstone" +8090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mr. Manson" +8091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jenny the gardener" +8092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching the Market" +8093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Message" +8094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Double Crossed?" +8095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Phobe" +8096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Gemstone Found" +8097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Informing Jenny" +8098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Keeping the Secret" +8099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vincent's Recommendation" +8100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" +8101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" +8102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" +8103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" +8104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" +8105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" +8106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mr. Shendar's daughter" +8107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lachellen's Testimony" +8108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Foreigner, Katinshuell" +8109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's scent" +8110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's scent" +8111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lachellen's Testimony" +8112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Freya's Spring" +8113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's Diary" +8114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's Diary" +8115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Suspicious Katinshuell" +8116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lachellen's Testimony" +8117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Freya's Spring" +8118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Mr. Shendar" +8119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's Diary" +8120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Katinshuell" +8121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Katinshuell" +8122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's resting place" +8123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ayotaya's world famous dish, Tom Yum Goong" +8124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ayotaya's world famous dish, Tom Yum Goong" +8125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ayotaya's world famous dish, Tom Yum Goong" +8126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ayotaya's world famous dish, Tom Yum Goong" +8127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Momotaro Field Trip" +8128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Momotaro Field Trip" +8129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Momotaro Field Trip" +8130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Momotaro Field Trip" +8131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The mother of lord in Amatsu" +8132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The mother of lord in Amatsu" +8133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Song of the fox" +8134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Boy at the Northern Shrine" +8135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fox Expelled" +8136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Gray Wolf's Warning" +8137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Keymaker" +8138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Blacksmith's Request" +8139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Golden Key" +8140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Red Ring" +8141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mashenka's Red Ring" +8142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching the Marsh" +8143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Flute's Voice" +8144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ryubaba's Confession" +8145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Worried Mother's Request" +8146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Lusalka" +8147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lusalka's Beloved" +8148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lusalka's Beloved" +8149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Igor" +8150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Igor's message" +8151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Marozka's Cave" +8152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Golden Thread" +8153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of mind and wisdom" +8154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Keymaker" +8155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Golden Key" +8168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Koshei, the Immortal" +8169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Living and Dead Water" +8170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Living and Dead Water" +8171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Living and Dead Water" + +8181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sight Blaster" +8182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Push Back Theory" +8183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sight Blaster" +8184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Elemental Converter" +8185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Elemental Change" +8186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fire Elemental Change" +8187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Earth Elemental Change" +8188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wind Elemental Change" +8189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Water Elemental Change" +8190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Charming Wink" +8191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Charming Advisor" +8192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Selfish Advisor" +8193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Selfish Advisor" +8194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Drunken Advisor" +8195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kind Canell" +8196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Tripartite Union's Feud" +8197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Document Delivery" +8198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the United Research Official" +8199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"United Research Official's Favor" +8200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ryosen's Document Requests" +8201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Document" +8202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Document Restoration" +8203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Document Restoration" +8204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ryosen" +8205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the United Research Official" +8206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Researchers' Meeting" +8207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hansenne is not guilty." +8208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hansenne's Favor" +8209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hue's Report" +8210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the United Research Official" +8211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Order" +8217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dequ'ee's Message" +8218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's order" +8223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dequ'ee's order" +8224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The clue" +8225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dequ'ee's Reasoning" +8226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bankley's Death" +8227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Return to Shurank" +8228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prontera Market Research" +8235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collection of Red Jewel" +8242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collection of blue Jewel" +8243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Learning new languages" +8244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fairies and Tree Giants" +8245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Language sample investigation" +8246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Language sample investigation" +8247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Research progress" +8248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Research progress" +8249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Compressing Information" +8250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Storage Gem" +8251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Injection of Magic" +8252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Handworked jewels" +8253,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Language translation device" + +8254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"with a light heart and body" +8255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The test of power for existence" +8256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The test of power for existence" +8257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Providing food of Teardrop" +8258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Providing food of Teardrop" +8259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"to a place for taking a practical technique test" +8260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mission! Documents delivery" +8261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"When you play the flute,then the wolf show up!" +8262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ranger master never again" + +8265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"One time a one hour!" + +8266,0,1077,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting poison spore!" +8267,0,1056,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting smokie!" +8268,0,1033,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt elder wilow!" +8269,0,1104,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt coco!" +8270,0,1034,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt tharafrog!" +8271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toxic sprays delivery!" +8272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver a honey!" +8273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver a blanket!" +8274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect bones!" +8275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect feet!" +8276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect scell!" +8277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect tails!" +8278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect cookies!" +8279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect mustache!" + +9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Knight" +9001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loyalty of a Knight" +9002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loyalty of a Knight" +9003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Honor of a Knight" +9004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Honor of a Knight" +9005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tenacity of a Knight" +9006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tenacity of a Knight" +9007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Honor of a Knight" +9008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Etiquette as a Knight" +9009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Life as a Knight" +9010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quality of reverence" +9011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Life as a Knight" +9012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glory of a Knight!" +9013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard" +9014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard" +9015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard" +9016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard" +9017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard" +9018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Certified as a Wizard!" +9058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"O'Riley's Request" +9059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Happy St. Patrick's Day" +9117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse" +9118,0,1109,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse - Deviruchi Hunt" +9119,0,1291,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse - Wraith Dead Hunt" +9120,0,1504,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse - Dullahan Hunt" +9121,0,1379,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse - Nightmare Terror Hunt" +9122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse" +9123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse" +9024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An errand boy from Einbroch" +// kRO +//9028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"strange Mouse" +//9029,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Mouse : present conditions" +// iRO/cRO +9028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"strange Hydra" +9029,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Hydra : present conditions" +9030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find a puppy" +9031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find a puppy" +9032,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find a puppy" + +9155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting materials for the Jaty Crown" +9156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Make the Jaty Crown" +9157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reward from Sage, Kasyapa" +9158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery of Good News(1)" +9159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Paiko" +9160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery of Good News(2)" +9161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Paiko" +9162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery of Good News(3)" +9163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Paiko" +9164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery of Good News(4)" +9165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reward from Paiko for success of Jaty Crown" + +9167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tutorial - Mercenary for Hire" +9168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest Window Check" +9169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Window Shopper Catalogue" +9170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Window Shopper Catalogue" +9171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Enchanting Items" +9172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Enchanted Items" +9173,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tutorial Timer Cooldown" + +9222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bangungot from Hospital 2F" +9223,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Will there be Peace at the Hospital?" +9224,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Explore Hospital 2F" + +9225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 1" +9226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 2" +9227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 3" +9228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 4" +9229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 5" +9230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 6" +9231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 7" +9232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 8" +9233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 9" +9234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 10" +9235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 11" +9236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 12" +9237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 13" +9238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 14" +9239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 15" +9240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luen's statement notes" +9241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luen's statement notes" +9242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luen's statement notes" +9243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luen's statement notes" +9244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dames's statement notes" +9245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dames's statement notes" +9246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dames's statement notes" +9247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dames's statement notes" +9248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rosa's statement notes" +9249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rosa's statement notes" +9250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rosa's statement notes" +9251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rosa's statement notes" +9252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Observing Poppy" +9253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a messy bookshelf" +9254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a damaged book" +9255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a container for soda cans" +9256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a messed up table" +9257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a foreign object" +9258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Field examination results" +9259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Confirming Cruyan's statements" +9260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Survey investigation notes" +9262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 16" + +//9327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//9328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//9329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//9330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//9331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//9332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//9333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//9334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" + +10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the Prontera Royal Court" +10001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Qualification Test" +10002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Qualification Review" +10003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Instructions on what to do" +10004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interim Report" +10005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Eigen Ahrum" +10006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Ernst" +10007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Poe" +10008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Peter" +10009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Urugen" +10010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Helmut" +10011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Erich" +10012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation of the two princes" +10013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for the unknown girl" +10014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Peter" +10015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test 15" +10016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Guest from the Walter Family" +10017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conspiracy" +10018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Poe" +10019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Peter" +10020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Erich" +10021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Urugen" +10022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Helmut" +10023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eigen Ahrum and Ernst -Former-" +10024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eigen Ahrum and Ernst -Latter-" +10025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Good-bye, dear!" +10026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto" +10027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto" +10028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto" +10029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto" +10030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto" +10031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto" +10032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto" +10033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto" +10034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Search the knife" +10035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver the knife" +10036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-Candy" +10037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-Crap Shells" +10038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-Conch" +10039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-Fish Tail" +10040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-White Platter" +10041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-?" +10042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keys-5 remained" +10043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keys-5 remained" +10044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keys-4 remained" +10045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-4 remained" +10046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-3 remained" +10047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-3 remained" +10048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-2 remained" +10049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-2 remained" +10050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-1 remained" +10051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-1 remained" +10052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-To the piano" +10053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-Fill the empty spot" +10054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"On the Verge of the Escape-Clint Kana" +10055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Understanding the culture of Utan" +10056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Learning Utan Language" +10057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10085,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10087,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" + +10090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" + +10102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of the sphinx dungeon" +10103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of Glast heim" +10104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of Yuno" +10105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of a clock tower" +10106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of localizing " +10107,0,1164,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sphinx dungeon - Requiem" +10108,0,1140,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sphinx dungeon - Marduk" +10109,0,1154,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sphinx dungeon - Pasana" +10110,0,1260,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glast heim - Dark Frame" +10111,0,1117,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glast heim - Evil druid" +10112,0,1192,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glast heim - Wraith" +10113,0,1276,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glast Heim - Raydric Archer" +10114,0,1369,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno - Grand Peco" +10115,0,1386,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno - sleeper" +10116,0,1372,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno - Goat" +10117,0,1376,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno - Harpy" +10118,0,1269,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"clock tower - Clock" +10119,0,1199,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"clock tower - Punk" +10120,0,1195,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"clock tower - Rideword" +10121,0,1883,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Localizing - Uzhas" +10122,0,1404,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Localizing - Miyabi Doll" +10123,0,1516,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Localizing - Mi Gao" + +11000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morriphen's Request" +11010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching the medicine" +11011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Medicine for two" +11012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Makkie" +11013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red Plant Stem Powder" +11014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The researcher's medicine" +11015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Siria's cure" +11016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morriphen's story" +11017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos" +11018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos" +11019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos" +11020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos" +11021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos" +11022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos" +// iRO Event Quest +//11023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 1" +//11024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 2" +//11025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 3" +//11026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 4" +//11027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 5" +//11028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 6" +11029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead" +11039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead" +11040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead" +11041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead" +11042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead" +11043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead" +11044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Surroundings" +11085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Surroundings" +11086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Surroundings" +11087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing the Tent" +11088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing the Tent" +11089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing the Tent" +11090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing the Tent" +11091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies" +11092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies" +11093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies" +11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies" +11095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies" +11096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies" +11097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies" +11098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies" +11099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To My Friend" +11100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To My Friend" +11101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret note of Bazet" +11102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret note of Bazet" +11103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret note of Bazet" +11104,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resting time" +11105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilrion skin" + +11106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock" +11107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock" +11108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock" +11109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock" +11110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock" +11111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock" +11112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock" +11113,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Until radering is functioning" + +11114,0,1004,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Honet" +11115,0,1009,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Condor" +11116,0,1052,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Grasshopper's Leg" +11117,0,1024,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Worm tail" +11118,0,1014,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Spore" +11119,0,1048,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Pest Control" +11120,0,1055,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Muka" +11121,0,1005,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Farmiliar" +11122,0,1019,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Collect Feather" +11123,0,1077,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Collect Poison Spore" +11124,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Honet - Complete" +11125,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Condor - Complete" +11126,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Grasshopper's Leg - Complete" +11127,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Worm Tail - Complete" +11128,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Spore - Complete" +11129,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Pest Control - Complete" +11130,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Muka - Complete" +11131,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Farmiliar - Complete" +11132,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Collect Feather - Complete" +11133,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Collect Poison Spore - Complete" + +11135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song" +11136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song" +11137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song" +11138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song" +11139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song" +11140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The sky, plane and travel sickness." +11141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Human & gossip is towarding to the bar" +11142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fearful metalic sound" +11143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos tower" +11144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno manager : click" +11145,0,1622,33,0,0,0,0,0,0,0,0,0,0,0,0,0,"I want to get the " +11146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"to ice tunnel..." +11147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lared's dew" +11148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toward Comodo with the bow" +11149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Just pour the water. Pour! Pour!..." +11150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song" +11151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song" +11152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"to the quiet place!..." +11153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing watch top" +11154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I will remember the memories with you...." +11155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"undefinable battler" +11156,0,1106,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"annoying homework" +11157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helmes valley " +11158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"On the way for meditation" + +11159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Brian" +11160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of John" +11161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Tyler" +11162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Rose" +11163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Bain" +11164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Lash" +11165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Brian" +11166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to John" +11167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Tyler" +11168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Rose" +11169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Bain" +11170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Lash" +11171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request from Frede" +11172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request from Frede" +11173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request from Frede" +11174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Supply Shortage" +11175,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Supply Shortage" +11176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For my friends" + +// Mora +11182,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Theore's Report" +11183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Theore's Favor" +11184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Runaway Laphine" +11185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch" +11186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch" +11187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch" +11188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch" +11189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Roast Beef" +11190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Roast Beef" +11191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shortage of Roast Beef" +11192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Village..." +11193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sonya's Friend" +11194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Runaway Laphine" +11195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch" +11196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch" +11197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch" +11198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Village..." +11199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Theo's Friend" +11200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch" +11201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Roast Beef" +11202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Roast Beef" +11203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shortage of Roast Beef" +11206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quick Delivery Yoneseu" +11207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Very Heavy Burden" +11208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Daphne" + +// Malangdo +11209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hardships of Thomas" +11210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Fruits" +11239,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Fruits" +11240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11243,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soft Jelly" +11245,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soft Jelly" + +11284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-1" +11285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-2" +11286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-3" +11287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-4" +11288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-5" +11289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-6" +11290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-7" +11291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-8" +11292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-9" +11293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-10" +11294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-11" +11295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-12" +11296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-13" +11297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-14" +11298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-15" +11299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-16" +11300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-17" +11301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-18" +11302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-19" +11303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-20" +11304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-21" +11305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-22" +11306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-23" +11307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-24" +11308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-25" +11309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-26" + +11310,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eclage's Entrance" +11311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eclage's Entrance" +11312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Goliath" +11313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Goliath" +11314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Goliath" +11315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg" +11326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg" +11327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg" +11328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg" +11329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg" +11330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg" +11331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg" +11332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg" +11333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red seed and green seed" +11334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red seed and green seed" +11335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dreaming boy" +11336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dreaming boy" +11337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dreaming boy" + +//11366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +11378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Trick or treat" // Halloween Event 2013 + +12000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An old friend" +12001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Digotz, Maku's old friend" +12002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger of Friendship" +12003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Digotz's message" +12004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Maku's other friend" +12005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein" +12006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein's lost item" +12007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kazien" +12008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Researcher Garins" +12009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Failed mission" +12010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"No entrance" +12011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lyozien" +12012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet Mr. Ahman" +12013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery complete" +12014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"More missions" +12015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ghalstein" +12016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sneaking into the Laboratory" +12017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Membership approved" +12018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meeting the President" +12019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The President's Mission" +12020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rescuing a Secret Wing Member" +12021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sealed File Folder" +12022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sealed File Folder" +12023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shinokas the researcher" +12024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kafra Corporation Agent" +12025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rekenber's Secret Archive" +12026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rekenber's Secret Archive" +12027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rekenber's Secret Archive" +12028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kurelle the traitor" +12029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lost Engagement Ring" +12030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Engagement Ring Found" +12031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Annon" +12032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Annon" +12033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traces of blood" +12034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Annon's side of the story" +12035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Holy Threads" +12036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Stone Slate Message" +12037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Holier Threads" +12038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for the Sa-mhing Tiger" +12039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Boonthom's Comrade" +12040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein's Journal" +12041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein's Journal" +12042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein's Journal" +12043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pass to the Slums" +12044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 1" +12045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 2" +12046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 3" +12047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 4" +12048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 5" +12049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 1 - Rogue" +12050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 2 - Rogue" +12051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 3 - Rogue" +12052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 4 - Rogue" +12053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 5 - Rogue" +12054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 6 - Rogue" +12055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest - Assassin" +12056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest - Assassin" +12057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pass to the Lab" +12058,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Admission Restricted to the 102 Tower" +12059,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orc's Memory Time Limit" +12060,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Today's Fishing Closed" +12061,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Concentration" +12062,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Today's Mining Closed" +12070,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Limited time for enter" +12071,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stamp a seal on the attendance book" +12072,0,1034,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt tharafrog" +12073,0,1248,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Cruiser" +12074,0,1070,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Kukre" +12075,0,1686,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove orcbaby" +12076,0,1023,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove orcwarroir" +12077,0,1066,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt vadon" +12078,0,1064,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Megalodon" +12079,0,1144,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Marse" +12080,0,1067,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Cornutus" +12081,0,1151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Myst" +12082,0,1074,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt shellfish" +12083,0,1142,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Marine sphere" +12084,0,1158,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Phen" +12085,0,1152,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove orcskeleton" +12086,0,1177,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Zenorc" +12087,0,1041,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove mummy" +12088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Accomplishing a request" + +12090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious guy" +12091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Just save the burning heart" +12092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Long lasting story" +12093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"the record the intelligence Lyoda left" +12094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The damaged shield letter" +12096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Towards Karakas" +12097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Basic preparation" +12098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tour of dungeon" +12099,0,2014,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Root Cause" +12100,0,1994,12,0,0,0,0,0,0,0,0,0,0,0,0,0,"Violent Winged Insect" +12101,0,2013,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Work Interference" +12102,0,1993,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Intelligent Snakes" +12103,0,1992,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Legendary Creature" +12104,0,1987,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Insects with an Appetite" +12105,0,2024,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Moving Rocks" +12106,0,1995,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"A child on a flower" +12107,0,2015,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Twisted Love" +12108,0,1988,12,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dangerous Plant Removal" +12109,0,1999,14,0,0,0,0,0,0,0,0,0,0,0,0,0,"Larva Extermination" +12110,0,2016,7,0,0,0,0,0,0,0,0,0,0,0,0,0,"Demon of Water" +12111,0,1986,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bird with ugly face" +12117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Withered Flower" +12118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Welcomed Mineral" +12119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Valuable Textile" +12120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Curious Meat" +12121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Materials to Clear Snow" +12122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Best Cooler Material" +12123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Best Paint" +12124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rare Valuable" +12125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Armory Material" +12126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Advanced Armory Material" +12127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Supervisor's Tool" +12128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Preparation for Heating" +12129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Suspicious Food" +12130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Useful Material" +12131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Essential Material for Construction" +12132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Essential Material for Construction 2" +12133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Decoration arrangement" +12134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Instant Receptacle" +12135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Not enough medicine" +12136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Honey robber" +12137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tools for Experiment" +12138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fine Gift Samples" +12139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Respect for Taste!" +12140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Courtesy for Regulars" +12141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special Package" +12142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dangerous Request" +12143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Trend" +12144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unknown Usage" +12145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Other World Cuisine" +12146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Filling in Cracks" +12147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Adhesive Material" +12148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bait for Tatacho Hunting" +12149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Swordmanship Practice" +12150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pretty reddish vegetable" +12151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tenacity of the pub owner" +12152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tastes like home cooking" +12153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hazardous plant when burnt" +12154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unexpectedly Normal" +12155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gift with heart" +12156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Respect personal appetite!" +12157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resolution of the pub owner" +12158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rage of the pub owner" +12159,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Laponte" +12160,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Kalipo" +12161,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Pura" +12162,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Tragis" +12163,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Calyon" +12164,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Moltuka" +12165,21600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dizziness" +12166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tree Root Doc." +12167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reptile Tongue Doc." +12168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scorpion Tail Doc." +12169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stem Doc." +12170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pointed Scale Doc." +12171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resin Doc." +12172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spawn Doc." +12173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jellopy Doc." +12174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fish Tail Doc." +12175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Worm Peeling Doc." +12176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gill Doc." +12177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tooth of Bat Doc." +12178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fluff Doc." +12179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Chrysalis Doc." +12180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Feather of Birds Doc." +12181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Talon Document Doc." +12182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sticky Webfoot Doc." +12183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Animal Skin Doc." +12184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wolf Claw Doc." +12185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mushroom Spore Doc." +12186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orc's Fang Doc." +12187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Evil Horn Doc." +12188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Powder of Butterfly Doc." +12189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bill of Birds Doc." +12190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snake Scale Doc." +12191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Insect Feeler Doc." +12192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Immortal Heart Doc." +12193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rotten Bandage Doc." +12194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Decayed Nail Doc." +12195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Horrendous Mouth Doc." +12196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tentacle Doc." +12197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shell Doc." +12198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scale Shell Doc." +12199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Venom Canine Doc." +12200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sticky Mucus Doc." +12201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bee Sting Doc." +12202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Grasshopper's Leg Doc." +12203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Royal Jelly Doc." +12204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Yoyo Tail Doc." +12205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solid Shell Doc." +12206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Yam Doc." +12207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Raccoon Leaf Doc." +12208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snail's Shell Doc." +12209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Horn Doc." +12210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bear's Footskin Doc." +12211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Feather Doc." +12212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red Herb Doc." +12213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Carrot Doc." +12214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cactus Needle Doc." +12215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stone Heart Doc." +12216,21600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouty Jahbong" +12217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Traces of wild boar hunt" +12218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to make lava elixir" +12219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to creat flame elixir" +12220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to create glaicer elixir" +12221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to create fossil elixir" +12222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to create storm elixir" + +// Mora Coin Daily Quests +12225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pom Spider Hunting" +12226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Angra Mantis Hunting" +12227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Parus Hunting" +12228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Little Fatam Hunting" +12229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Miming Hunting" +12230,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Monster Hunt" +12231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Insect Feeler Collecting" +12232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Immortal Heart Collecting" +12233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rotten Bandage Collecting" +12234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orcish Voucher Collecting" +12235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Skeleton Bone Collecting" +12236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memento Collecting" +12237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shell Collecting" +12238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scale Shell Collecting" +12239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Venom Canine Collecting" +12240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sticky Mucus Collecting" +12241,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Item Request 1" +12242,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Item Request 2" + +// Missing Person Quests +12243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Tajareu" +12244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Tokenizer" +12245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Mesile" +12246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Noir" +12247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Pajama God" +12248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Mendel" +12249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Miles" +12250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Kunmune" +12251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Chayihokin" +12252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Tuale" +12253,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Person Search Time Limit" + +// Malangdo Culverts +12254,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Now it's cleaning" +12255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea crab" +12256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea squid" +12257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Ancient crustacean" +12258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea shell" +12259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt ancient kukre" +12260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea conch" +12261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea horse" +12262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt ancient sword fish" +12263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt ancient sea god" +12264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt mutation anolian" +12265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea mermaid" +12266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt transformable kapha" +12267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt weird coelacanth" +12268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt dark coelacanth" +12269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Cruel coelacanth" +12270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt mutation coelacanth" +12271,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In progress general culvert single day service" +12272,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In progress hard culvert single day service" +12273,579600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In progress general culvert weekly service" +12274,579600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In progress hard culvert weekly service" + +12278,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Towards Bakonawa Lake..." +12279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" + +12280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A suspicious prisoner" +12281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An unwanted favor" +12282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gossip king Clever" +12283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The rift researcher" +12284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A cat merchant's source of information" +12285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A way to calm down a cat" +12286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information traded for some canned foods" +12287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A weird experience" +12288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A successful experience" +12289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Another visitation" +12290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clever's historical documents" +12291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hidden historical documents (?)" +12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The unknown ones" +12293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Figures in history" +12294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tour of Eclage" +12295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Error" +12296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fun times with the reactor" +12297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Encountering Etran" +12298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Two wishes" +12299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revisiting Robert" +12300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revisiting Etran" +12301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Two remaining friends" + +// Old Glast Heim +12317,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fake Keyblade" +12318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Upper Cats: annoying guy" +12319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Upper Cats: annoying guy" + +12363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"?????? ?? ??" + +13000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"RWC2011Card Gathering" +13001,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"RWC2011Card Gathering - Hold" + +// eden 100-110 +13002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brigan collecting" +13003,0,1267,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Carat Request" +13004,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Carat Request timer" +13005,0,1194,22,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arclouse Request" +13006,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arclouse Request timer" +13007,0,1206,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anolian Request" +13008,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anolian Request timer" +13009,0,1207,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sting Request" +13010,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sting Request timer" +13011,0,1310,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Majoruros Request" +13012,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Majoruros Request timer" +13013,0,1995,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pinguicula Request" +13014,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pinguicula Request timer" +13015,0,1994,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luciola Vespa Request" +13016,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luciola Vespa Request timer" +13017,0,1106,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Desert Wolf Request" +13018,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Desert Wolf Request timer" +13019,0,1775,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snowier Request" +13020,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snowier Request timer" +13021,0,1777,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ice Titan Request" +13022,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ice Titan Request Timer" +13023,0,1379,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nightmare Terror Request" +13024,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nightmare Terror Request Timer" +13025,0,1384,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flying Deleter Request" +13026,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deleter Request Timer" +13040,0,1505,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loli Ruri Request" +13041,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loli Ruri Request Timer" +13042,0,1148,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Medusa Request" +13043,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Medusa Request Timer" +13044,0,1098,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anubis Request" +13045,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anubis Request Timer" +13046,0,1991,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilion Request" +13047,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilion Request Timer" +13048,0,1991,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilion Request" +13049,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilion Request Timer" + +13050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Laphine that loves the land" +13051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The singing Laphine" +13052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The watering Laphine" +13053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The dancing Laphine" +13054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The smiling Laphine" +13055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"See if all the adventurers are safe" +13056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reporter Rossi" +13057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Adventurer Euncheong" +13058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Troublemaker New Oz" +13059,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"End of project" +13060,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Safety confirmation complete!" +13061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Food support" +13062,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Food support - complete" +13063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dusting off" +13064,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dusting off - complete" +13065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting a souvenir" +13066,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"This is enough for souvenirs" + +// eden 111-120 +13067,0,1163,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Raydric research" +13068,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Raydric research - timer" +13069,0,1132,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Khalitzburg research" +13070,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Khalitzburg research - timer" +13071,0,1208,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wander Man research" +13072,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wander Man research - timer" +13073,0,1699,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Mimic research" +13074,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Mimic research - timer" +13075,0,1698,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Death Word research" +13076,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Death Word research - timer" +13077,0,1295,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Owl Baron research" +13078,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Owl Baron research - timer" +13079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bloody Page Research" +13080,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bloody Page Research - Wait" +13081,0,2015,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dark Pinguicula research" +13082,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dark Pinguicula research - timer" +13083,0,1988,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nepenthes research" +13084,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nepenthes research - timer" +13085,0,1993,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Naga research" +13086,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Naga research - timer" +13087,0,1999,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Centipede Larva research" +13088,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Centipede Larva research - timer" +13089,0,1992,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cornus research" +13090,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cornus research - timer" +13091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystic Horn Research" +13092,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystic Horn Research - Wait" +13093,0,1297,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Mummy research" +13094,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Mummy research - timer" +13095,0,1374,10,1370,10,1390,10,0,0,0,0,0,0,0,0,0,"Geffenia expedition" +13096,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffenia expedition - Wait" +13097,0,1677,30,1678,30,1679,30,0,0,0,0,0,0,0,0,0,"Juperos expedition" +13098,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juperos expedition - Wait" +13099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fragments and Rusty Screw" +13100,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fragments and Rusty Screw - Wait" + +// eden 121-130 +13107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower Search" +13108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rachel holy ground Search" +13109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unknown island Search" +13110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake Search" +13111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower Search - Reporting results" +13112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rachel holy ground Search - Reporting results" +13113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nameless Island Search - Reporting results" +13114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake Search - Reporting results" +13115,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower Search - Wait" +13116,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rachel holy ground Search - Wait" +13117,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unknown island Search - Wait" +13118,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake Search - Wait" +13119,0,1702,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Baroness of Retribution" +13120,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Baroness of Retribution - Wait" +13121,0,1703,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Lady Solace" +13122,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Lady Solace - Wait" +13123,0,1701,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Mistress of Shelter" +13124,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Mistress of Shelter - Wait" +13125,0,1700,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Dame of Sentinel" +13126,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Dame of Sentinel - Wait" +13127,0,1771,20,1772,20,0,0,0,0,0,0,0,0,0,0,0,"Combat Vanberk and Isilla" +13128,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Vanberk and Isilla - Wait" +13129,0,1773,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Hodremlin" +13130,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Hodremlin - Wait" +13131,0,1769,20,1770,20,0,0,0,0,0,0,0,0,0,0,0,"Combat Agav and Echio" +13132,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Agav and Echio - Wait" +13133,0,1865,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Ragged Zombie" +13134,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Ragged Zombie - Wait" +13135,0,1864,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Zombie Slaughter" +13136,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Zombie Slaughter - Wait" +13137,0,1867,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Banshee" +13138,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Banshee - Wait" +13139,0,1714,30,1717,30,0,0,0,0,0,0,0,0,0,0,0,"Combat Ferus and Bewler" +13140,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Ferus and Bewler - Wait" +13141,0,1713,30,1716,30,0,0,0,0,0,0,0,0,0,0,0,"Combat Acidus" +13142,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Acidus - Wait" + +// eden 131-140 +13143,0,1652,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Egnigem Story" +13144,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Egnigem Story - Wait" +13145,0,1654,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Armeyer Story" +13146,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Armeyer Story - Wait" +13147,0,1653,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whikebain Story" +13148,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whikebain Story - Wait" +13149,0,1656,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kavach Story" +13150,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kavach Story - Wait" +13151,0,1655,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Errende Story" +13152,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Errende Story - Wait" +13153,0,1657,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laurell Story" +13154,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laurell Story - Wait" +13155,0,1918,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story1" +13156,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story1 - Wait" +13157,0,1919,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story2" +13158,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story2 - Wait" +13159,0,1921,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story3" +13160,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story3 - Wait" +13161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Uni-horn Scaraba Story" +13162,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Uni-horn Scaraba Story - Wait" +13163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Horn Scaraba Story" +13164,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Horn Scaraba Story - Wait" +13165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Antler Scaraba Story" +13166,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Antler Scaraba Story - Wait" +13167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rake horn Scaraba Story" +13168,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rake horn Scaraba Story - Wait" + +14118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wuhari's concern" +14119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of patience" +14120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of patience 2" +14121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of patience 3" +14122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Time for two" +14123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wuharu's favor" +14125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Surveying the area" +14126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Ms. Goatie" +14127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Ms. Goatie's husband" +14128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Obtaining the research report" +14131,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Analysis time" +14133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Another favor" +14134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sharp Ms. Goatie" +14135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Mr. Pompe" +14136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A terrible scene in the field" +14137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An interesting proposition" +14138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The big corpse" +14139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Wuhuru" +14140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Wuhari" +14141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ingredients for research" + +//14254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" + +// 2013 Christmas Event +15055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : We are the great Single Union Army!" +15056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Declare war against couples!" +15057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Prepare the festival!" +15059,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Cooldown Timer" +15060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Kwami has joined" +15061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Willer has joined" +15062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Rinka has joined" +15063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Jee has joined" +15064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Marty has joined" + +16000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Metz Brayde's Notice" +16001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"First examination" +16002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -1" +16003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -2" +16004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -3" +16005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -4" +16006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -5" +16007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -6" +16008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quiz time!" +16009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quiz time!" +16010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Daewoon's Test" +16011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Jore's Test" +16012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Jore's Materials" +16013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Stone of Sage" +16014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Stone of Sage" +16015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lady Jesqurienne" +16016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jesquerinne's Quiz Challenge" +16017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Failed Quiz Challenge" +16018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quiz Challenge Triumph" +16019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Search for Dearles" +16020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dearles' Test" +16021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of Appreciation" +16022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dearles' Test Part Two" +16023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rhythm Test Passed" +16024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Bakerlan" +16025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bakerlan's delivery" +16026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mahatra's delivery" +16027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bakerlan's Receipt" +16028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Seylin" +16029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigorgra Medicine" +16030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigorgra Ingredients" +16031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigorgra Ingredients" +16032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Seylin's Request" +16033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Seylin" +16034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Mahatra" +16035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Bakerlan" +16036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The last Crumb" +16037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Engel Howard" +16038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Liana's Letter" +16039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combining the Starlight" +16040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Letter to Engel's Family" +16041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Talk to Liana" +16042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sobbing Starlight Progress" +16043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restored Sobbing Starlight" +16044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combining the Starlight" +16045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Starlight message" +16046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The man in Umbala" +16047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Into the Tree" +16048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Papers" +16049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Record of Ancient Language" +16050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Fastidious Old Man" +16051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Blurry Vision" +16052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Translating the Document" +16053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Translated Ancient Language" +16054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Where the rejected live" +16055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Misfortunate of Niflheim" +16056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Removed Curse" +16057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meeting the witch" +16058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wing Of Crow" +16059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wing Of Crow" +16060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Misfortunate of Niflheim" +16061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bard in Niflheim" +16062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gen of Niflheim" +16063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Witch's Aid" +16064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Misfortunate of Niflheim" +16065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Queen's Symbol" +16066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Knowledge of the Symbol" +16067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Knowledge of Asgard" +16068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces" +16069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces" +16070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces" +16071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces" +16072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces" +16073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Agrboda's Soul" +16074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Symbol of the Nine Realms" +16075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Serin's Ambitions" +16076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Witch's Tonic" +16077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Serin's Release" +16078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Visit with Lady Hell" +16079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sign" +16080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dark Lord's return" +16081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Serin's Ambitions" +16082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dark Lord's return" +16083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Serin's Realization" +16084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sign" +16085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sign" +16086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sign" +16087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sign" +16101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious World Map" +16118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hidden poem" +16119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snake swords" +16120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A dream?" +16121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Code?" +16122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Copper Key" +16123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Green Keycard" +16124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Steel Box" +16125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Limberg's Request" +16201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"TPS Report" +16202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"TPS Report" +16203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"TPS Report" +16204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Crack in the Wall" +16205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Empty Lava Tube" +17000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet with Father Bamph" +17001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet with Larjes" +17002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Father Bamph" +17003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Travel to Rachel" +17004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Travel to Veins" +17005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Frustrated Magistrate" +17006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interrogated Smugglers" +17007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Written Orders" +17008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigating" +17009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"More Investigating" +17010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Further Investigations" +17011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kurdi's Father" +17012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Karyn's Boat" +17013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the Island" +17014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigating the Island" +17015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Research Note" +17016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Regicide" +17017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reporting the King's Death" + +18001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery for Rooney" +18002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery for Rooney" +18003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery for Rooney" +18004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lasda's Request" +18005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jesse's Request" +18006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Krieg's Approval" +18007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Krieg's Trust" +18008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Krieg's Trust" +18009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Into the prison" +18010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jail Break" +18011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work" +18012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work" +18013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work" +18014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work" +18015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work" +18016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work" +18017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jail Break" +18018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jail Break" +18019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre's Songs" +18020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre's Songs" +18021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre's Songs" +18022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre's Songs" +18023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre the Spy" +18030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing boy Mikhail" +18061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mikhail's Whereabouts" +18062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing boy Mikhail" +18063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The isolated swamp" +18064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to the Village" +18065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"High-strength Adhesive" +18066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to the swamp" +18067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Make the paste" +18068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fixing the Matrushka" +18069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Gallina" +18070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Banishing Winter" +18071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Making the magic dust" +18072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Making the magic dust" +18073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Dragon's Lair" +18074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Magic Gourd Bottle" +18075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Containing People's Speech" +18076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Containing People's Speech" +18077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Csar's Request" +18078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Secret Medicine" +18079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Winter is Banished" +18100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Legends from Moscovia" +18101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Moving Island" +18102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In Search of The Moving Island" +18103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In Search of The Moving Island" +18104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mr. Ibanoff's New Friend" +18105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing Charabel" +18106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"As the Tide Turns" +18107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Departing" +18108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Moving Island?" +18109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Moving Island???" +18110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Aged Stranger" +18111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whale Island!" +18112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Story for the Csar" +18113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Evidence for the Csar" +18114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Before Sunset" +18115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Departing" +18116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whale Island!" +18117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Materials for Evidence" +18118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Musical Instrument" +18119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gusli" +18120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gusli" +18121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shafka" +19101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" + +50000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pirate Dagger materials" +50001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Weather Beaten Old Man" +50002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lost Treasure?" +50003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lost Treasure?" +50004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure" +50005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure" +50006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure" +50007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure" +50008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure" +50009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure" +50010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A special lock pick" +50011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The special lock pick" +50012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Use the lock pick" +50013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Broken lock pick" +50015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box" +50016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box" +50017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box" +50018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box" +50019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box" +50020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box" +50021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"J Roger" +50022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"J Roger's key materials" +50023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with J Roger" +50024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bury the treasure" +50025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bury the treasure" +50026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bury the treasure" +50027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Buried treasure" +50028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen treasure!" +50029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Pirate's Spirit!" + +//60000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"60000" +60001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination" +60002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination" +60003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination" +60004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination" +60005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination" +60006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination" +60007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Endless Tower Effect" +60008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Endless Tower Time Limit" +60009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orc Hero" +60010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Derik Ver's Request" +60011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Byalan" +60012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Abyss" +60013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Investigation" +60014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation" +60015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation" +60016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation" +60017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation" +60018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation" +60019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation" +60020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation" +60021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation" +60022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation" +60023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation" +60024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation" +60025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation" +60026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Continuing the Investigation" +60027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigating Aldebaran" +60028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Investigation" +60029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Aldebaran Monster Investigation" +60030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" +60031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" +60032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lutie Field Monster Investigation" +60033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" +60034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" +60035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Aldebaran Monster Investigation" +60036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" +60037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" +60038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Aldebaran Monster Investigation" +60039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim" +60040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim" +60041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Investigation" +60042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim" +60043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim" +60046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim" +60049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim" +60052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim" +60055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Derik Ver's Brother" +60059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A history lesson" +60060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crown of Deceit" +60061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A magic solvent" +60062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rendering the crown Inert" +60101,0,1019,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Peco Pecos" +60102,0,1019,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Peco Pecos" +60103,0,1019,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Peco Pecos" +60104,0,1127,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Hodes" +60105,0,1127,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Hodes" +60106,0,1127,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Hodes" +60107,0,1007,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Fabres" +60108,0,1007,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Fabres" +60109,0,1007,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Fabres" +60110,0,1008,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Pupa" +60111,0,1008,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Pupa" +60112,0,1008,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Pupa" +60113,0,1104,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Cocos" +60114,0,1104,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Cocos" +60115,0,1104,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Cocos" +60116,0,1103,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Caramels" +60117,0,1103,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Caramels" +60118,0,1103,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Caramels" +60119,0,1271,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Alligators" +60120,0,1271,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Alligators" +60121,0,1271,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Alligators" +60122,0,1018,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Creamys" +60123,0,1018,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Creamys" +60124,0,1018,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Creamys" +60125,0,1378,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Demon Pungus" +60126,0,1378,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Demon Pungus" +60127,0,1378,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Demon Pungus" +60128,0,1110,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dokebi" +60129,0,1110,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dokebi" +60130,0,1110,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dokebi" +60131,0,1493,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dryads" +60132,0,1493,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dryads" +60133,0,1493,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dryads" +60134,0,1119,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Frilldora" +60135,0,1119,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Frilldora" +60136,0,1119,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Frilldora" +60137,0,1372,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Goats" +60138,0,1372,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Goats" +60139,0,1372,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Goats" +60140,0,1040,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Golems" +60141,0,1040,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Golems" +60142,0,1040,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Golems" +60143,0,1586,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Leaf Cats" +60144,0,1586,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Leaf Cats" +60145,0,1586,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Leaf Cats" +60146,0,1076,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Skeletons" +60147,0,1076,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Skeletons" +60148,0,1076,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Skeletons" +60149,0,1026,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Munaks" +60150,0,1026,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Munaks" +60151,0,1026,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Munaks" +60152,0,1170,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Sohees" +60153,0,1170,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Sohees" +60154,0,1170,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Sohees" +60155,0,1403,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Firelock Soldiers" +60156,0,1403,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Firelock Soldiers" +60157,0,1403,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Firelock Soldiers" +60158,0,1405,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Tengus" +60159,0,1405,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Tengus" +60160,0,1405,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Tengus" +60161,0,1675,25,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Venatu" +60162,0,1675,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Venatu" +60163,0,1675,75,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Venatu" +60164,0,1668,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Archdam" +60165,0,1668,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Archdam" +60166,0,1668,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Archdam" +60167,0,1776,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Siromas" +60168,0,1776,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Siromas" +60169,0,1776,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Siroma" +60170,0,1777,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Ice Titans" +60171,0,1777,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Ice Titans" +60172,0,1777,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Ice Titans" +60173,0,1506,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Disguises" +60174,0,1506,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Disguises" +60175,0,1506,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Disguises" +60176,0,1505,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Loli Ruri" +60177,0,1505,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Loli Ruri" +60178,0,1505,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Loli Ruri" +60179,0,1139,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Mantis" +60180,0,1139,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Mantis" +60181,0,1139,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Mantis" +60182,0,1514,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dancing Dragons" +60183,0,1514,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dancing Dragons" +60184,0,1514,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dancing Dragons" +60185,0,1870,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Necromancers" +60186,0,1870,40,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Necromancers" +60187,0,1870,60,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Necromancers" +60188,0,1365,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Apocalypse" +60189,0,1365,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Apocalypse" +60190,0,1365,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Apocalypse" + +60200,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Endless Tower Effect" +60201,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Endless Tower Time Limit" +60301,0,1155,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60302,0,1155,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60303,0,1714,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60304,0,1714,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60305,0,1717,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60306,0,1717,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60307,0,1713,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60308,0,1713,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60309,0,1716,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60310,0,1716,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" + +// iRO expanded upon the log entries of this quest. +60351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost" +60352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost" +60353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost" +60354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost" +60355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost" + +62238,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Midgardian Mercenary timer" diff --git a/db/pre-re/skill_cast_db.txt b/db/pre-re/skill_cast_db.txt index 7cf18d43ed..aa1705e699 100644 --- a/db/pre-re/skill_cast_db.txt +++ b/db/pre-re/skill_cast_db.txt @@ -1117,7 +1117,7 @@ //-- GC_POISONINGWEAPON 2027,0,1000,0,60000:120000:180000:240000:300000,300000,0 //-- GC_WEAPONBLOCKING -2028,0,2000,0,180000,0,0 +2028,0,2000,0,180000,2000,0 //-- GC_COUNTERSLASH 2029,0,2000,0,0,0,0 //-- GC_WEAPONCRUSH @@ -1368,7 +1368,7 @@ 2304,1000,0,0,500,1500,5000 //-- SC_ESCAPE -5010,0,0,0,1000,0,15000 +5010,0,500,0,50000,20000,10000:8000:6000:4000:2000 //========================================== //==== Royal Guard skills ================== @@ -1386,7 +1386,7 @@ 2313,0,1000,0,300000,0,0 //-- LG_RAGEBURST 2314,0,3000,0,0,0,0 -//-- LG_SHIELDSPELL //TODO apply proper duration [malufett] +//-- LG_SHIELDSPELL 2315,1000,1000,0,3000:30000:30000,0,2000 //-- LG_EXEEDBREAK 2316,5000:5500:6000:6500:7000,1000,0,300000,0,0 @@ -1470,7 +1470,7 @@ //==== Minstresl skills ==================== //-- MI_RUSH_WINDMILL -2381,0,2000,0,60000,0,0 +2381,1000,2000,0,60000,0,0 //-- MI_ECHOSONG 2382,1000,2000,0,60000,0,0 //-- MI_HARMONIZE @@ -1575,9 +1575,6 @@ 2467,1000,0,0,60000,0,60000 //-- SO_EARTH_INSIGNIA 2468,1000,0,0,60000,0,60000 - -//-- SO_ELEMENTAL_SHIELD -5008,1000,0,0,10000,0,10000 //========================================== //==== Genetic skills ====================== diff --git a/db/pre-re/skill_db.txt b/db/pre-re/skill_db.txt index a866d93771..aab0b9c991 100644 --- a/db/pre-re/skill_db.txt +++ b/db/pre-re/skill_db.txt @@ -41,6 +41,7 @@ // 0x08000 - skill that ignore bg reduction // 0x10000 - skill that ignore gvg reduction // 0x20000 - makes 'self'/'place' skill cannot be casted/placed when near NPC (see 'db/skill_nonearnpc_db.txt' for more options) +// 0x40000 - skill that can hit trap-type skill (inf2 has 0x00080) // 13 maxcount: max amount of skill instances to place on the ground when // player_land_skill_limit/monster_land_skill_limit is enabled. For skills // that attack using a path, this is the path length to be used. @@ -76,7 +77,7 @@ 4,0,0,0,0,0,0,10,0,no,0,0,0,none,0,0x0, SM_RECOVERY,Increase HP Recovery 5,-1,6,1,-1,0,0,10,1,no,0,0,0,weapon,0,0x0, SM_BASH,Bash 6,9,6,1,0,1,0,10,1,no,0,0,0,none,0,0x0, SM_PROVOKE,Provoke -7,0,6,4,3,0x2,2,10,1,no,0,0,0,weapon,2,0x0, SM_MAGNUM,Magnum Break +7,0,6,4,3,0x2,2,10,1,no,0,0x40000,0,weapon,2,0x0, SM_MAGNUM,Magnum Break 8,0,6,4,0,0x1,0,10,1,no,0,0,0,weapon,0,0x0, SM_ENDURE,Endure //**** @@ -128,7 +129,7 @@ 44,0,0,0,0,0,0,10,0,no,0,0,0,none,0,0x0, AC_VULTURE,Vulture's Eye 45,0,6,4,0,0x3,3,10,1,no,0,0,0,weapon,0,0x0, AC_CONCENTRATION,Improve Concentration 46,-9,8,1,-1,0,0,10,2,no,0,0,0,weapon,0,0x80, AC_DOUBLE,Double Strafe -47,-9,6,2,-1,0x2,2,10,1,no,0,0x0,0,weapon,2,0x81, AC_SHOWER,Arrow Shower +47,-9,6,2,-1,0x2,2,10,1,no,0,0x40000,0,weapon,2,0x81, AC_SHOWER,Arrow Shower //**** // Thief @@ -175,7 +176,7 @@ //**** // Wizard 80,9,8,2,3,0x20,1:1:1:1:1:2:2:2:2:2:2,10,-3:-4:-5:-6:-7:-8:-9:-10:-11:-12:-12,yes,0,0x2080,5,magic,0,0x0, WZ_FIREPILLAR,Fire Pillar -81,0,6,4,3,0,7,10,1,yes,0,0x2000,0,magic,5,0x20, WZ_SIGHTRASHER,Sightrasher +81,0,6,4,3,0x2,7,10,1,yes,0,0x42000,0,magic,5,0x20, WZ_SIGHTRASHER,Sightrasher 83,9,8,2,3,0,3:3:3:3:3:3:3:3:3:3:14,10,1:1:2:2:3:3:4:4:5:5:15,yes,0,0x2000,0,magic,0,0x20, WZ_METEOR,Meteor Storm 84,9,8,1,4,0,0,10,3:4:5:6:7:8:9:10:11:12,yes,0,0x2000,0,magic,2:3:3:4:4:5:5:6:6:7,0x20, WZ_JUPITEL,Jupitel Thunder 85,9,8,2,4,0,0,10,-10,yes,0,0x2000,0,magic,0,0x20, WZ_VERMILION,Lord of Vermilion @@ -217,13 +218,13 @@ 115,3,6,2,0,0x1,0,5,1,no,0,0x80,0,misc,6:7:8:9:10,0x3000, HT_SKIDTRAP,Skid Trap 116,3,6,2,2,0x42,0,5,1,no,0,0x80,0,misc,0,0x3800, HT_LANDMINE,Land Mine 117,3,6,2,0,0x1,0,5,1,no,0,0x80,0,misc,0,0x3000, HT_ANKLESNARE,Ankle Snare -118,3,6,2,0,0x2,1,5,1,no,0,0x80,0,misc,0,0x3000, HT_SHOCKWAVE,Shockwave Trap +118,3,6,2,0,0x3,1,5,1,no,0,0x80,0,misc,0,0x3000, HT_SHOCKWAVE,Shockwave Trap 119,3,6,2,0,0x3,2,5,1,no,0,0x80,0,misc,0,0x3000, HT_SANDMAN,Sandman 120,3,6,2,0,0x3,1,5,1,no,0,0x80,0,misc,0,0x3000, HT_FLASHER,Flasher 121,3,6,2,1,0x42,1,5,1,no,0,0x80,0,weapon,0,0x3800, HT_FREEZINGTRAP,Freezing Trap 122,3,6,2,4,0x42,1,5,1,no,0,0x80,0,misc,0,0x3800, HT_BLASTMINE,Blast Mine 123,3,6,2,3,0x42,2,5,1,no,0,0x80,0,misc,0,0x3800, HT_CLAYMORETRAP,Claymore Trap -124,2,6,32,0,0x1,0,1,1,no,0,0,0,misc,0,0x0, HT_REMOVETRAP,Remove Trap +124,2,6,32,0,0x1,0,1,1,no,0,0x40000,0,misc,0,0x0, HT_REMOVETRAP,Remove Trap 125,3,6,2,0,0x1,0,1,1,no,0,0x80,0,misc,0,0x2000, HT_TALKIEBOX,Talkie Box 126,0,0,0,0,0,0,10,0,no,0,0,0,weapon,0,0x0, HT_BEASTBANE,Beast Bane 127,0,0,0,0,0,0,1,0,no,0,0,0,misc,0,0x0, HT_FALCON,Falconry Mastery @@ -369,7 +370,7 @@ 249,0,6,4,0,0x1,0,10,1,no,0,0,0,weapon,0,0x0, CR_AUTOGUARD,Guard 250,3,6,1,0,0,0,5,1,no,0,0,0,weapon,5:6:7:8:9,0x0, CR_SHIELDCHARGE,Smite 251,3:5:7:9:11,6,1,0,0,0,5,1,no,0,0,0,weapon,0,0x20000, CR_SHIELDBOOMERANG,Shield Boomerang -252,0,6,4,0,0,0,10,1,no,0,0,0,weapon,0,0x0, CR_REFLECTSHIELD,Shield Reflect +252,0,6,4,0,0x1,0,10,1,no,0,0,0,weapon,0,0x0, CR_REFLECTSHIELD,Shield Reflect 253,-2,8,1,6,0,0,10,-2,no,0,0,0,weapon,0,0x0, CR_HOLYCROSS,Holy Cross 254,5,6,4,6,0x48,0,10,1,no,33,0x100,0,magic,0,0x0, CR_GRANDCROSS,Grand Cross 255,7:8:9:10:11,6,16,0,0x1,0,5,1,yes,0,0x600,0,none,0,0x0, CR_DEVOTION,Sacrifice @@ -561,7 +562,7 @@ //**** // Stalker 389,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x60, ST_CHASEWALK,Stealth -390,0,0,4,0,0,0,5,1,yes,0,0,0,weapon,0,0x0, ST_REJECTSWORD,Counter Instinct +390,0,0,4,0,0x1,0,5,1,yes,0,0,0,weapon,0,0x0, ST_REJECTSWORD,Counter Instinct //391,0,0,4,0,1,0,1,1,yes,0,0,0,magic,0,0x0, ST_STEALBACKPACK,Steal Backpack //**** @@ -629,9 +630,9 @@ //**** // Star Gladiator 427,0,6,4,0,0x1,0,3,1,yes,0,0,0,magic,0,0x0, SG_FEEL,Feeling the Sun Moon and Stars -428,1,6,4,-1,0x2,1,3,1,yes,0,0,0,weapon,2,0x1, SG_SUN_WARM,Warmth of the Sun -429,1,6,4,-1,0x2,1,3,1,yes,0,0,0,weapon,2,0x1, SG_MOON_WARM,Warmth of the Moon -430,1,6,4,-1,0x2,1,3,1,yes,0,0,0,weapon,2,0x1, SG_STAR_WARM,Warmth of the Stars +428,1,6,4,-1,0x3,1,3,1,yes,0,0,0,weapon,2,0x1, SG_SUN_WARM,Warmth of the Sun +429,1,6,4,-1,0x3,1,3,1,yes,0,0,0,weapon,2,0x1, SG_MOON_WARM,Warmth of the Moon +430,1,6,4,-1,0x3,1,3,1,yes,0,0,0,weapon,2,0x1, SG_STAR_WARM,Warmth of the Stars 431,0,0,4,0,0x1,0,4,1,yes,0,0,0,magic,0,0x0, SG_SUN_COMFORT,Comfort of the Sun 432,0,0,4,0,0x1,0,4,1,yes,0,0,0,magic,0,0x0, SG_MOON_COMFORT,Comfort of the Moon 433,0,0,4,0,0x1,0,4,1,yes,0,0,0,magic,0,0x0, SG_STAR_COMFORT,Comfort of the Stars @@ -689,14 +690,14 @@ //**** // Other 2nd Skills -473,0,6,4,0,0,0,1,1,no,0,0,0,none,0,0x0, SM_SELFPROVOKE,Provoke Self +473,0,6,4,0,0x1,0,1,1,no,0,0,0,none,0,0x0, SM_SELFPROVOKE,Provoke Self 474,0,0,4,0,0x1,0,10,1,no,0,0x2,0,none,0,0x0, NPC_EMOTION_ON,Emotion ON 475,0,0,4,0,0x1,0,1,1,yes,0,0,0,none,0,0x0, ST_PRESERVE,Preserve 476,1,6,1,0,0x1,0,5,1,yes,0,0,0,weapon,0,0x20, ST_FULLSTRIP,Divest All 477,0,6,4,0,0x1,0,10,1,no,0,0,0,weapon,0,0x4000, WS_WEAPONREFINE,Upgrade Weapon 478,3,6,2,0,0x3,3,10,1,no,0,0,0,none,0,0x0, CR_SLIMPITCHER,Aid Condensed Potion 479,1,6,16,0,0x1,0,5,1,yes,0,0,0,weapon,0,0x0, CR_FULLPROTECTION,Full Protection -480,5,8,1,-1,0,0,5,5,no,0,0,0,weapon,0,0x20000, PA_SHIELDCHAIN,Shield Chain +480,5,8,1,0,0,0,5,5,no,0,0,0,weapon,0,0x20000, PA_SHIELDCHAIN,Shield Chain 481,0,0,0,0,0,0,5,0,no,0,0,0,none,0,0x0, HP_MANARECHARGE,Mana Recharge 482,0,6,4,0,0x1,0,5,1,no,0,0,0,magic,0,0x0, PF_DOUBLECASTING,Double Casting 483,14,6,2,0,0x1,1:2:3:4:5,1,1,no,0,0,0,none,0,0x20, HW_GANBANTEIN,Ganbantein @@ -719,7 +720,7 @@ //**** // Gunslinger -500,0,6,4,0,0x40,0,5,1,no,0,0,0,misc,0,0x0, GS_GLITTERING,Flip the Coin +500,0,6,4,0,0x41,0,5,1,no,0,0,0,misc,0,0x0, GS_GLITTERING,Flip the Coin 501,9,6,1,-1,0x50,0,1,1,no,0,0,0,misc,0,0x0, GS_FLING,Fling 502,-9,8,1,-1,0,0,1,3,no,0,0,0,weapon,0,0x0, GS_TRIPLEACTION,Triple Action 503,-9,6,1,-1,0x8,0,1,1,no,0,0,0,weapon,0,0x0, GS_BULLSEYE,Bulls Eye @@ -865,12 +866,12 @@ //**** // 2nd Quest Skills -1001,9,6,1,-1,0,0,1,1,no,0,0x1,0,weapon,0,0x0, KN_CHARGEATK,Charge Attack +1001,14,6,1,-1,0,0,1,1,no,0,0x1,0,weapon,0,0x0, KN_CHARGEATK,Charge Attack 1002,0,6,4,0,0x1,0,1,0,no,0,0x1,0,weapon,2,0x0, CR_SHRINK,Shrink 1003,0,0,0,0,0,0,1,0,no,0,0x1,0,weapon,0,0x0, AS_SONICACCEL,Sonic Acceleration 1004,9,8,1,0,0x8,0,1,1,no,0,0x1,0,weapon,0,0x0, AS_VENOMKNIFE,Throw Venom Knife 1005,1,6,1,0,0x1,0,1,1,no,0,0x1,0,weapon,0,0x0, RG_CLOSECONFINE,Close Confine -1006,0,6,4,3,0,1,1,1,yes,0,0x1,0,magic,3,0x20, WZ_SIGHTBLASTER,Sight Blaster +1006,0,6,4,3,0,1,1,1,yes,0,0x40001,0,magic,3,0x20, WZ_SIGHTBLASTER,Sight Blaster 1007,0,6,4,0,0x1,0,1,0,no,0,0x1,0,none,0,0x0, SA_CREATECON,Create Elemental Converter 1008,9,6,1,1,0x1,0,1,1,yes,0,0x1,0,magic,0,0x0, SA_ELEMENTWATER,Elemental Change Water 1009,-9,6,1,0,0,0,1,1,no,0,0x1,0,weapon,3,0x0, HT_PHANTASMIC,Phantasmic Arrow @@ -894,7 +895,7 @@ 2005,1,6,2,4,0x2,2,5,1,no,0,0,0,weapon,3,0x0, RK_WINDCUTTER,Wind Cutter 2006,0,6,4,-1,0x2,5,5,1,no,0,0,0,weapon,0,0x0, RK_IGNITIONBREAK,Ignition Break 2007,0,0,0,0,0,0,5,0,no,0,0,0,none,0,0x0, RK_DRAGONTRAINING,Dragon Training -2008,9,6,2,3,0x42,1:1:1:2:2:2:3:3:4:4,10,1,no,0,0,0,weapon,0,0x0, RK_DRAGONBREATH,Dragon Breath +2008,9,6,2,3,0x42,1:1:1:2:2:2:3:3:4:4,10,1,no,0,0x40000,0,weapon,0,0x0, RK_DRAGONBREATH,Dragon Breath 2009,0,6,4,0,0x3,3:4:5:6:7,5,1,no,0,0,0,none,0,0x0, RK_DRAGONHOWLING,Dragon Howling 2010,0,0,0,0,0,0,10,0,no,0,0,0,none,0,0x0, RK_RUNEMASTERY,Rune Mastery 2011,0,6,4,0,0x1,0,1,1,no,0,0,0,none,0,0x0, RK_MILLENNIUMSHIELD,Millenium Shield @@ -903,7 +904,7 @@ 2014,0,6,4,0,0x1,0,1,1,yes,0,0,0,none,0,0x0, RK_GIANTGROWTH,Giant Growth 2015,0,6,4,0,0x1,0,1,1,yes,0,0,0,none,0,0x0, RK_STONEHARDSKIN,Stone Hard Skin 2016,0,6,4,0,0x1,0,1,1,yes,0,0,0,none,0,0x0, RK_VITALITYACTIVATION,Vitality Activation -2017,0,6,4,-1,0x2,3,1,1,no,0,0,0,weapon,7,0x0, RK_STORMBLAST,Storm Blast +2017,0,6,4,-1,0x2,3,1,1,no,0,0x40000,0,weapon,7,0x0, RK_STORMBLAST,Storm Blast 2018,0,6,4,0,0x3,-1,1,1,yes,0,0,0,none,0,0x0, RK_FIGHTINGSPIRIT,Fighting Spirit //CHECK Is this splash needed? 2019,9,6,4,6,0x1,0,1,1,yes,0,0,0,none,0,0x0, RK_ABUNDANCE,Abundance 2020,5:6:7:8:9,6,1,-1,0,0,5,1,no,0,0,0,weapon,0,0x0, RK_PHANTOMTHRUST,Phantom Thrust @@ -969,11 +970,11 @@ 2038,11,8,1,6,0x2,1,5,-3,yes,0,0,0,magic,0,0x0, AB_JUDEX,Judex 2039,0,6,4,0,0x1,0,1,1,yes,0,0,0,magic,0,0x0, AB_ANCILLA,Ancilla 2040,11,8,1,6,0,0,10,-10,yes,0,0,0,magic,0,0x0, AB_ADORAMUS,Adoramus -2041,0,6,4,6,0x3,3:7:15,3,1,yes,0,0,0,magic,0,0x0, AB_CLEMENTIA,Crementia -2042,0,6,4,6,0x3,3:7:15,3,1,yes,0,0,0,magic,0,0x0, AB_CANTO,Canto Candidus +2041,0,6,4,0,0x3,3:7:15,3,1,yes,0,0,0,magic,0,0x0, AB_CLEMENTIA,Crementia +2042,0,6,4,0,0x3,3:7:15,3,1,yes,0,0,0,magic,0,0x0, AB_CANTO,Canto Candidus 2043,0,6,4,6,0x3,3:7:15,3,1,yes,0,0,0,magic,0,0x0, AB_CHEAL,Coluceo Heal -2044,11,6,2,6,0x1,0,5,1,yes,0,0,1,magic,0,0x0, AB_EPICLESIS,Epiclesis -2045,0,6,4,6,0x3,15,10,1,yes,0,0,0,magic,0,0x0, AB_PRAEFATIO,Praefatio +2044,11,6,2,6,0x1,2,5,1,yes,0,0,1,magic,0,0x0, AB_EPICLESIS,Epiclesis +2045,0,6,4,0,0x3,15,10,1,yes,0,0,0,magic,0,0x0, AB_PRAEFATIO,Praefatio 2046,0,6,4,6,0x3,15,10,1,yes,0,0,0,magic,0,0x0, AB_ORATIO,Oratio 2047,0,6,4,6,0x3,15,4,1,yes,0,0,0,magic,0,0x0, AB_LAUDAAGNUS,Lauda Agnus 2048,0,6,4,6,0x3,15,4,1,yes,0,0,0,magic,0,0x0, AB_LAUDARAMUS,Lauda Ramus @@ -995,7 +996,7 @@ 2234,0,6,4,0,0,0,5,1,yes,0,0,0,none,0,0x0, RA_FEARBREEZE,Fear Breeze 2235,0,0,0,0,0,0,10,0,no,0,0,0,none,0,0x0, RA_RANGERMAIN,Ranger Main 2236,9,8,1,-1,0,0,10,1,yes,0,0,0,weapon,0,0x80, RA_AIMEDBOLT,Aimed Bolt -2237,9,6,2,0,0x3,3,1,1,no,0,0,0,none,0,0x2000, RA_DETONATOR,Detonator +2237,9,6,2,0,0x3,3,1,1,no,0,0x40000,0,none,0,0x2000, RA_DETONATOR,Detonator 2238,3,6,2,0,0x3,2,5,1,no,0,0x80,3,misc,0,0x2000, RA_ELECTRICSHOCKER,Electric Shocker 2239,3,6,2,0,0x42,3,5,1,no,0,0x80,3,misc,0,0x2800, RA_CLUSTERBOMB,Cluster Bomb 2240,0,6,4,0,0,0,1,1,no,0,0,0,none,0,0x0, RA_WUGMASTERY,Warg Mastery @@ -1004,7 +1005,7 @@ 2243,9,6,1,0,0x40,0,5,1,no,0,0,0,weapon,0,0x2000, RA_WUGSTRIKE,Warg Strike 2244,9,6,1,0,0x40,0,5,1,no,0,0,0,weapon,0,0x80, RA_WUGBITE,Warg Bite 2245,0,0,0,0,0,0,10,0,no,0,0,0,none,0,0x0, RA_TOOTHOFWUG,Tooth of Warg -2246,0,6,4,0,0x2,3:4:5:6:7,5,1,no,0,0,0,weapon,0,0x0, RA_SENSITIVEKEEN,Sensitive Keen +2246,0,6,4,0,0x2,3:4:5:6:7,5,1,no,0,0x40000,0,weapon,0,0x0, RA_SENSITIVEKEEN,Sensitive Keen 2247,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x42, RA_CAMOUFLAGE,Camouflage 2248,0,0,0,0,0,0,5,0,no,0,0,0,none,0,0x0, RA_RESEARCHTRAP,Research Trap 2249,3,6,2,3,0x43,2,1,1,no,0,0x80,1,misc,0,0x2000, RA_MAGENTATRAP,Magenta Trap @@ -1021,14 +1022,14 @@ 2257,3,6,1,-1,0,0,3,1,no,0,0,0,weapon,0,0x0, NC_PILEBUNKER,Pile Bunker 2258,13,6,1,-1,0x2,1,3,1,no,0,0,0,weapon,0,0x0, NC_VULCANARM,Vulcan Arm 2259,7,6,1,3,0,2,3,1,no,0,0,5,weapon,0,0x0, NC_FLAMELAUNCHER,Flame Launcher -2260,7,6,2,1,0x2,2:3:4,3,1,no,0,0,0,weapon,0,0x0, NC_COLDSLOWER,Cold Slower -2261,9:11:13,6,2,-1,0x42,3:2:1,3,1,no,0,0,0,weapon,0,0x0, NC_ARMSCANNON,Arm Cannon +2260,7,6,2,1,0x2,2:3:4,3,1,no,0,0x40000,0,weapon,0,0x0, NC_COLDSLOWER,Cold Slower +2261,9:11:13,6,1,-1,0x42,3:2:1,3,1,no,0,0,0,weapon,0,0x0, NC_ARMSCANNON,Arm Cannon 2262,0,6,4,0,0x1,0,3,1,no,0,0,0,none,0,0x0, NC_ACCELERATION,Acceleration 2263,0,6,4,0,0x1,0,1,1,no,0,0,0,none,0,0x0, NC_HOVERING,Hovering 2264,0,6,4,0,0x1,0,1,1,no,0,0,0,none,7,0x0, NC_F_SIDESLIDE,Front-Side Slide 2265,0,6,4,0,0x1,0,1,1,no,0,0,0,none,7,0x0, NC_B_SIDESLIDE,Back-Side Slide 2266,0,0,0,0,0,0,4,0,no,0,0,0,none,0,0x0, NC_MAINFRAME,Mainframe Restructure -2267,0,6,4,0,0xCA,2:3:4,3,1,no,0,0,0,weapon,5,0x0, NC_SELFDESTRUCTION,Self Destruction +2267,0,6,4,0,0xCA,2:3:4,3,1,no,0,0x40000,0,weapon,5,0x0, NC_SELFDESTRUCTION,Self Destruction 2268,0,6,4,0,0x1,0,4,1,yes,0,0,0,none,0,0x0, NC_SHAPESHIFT,Shape Shift 2269,0,6,4,0,0x1,0,1,1,no,0,0,0,none,0,0x0, NC_EMERGENCYCOOL,Emergency Cool 2270,0,6,4,0,0x3,7,1,1,yes,0,0,0,none,0,0x0, NC_INFRAREDSCAN,Infrared Scan @@ -1102,7 +1103,7 @@ 2329,-2,8,4,-1,0,0,5,-2,no,0,0x200,0,weapon,0,0x0, SR_FALLENEMPIRE,Fallen Empire 2330,-2,6,1,-1,0x42,1:1:1:1:1:2:2:2:2:2,10,1,yes,0,0,0,weapon,0,0x0, SR_TIGERCANNON,Tiger Cannon 2331,0,0,0,0,0,0,10,0,no,0,0,0,none,0,0x0, SR_HELLGATE,Hell Gate -2332,0,6,4,-1,0x2,3,5,1,no,0,0,0,weapon,0,0x0, SR_RAMPAGEBLASTER,Rampage Blaster +2332,0,6,4,-1,0x2,3,5,1,no,0,0x40000,0,weapon,0,0x0, SR_RAMPAGEBLASTER,Rampage Blaster 2333,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, SR_CRESCENTELBOW,Crescent Elbow 2334,0,6,4,0,0x3,1:1:2:2:3,5,1,no,0,0,0,none,0,0x0, SR_CURSEDCIRCLE,Cursed Circle 2335,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, SR_LIGHTNINGWALK,Lightning Walk @@ -1139,9 +1140,9 @@ // WM Wanderer/Minstrel 2412,0,0,0,0,0,0,10,0,no,0,0,0,none,0,0x0, WM_LESSON,Lesson 2413,9,8,1,-1,0,0,5,-2:-2:-3:-3:-4,yes,0,0,0,magic,0,0x0, WM_METALICSOUND,Metallic Sound -2414,9,6,2,-1,0x3,1,5,1,yes,0,0x80,3,none,0,0x0, WM_REVERBERATION,Reverberation -2415,0,6,1,-1,0,0,5,1,no,0,0,0,weapon,0,0x0, WM_REVERBERATION_MELEE,Reverberation Melee -2416,0,6,1,-1,0,0,5,1,no,0,0,0,magic,0,0x0, WM_REVERBERATION_MAGIC,Reverberation Magic +2414,9,6,2,0,0x3,2,5,1,yes,0,0x80,0,none,0,0x0, WM_REVERBERATION,Reverberation +2415,0,6,1,-1,0x6,2,5,1,no,0,0,0,weapon,0,0x0, WM_REVERBERATION_MELEE,Reverberation Melee +2416,0,6,1,0,0x6,2,5,1,no,0,0,0,magic,0,0x0, WM_REVERBERATION_MAGIC,Reverberation Magic 2417,11,6,2,0,0x3,5,1,1,no,0,0,0,none,0,0x0, WM_DOMINION_IMPULSE,Dominion Impulse 2418,9,6,2,0,0x1,0,5,1,yes,0,0,0,none,0,0x0, WM_SEVERE_RAINSTORM,Severe Rainstorm 2419,9,6,2,0,0x3,1,5,1,yes,0,0x80,5,none,0,0x0, WM_POEMOFNETHERWORLD,Poem of The Netherworld @@ -1154,9 +1155,9 @@ 2426,9,6,2,0,0x2,2:3:3:4:4,5,1,yes,0,0x4000,0,weapon,0,0x0, WM_GREAT_ECHO,Great Echo 2427,0,6,4,0,0x3,5:6:7:8:9,5,1,yes,0,0x4000,0,none,0,0x0, WM_SONG_OF_MANA,Song of Mana 2428,0,6,4,0,0x3,5:6:7:8:9,5,1,yes,0,0x4000,0,none,0,0x0, WM_DANCE_WITH_WUG,Dance With A Warg -2429,9,6,1,0,0x42,4:4:5:5:6,5,1,yes,0,0x4000,0,weapon,0,0x0, WM_SOUND_OF_DESTRUCTION,Sound of Destruction //CHECK Source shows its magic attack. Need to confirm before changing. +2429,9,6,2,0,0x42,4:4:5:5:6,5,1,yes,0,0x4000,0,none,0,0x0, WM_SOUND_OF_DESTRUCTION,Sound of Destruction 2430,0,6,4,0,0x3,3:4:5:6:7,5,1,yes,0,0x4000,0,none,0,0x0, WM_SATURDAY_NIGHT_FEVER,Saturday Night Fever -2431,0,6,4,0,0x3,5:5:6:6:7,5,1,yes,0,0x4000,0,magic,0,0x0, WM_LERADS_DEW,Lerad's Dew +2431,0,6,4,0,0x3,5:5:6:6:7,5,1,yes,0,0x4000,0,none,0,0x0, WM_LERADS_DEW,Lerad's Dew 2432,0,6,4,0,0x3,5:5:6:6:7,5,1,yes,0,0x4000,0,none,0,0x0, WM_MELODYOFSINK,Melody of Sink 2433,0,6,4,0,0x3,5:5:6:6:7,5,1,yes,0,0x4000,0,none,0,0x0, WM_BEYOND_OF_WARCRY,Warcry of Beyond 2434,0,6,4,0,0x3,5:5:6:6:7,5,1,yes,0,0x4000,0,none,0,0x0, WM_UNLIMITED_HUMMING_VOICE,Unlimited Humming Voice @@ -1203,7 +1204,7 @@ 2481,11,6,1,-1,0x2,1:2:3:4:5,5,1,yes,0,0,0,weapon,0,0x0, GN_SPORE_EXPLOSION,Spore Explosion //CHECK Data says its element is set to neutral. Need to confirm. 2482,11,6,2,0,0x8,0,5,1,yes,0,0,1,weapon,2,0x0, GN_WALLOFTHORN,Wall of Thorns 2483,11,6,2,0,0x3,4,10,1,yes,0,0x0,0,weapon,0,0x1, GN_CRAZYWEED,Crazy Weed -2484,0,6,2,2,0x2,2,10,1,no,0,0x0,0,weapon,0,0x1, GN_CRAZYWEED_ATK,Crazy Weed Attack +2484,0,6,2,2,0x2,2,10,1,no,0,0x40000,0,weapon,0,0x1, GN_CRAZYWEED_ATK,Crazy Weed Attack 2485,9,6,2,3,0,0,5,1,yes,0,0,0,magic,0,0x0, GN_DEMONIC_FIRE,Demonic Fire 2486,9,6,2,0,0,0,5,1,yes,0,0,0,none,0,0x0, GN_FIRE_EXPANSION,Fire Expansion 2487,9,6,2,0,0,0,1,1,no,0,0,0,none,0,0x0, GN_FIRE_EXPANSION_SMOKE_POWDER,Fire Expansion Smoke Powder @@ -1263,35 +1264,35 @@ //**** // Kagerou & Oboro -3001,0,6,4,0,0,0,1,1,no,0,0,0,none,0,0x4, KO_YAMIKUMO,Yamikumo +3001,0,6,4,0,0,0,1,1,no,0,0,0,none,0,0x4, KO_YAMIKUMO,Shadow Hiding 3002,0,0,0,0,0,0,5,0,no,0,0,0,weapon,0,0x0, KO_RIGHT,Right Hand Mastery 3003,0,0,0,0,0,0,5,0,no,0,0,0,weapon,0,0x0, KO_LEFT,Left Hand Mastery -3004,3:4:5:6:7,8,1,-1,0,0,5,-2,no,0,0,0,weapon,0,0x0, KO_JYUMONJIKIRI,Cross Strike -3005,2,6,1,-1,0,0,5,1,no,0,0,0,weapon,0,0x0, KO_SETSUDAN,Soul Sever -3006,7:8:9:10:11,6,2,-1,0x42,2,5,1,no,0,0,0,weapon,0,0x0, KO_BAKURETSU,Bakuretsu Kunai -3007,5,6,4,-1,0x42,4:4:4:4:5,5,1,no,0,0,0,weapon,0,0x0, KO_HAPPOKUNAI,Happo Kunai -3008,11,8,2,0,0x56,1:1:1:1:1:1:1:1:1:2,10,-10,no,0,0,0,misc,0,0x0, KO_MUCHANAGE,Mucha Nage -3009,9:10:11:12:13,8,2,-1,0x2,3,5,2,no,0,0,0,weapon,0,0x0, KO_HUUMARANKA,Huuma Shuriken Ranka +3004,3:4:5:6:7,8,1,-1,0,0,5,-2,no,0,0,0,weapon,0,0x0, KO_JYUMONJIKIRI,Cross Slash +3005,2,6,1,-1,0,0,5,1,no,0,0,0,weapon,0,0x0, KO_SETSUDAN,Soul Cutter +3006,7:8:9:10:11,6,2,-1,0x42,2,5,1,no,0,0,0,weapon,0,0x0, KO_BAKURETSU,Kunai Explosion +3007,0,6,4,-1,0x42,4:4:4:4:5,5,1,no,0,0,0,weapon,0,0x0, KO_HAPPOKUNAI,Kunai Splash +3008,11,8,2,0,0x56,1:1:1:1:1:1:1:1:1:2,10,-10,no,0,0,0,misc,0,0x0, KO_MUCHANAGE,Rapid Throw +3009,9:10:11:12:13,8,2,-1,0x2,3,5,2,no,0,0,0,weapon,0,0x0, KO_HUUMARANKA,Swirling Petal 3010,3,6,4,0,0x52,0,5,1,no,0,0x80,0,weapon,0,0x10, KO_MAKIBISHI,Makibishi -3011,0,6,4,0,0x1,0,5,0,yes,0,0,0,none,0,0x0, KO_MEIKYOUSISUI,Meikyo Shisui -3012,0,6,4,0,0x1,0,5,0,no,0,0,1,none,3:4:5:6:7,0x0, KO_ZANZOU,Zanzou -3013,5,6,1,0,0x1,0,5,0,no,0,0,0,none,0,0x0, KO_KYOUGAKU,Kyougaku -3014,5,6,1,0,0x1,0,5,0,no,0,0,0,none,0,0x0, KO_JYUSATSU,Jyusatsu -3015,0,6,4,3,0x1,0,1,1,no,0,0,0,none,0,0x0, KO_KAHU_ENTEN,Kahu Enten -3016,0,6,4,1,0x1,0,1,1,no,0,0,0,none,0,0x0, KO_HYOUHU_HUBUKI,Hyouhu Hubuki -3017,0,6,4,4,0x1,0,1,1,no,0,0,0,none,0,0x0, KO_KAZEHU_SEIRAN,Kazehu Seiran -3018,0,6,4,2,0x1,0,1,1,no,0,0,0,none,0,0x0, KO_DOHU_KOUKAI,Dohu Koukai -3019,11,6,1,0,0,0,1,1,no,0,0,0,magic,0,0x0, KO_KAIHOU,Technique Kaihou -3020,7,6,2,0,0,0,1,1,yes,0,0,0,magic,0,0x0, KO_ZENKAI,Zenkai -3021,5:6:7:8:9,6,16,0,0x1,0,5,1,no,0,0,0,none,0,0x0, KO_GENWAKU,Genwaku -3022,0,6,4,0,0x1,0,5,0,no,0,0,0,none,0,0x0, KO_IZAYOI,Izayoi -3023,0,6,4,0,0x3,2:3:4:5:6,5,0,no,0,0,0,none,0,0x0, KG_KAGEHUMI,Kagehumi -3024,7,6,1,0,0x1,0,5,1,no,0,0,0,none,0,0x0, KG_KYOMU,Kyomu -3025,7,6,16,0,0x1,0,5,1,no,0,0,0,none,0,0x0, KG_KAGEMUSYA,Kagemusha -3026,7,6,16,0,0x1,0,5,1,no,0,0,0,none,0,0x0, OB_ZANGETSU,Zangetsu -3027,7,6,16,0,0x1,0,5,1,no,0,0,0,none,0,0x0, OB_OBOROGENSOU,Oboro Gensou -3028,1,6,4,0,0x2,3,1,1,no,0,0,0,weapon,0,0x0, OB_OBOROGENSOU_TRANSITION_ATK,Hazy Moonlight Illusion Transition Attack -3029,7,6,1,0,0x1,0,5,0,no,0,0,0,none,0,0x0, OB_AKAITSUKI,Akaitsuki +3011,0,6,4,0,0x1,0,5,0,yes,0,0,0,none,0,0x0, KO_MEIKYOUSISUI,Pure Soul +3012,0,6,4,0,0x1,0,5,0,no,0,0,1,none,3:4:5:6:7,0x0, KO_ZANZOU,Illusion - Shadow +3013,5,6,1,0,0x1,0,5,0,no,0,0,0,none,0,0x0, KO_KYOUGAKU,Illusion - Shock +3014,5,6,1,0,0x1,0,5,0,no,0,0,0,none,0,0x0, KO_JYUSATSU,Illusion - Death +3015,0,6,4,3,0x1,0,1,1,no,0,0,0,none,0,0x0, KO_KAHU_ENTEN,Fire Charm +3016,0,6,4,1,0x1,0,1,1,no,0,0,0,none,0,0x0, KO_HYOUHU_HUBUKI,Ice Charm +3017,0,6,4,4,0x1,0,1,1,no,0,0,0,none,0,0x0, KO_KAZEHU_SEIRAN,Wind Charm +3018,0,6,4,2,0x1,0,1,1,no,0,0,0,none,0,0x0, KO_DOHU_KOUKAI,Earth Charm +3019,11,6,1,0,0,0,1,1,no,0,0,0,magic,0,0x0, KO_KAIHOU,Release Ninja Spell +3020,7,6,2,0,0,0,1,1,yes,0,0,0,magic,0,0x0, KO_ZENKAI,Cast Ninja Spell +3021,5:6:7:8:9,6,16,0,0x1,0,5,1,no,0,0,0,none,0,0x0, KO_GENWAKU,Illusion - Bewitch +3022,0,6,4,0,0x1,0,5,0,no,0,0,0,none,0,0x0, KO_IZAYOI,16th Night +3023,0,6,4,0,0x3,2:3:4:5:6,5,0,no,0,0,0,none,0,0x0, KG_KAGEHUMI,Shadow Trampling +3024,7,6,1,0,0x1,0,5,1,no,0,0,0,none,0,0x0, KG_KYOMU,Empty Shadow +3025,7,6,16,0,0x1,0,5,1,no,0,0,0,none,0,0x0, KG_KAGEMUSYA,Shadow Warrior +3026,7,6,16,0,0x1,0,5,1,no,0,0,0,none,0,0x0, OB_ZANGETSU,Distorted Crescent +3027,7,6,16,0,0x1,0,5,1,no,0,0,0,none,0,0x0, OB_OBOROGENSOU,Moonlight Fantasy +3028,1,6,4,0,0x2,3,1,1,no,0,0,0,weapon,0,0x0, OB_OBOROGENSOU_TRANSITION_ATK,Moonlight Fantasy Transition Attack +3029,7,6,1,0,0x1,0,5,0,no,0,0,0,none,0,0x0, OB_AKAITSUKI,Ominous Moonlight //**** // Eclage Skills @@ -1310,13 +1311,13 @@ 5001,1,8,1,-1,0,0,5,3,no,0,0,0,weapon,0,0x0, GC_DARKCROW,Dark Claw 5002,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, RA_UNLIMIT,Unlimited 5003,7,6,1,-1,0x2,4:5:6:7:-1,5,1,no,0,0,0,weapon,0,0x0, GN_ILLUSIONDOPING,Illusion Doping -5004,9,6,2,1,0x42,1:1:1:2:2:2:3:3:4:4,10,1,no,0,0,0,weapon,0,0x0, RK_DRAGONBREATH_WATER,Dragon Breath - Water +5004,9,6,2,1,0x42,1:1:1:2:2:2:3:3:4:4,10,1,no,0,0x40000,0,weapon,0,0x0, RK_DRAGONBREATH_WATER,Dragon Breath - Water 5005,0,6,4,0,0x3,3,1,1,no,0,0,0,none,0,0x0, RK_LUXANIMA,Lux Anima 5006,1,6,2,3,0,0,5,1,no,0,0,3,misc,0,0x0, NC_MAGMA_ERUPTION,Magma Eruption 5007,0,6,4,0,0x3,5:6:7:8:9,5,1,no,0,0,0,none,0,0x0, WM_FRIGG_SONG,Frigg's Song -5008,0,6,4,0,0x3,15,5,1,no,0,0,0,none,0,0x0, SO_ELEMENTAL_SHIELD,Elemental Shield +5008,0,6,4,0,0x3,11,5,1,no,0,0,0,none,0,0x0, SO_ELEMENTAL_SHIELD,Elemental Shield 5009,1,6,1,0,0x1,0,5,1,no,0,0,0,none,0,0x0, SR_FLASHCOMBO,Flash Combo -5010,0,6,2,0,0x1,0,5,1,no,0,0,0,none,0,0x0, SC_ESCAPE,Emergency Escape +5010,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, SC_ESCAPE,Emergency Escape 5011,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, AB_OFFERTORIUM,Offertorium 5012,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, WL_TELEKINESIS_INTENSE,Intense Telekinesis 5013,0,6,4,0,0x3,0,5,1,no,0,0,0,none,0,0x0, LG_KINGS_GRACE,King's Grace @@ -1339,7 +1340,7 @@ 8009,1,8,1,0,0,0,5,-1:-2:-2:-2:-3,no,0,0,0,weapon,0,0x0, HFLI_MOON,Moonlight 8010,0,6,4,0,0x1,0,5,0,no,0,0,0,none,0,0x0, HFLI_FLEET,Fleeting Move 8011,0,6,4,0,0x1,0,5,0,yes,0,0,0,misc,0,0x0, HFLI_SPEED,Speed -8012,1,6,1,0,0,0,3,0,no,0,0,0,none,0,0x0, HFLI_SBR44,S.B.R.44 +8012,1,6,1,0,0,0,3,1,no,0,0,0,weapon,0,0x0, HFLI_SBR44,S.B.R.44 8013,9,6,1,0,0,0,5,1:2:3:4:5,no,0,0,0,magic,0,0x0, HVAN_CAPRICE,Caprice 8014,0,6,4,0,0x1,0,5,0,no,0,0,0,none,0,0x0, HVAN_CHAOTIC,Benediction of Chaos 8015,0,0,0,0,0x1,0,5,0,no,0,0,0,none,0,0x0, HVAN_INSTRUCT,Instruct @@ -1374,18 +1375,18 @@ //**** // Mercenary Skill Place holders 8201,-1,6,1,-1,0,0,10,1,no,0,0,0,weapon,0,0x0, MS_BASH,Bash -8202,0,6,4,3,0x2,2,10,1,no,0,0,0,weapon,2,0x0, MS_MAGNUM,Magnum_Break +8202,0,6,4,3,0x2,2,10,1,no,0,0x40000,0,weapon,2,0x0, MS_MAGNUM,Magnum_Break 8203,-2,6,1,-1,0x2,1,10,1,no,0,0,0,weapon,1,0x0, MS_BOWLINGBASH,Bowling_Bash 8204,0,6,4,0,0x1,0,10,1,no,0,0,0,weapon,0,0x0, MS_PARRYING,Parry 8205,0,6,4,0,0,0,10,1,no,0,0,0,weapon,0,0x0, MS_REFLECTSHIELD,Shield_Reflect 8206,0,6,4,0,0x1,0,1,1,no,0,0,0,weapon,0,0x0, MS_BERSERK,Frenzy 8207,-9,8,1,-1,0,0,10,2,no,0,0,0,weapon,0,0x80, MA_DOUBLE,Double_Strafe -8208,-9,6,2,-1,0x2,2,10,1,no,0,0x0,0,weapon,2,0x81, MA_SHOWER,Arrow_Shower +8208,-9,6,2,-1,0x2,2,10,1,no,0,0x40000,0,weapon,2,0x81, MA_SHOWER,Arrow_Shower 8209,3,6,2,0,0x1,0,5,1,no,0,0x80,0,misc,6:7:8:9:10,0x0, MA_SKIDTRAP,Skid_Trap 8210,3,6,2,2,0x40,0,5,1,no,0,0x80,0,misc,0,0x0, MA_LANDMINE,Land_Mine 8211,3,6,2,0,0x3,2,5,1,no,0,0x80,0,misc,0,0x0, MA_SANDMAN,Sandman 8212,3,6,2,1,0x42,1,5,1,no,0,0x80,0,weapon,0,0x0, MA_FREEZINGTRAP,Freezing_Trap -8213,2,6,32,0,0x1,0,1,1,no,0,0,0,misc,0,0x0, MA_REMOVETRAP,Remove_Trap +8213,2,6,32,0,0x1,0,1,1,no,0,0x40000,0,misc,0,0x0, MA_REMOVETRAP,Remove_Trap 8214,-9,6,1,-1,0x2,0,1,1,no,0,0x1,0,weapon,6,0x80, MA_CHARGEARROW,Arrow_Repel 8215,9,8,1,-1,0,2,5,1,yes,0,0,13,weapon,0,0x0, MA_SHARPSHOOTING,Focused_Arrow_Strike 8216,-2,8,1,-1,0,0,10,3,no,0,0,0,weapon,0,0x0, ML_PIERCE,Pierce diff --git a/db/pre-re/skill_require_db.txt b/db/pre-re/skill_require_db.txt index d701ea3c1f..ac6feabc0f 100644 --- a/db/pre-re/skill_require_db.txt +++ b/db/pre-re/skill_require_db.txt @@ -20,6 +20,7 @@ // ridingwarg = Requires to ride a Warg // mado = Requires to have an active mado // elementalspirit = Requires to have an Elemental Spirit summoned. +// elementalspirit2 = Requires to have an Elemental Spirit summoned, and will be removed. // peco = Requires riding a peco // // 'RequiredStatuses' @@ -758,7 +759,7 @@ 2327,0,0,8:9:10:11:12,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_SKYNETBLOW 2328,0,0,36:40:44:48:52,0,0,0,99,0,0,none,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_EARTHSHAKER 2329,0,0,20:30:40:50:60,0,0,0,99,0,0,none,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_FALLENEMPIRE -2330,0,0,1:2:3:4:5:6:7:8:9:10,0,0,0,99,0,0,none,SC_EXPLOSIONSPIRITS,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_TIGERCANNON +2330,0,0,1:2:3:4:5:6:7:8:9:10,-12:-14:-16:-18:-20:-22:-24:-26:-28:-30,-6:-7:-8:-9:-10:-11:-12:-13:-14:-15,0,99,0,0,none,SC_EXPLOSIONSPIRITS,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_TIGERCANNON 2331,0,0,1,0,-11:-12:-13:-14:-15:-16:-17:-18:-19:-20,0,99,0,0,none,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_HELLGATE 2332,0,0,150,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_RAMPAGEBLASTER 2333,0,0,80,0,0,0,99,0,0,none,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_CRESCENTELBOW @@ -808,7 +809,7 @@ 2423,0,0,42:46:50:54:58,0,0,0,13:14,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WM_SIRCLEOFNATURE 2424,0,0,40:45:50:55:60,0,0,0,13:14,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WM_RANDOMIZESPELL 2425,0,0,60:75:90:105:120,0,0,0,13:14,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //MW_GLOOMYDAY -2426,0,0,80:90:100:110:120,0,0,0,99,0,0,none,0,0,11513,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WM_GREAT_ECHO // Missing 1 Lozange. Need item ID. +2426,0,0,80:90:100:110:120,0,0,0,99,0,0,none,0,0,11513,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WM_GREAT_ECHO 2427,0,0,120:140:160:180:200,0,0,0,13:14,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WM_SONG_OF_MANA 2428,0,0,120:140:160:180:200,0,0,0,13:14,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WM_DANCE_WITH_WUG 2429,0,0,50:60:70:80:90,0,0,0,13:14,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WM_SOUND_OF_DESTRUCTION @@ -948,7 +949,7 @@ 5005,0,0,1,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //RK_LUXANIMA 5006,0,0,60:70:80:90:100,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //NC_MAGMA_ERUPTION 5007,0,0,200:230:260:290:320,0,0,0,13:14,0,0,none,0,0,6144,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WM_FRIGG_SONG -5008,0,0,120,0,0,0,99,0,0,elementalspirit,0,0,717,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SO_ELEMENTAL_SHIELD +5008,0,0,120,0,0,0,99,0,0,elementalspirit2,0,0,717,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SO_ELEMENTAL_SHIELD 5009,0,0,65,0,0,0,99,0,0,none,0,5:5:4:4:3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_FLASHCOMBO 5010,0,0,30:26:22:18:14,0,0,0,99,0,0,none,0,0,7940,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SC_ESCAPE 5011,0,0,30:60:90:120:150,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //AB_OFFERTORIUM diff --git a/db/pre-re/skill_unit_db.txt b/db/pre-re/skill_unit_db.txt index c40eebe987..08365305c5 100644 --- a/db/pre-re/skill_unit_db.txt +++ b/db/pre-re/skill_unit_db.txt @@ -122,10 +122,10 @@ 2253,0xd6, , 0, 1,1000,enemy, 0x8002 //RA_FIRINGTRAP 2254,0xd7, , 0, 1,1000,enemy, 0x8002 //RA_ICEBOUNDTRAP -2273,0xe2, , 2, 0, 500,all, 0x000 //NC_NEUTRALBARRIER -2274,0xe3, , 2, 0, 500,friend,0x000 //NC_STEALTHFIELD +2273,0xe2, , 2, 0, -1,all, 0x000 //NC_NEUTRALBARRIER +2274,0xe3, , 2, 0, -1,friend,0x000 //NC_STEALTHFIELD -2299,0xcc, , 0, 1,1000,all, 0xC006 //SC_MANHOLE +2299,0xcc, , 0, 1,1000,all, 0x8006 //SC_MANHOLE 2300,0xcd, , 0, 0,1000,all, 0xC006 //SC_DIMENSIONDOOR 2301,0xce, , 2, 0,1000,all, 0xE00E //SC_CHAOSPANIC 2302,0xcf, , 2, 0, -1,all, 0xE002 //SC_MAELSTROM @@ -134,7 +134,7 @@ 2319,0xec, , 0, 3,5000,all, 0x000 //LG_BANDING -2414,0xda, , 0, 0, -1,enemy, 0x1000 //WM_REVERBERATION +2414,0xda, , 0, 0,1000,enemy, 0x1000 //WM_REVERBERATION 2418,0xdb, , 0, 5, 300,enemy, 0x800 //WM_SEVERE_RAINSTORM 2419,0xde, , 0, 1,1000,enemy, 0x1014 //WM_POEMOFNETHERWORLD @@ -168,9 +168,8 @@ 3010,0xfc, , 0, 1,5000,enemy, 0x018 //KO_MAKIBISHI 3020,0xf8, , 0, 2, 500,all, 0x018 //KO_ZENKAI -5006,0x101, , 0, 3,2000,enemy, 0x018 //NC_MAGMA_ERUPTION -5008,0x85, , 0, 0, -1,all, 0x003 //SO_ELEMENTAL_SHIELD -5010,0xfe, , 0, 2, -1,enemy, 0x000 //SC_ESCAPE +5006,0x101, , 0, 3, 500,enemy, 0x018 //NC_MAGMA_ERUPTION +5010,0x91, , 0, 1,1000,all, 0x002 //SC_ESCAPE 5013,0x102, , 3, 0, -1,all, 0x2002 //LG_KINGS_GRACE 8020,0xf5, , 3, 0,2300:2100:1900:1700:1500,enemy, 0x018 //MH_POISON_MIST @@ -185,10 +184,10 @@ 8211,0x95, , 0, 1,1000,enemy, 0x006 //MA_SANDMAN 8212,0x97, , 0, 1,1000,enemy, 0x006 //MA_FREEZINGTRAP -8403,0xed, , -1, 1,1000,enemy, 0x018 //EL_FIRE_MANTLE -8406,0xee, , 0, 1, -1,friend,0x018 //EL_WATER_BARRIER -8409,0xef, , 0, 1,1000,friend,0x018 //EL_ZEPHYR -8412,0xf0, , 0, 1, -1,friend,0x018 //EL_POWER_OF_GAIA +8403,0xed, , -1, 1,1000,enemy, 0x018 //EL_FIRE_MANTLE +8406,0xee, , 1, 0, -1,friend,0x2018 //EL_WATER_BARRIER +8409,0xef, , 1, 0, -1,friend,0x2018 //EL_ZEPHYR +8412,0xf0, , 1, 0, -1,friend,0x2018 //EL_POWER_OF_GAIA 10006,0xc1, , 2, 0, -1,guild, 0x040 //GD_LEADERSHIP 10007,0xc2, , 2, 0, -1,guild, 0x040 //GD_GLORYWOUNDS diff --git a/db/quest_db.txt b/db/quest_db.txt deleted file mode 100644 index c6b409c024..0000000000 --- a/db/quest_db.txt +++ /dev/null @@ -1,3129 +0,0 @@ -// Quest Database -// -// Structure of Database: -// Quest ID,Time Limit,Target1,Val1,Target2,Val2,Target3,Val3,Quest Title - -1000,0,0,0,0,0,0,0,"Transcend" -1001,0,0,0,0,0,0,0,"Job Change to Acolyte" -1002,0,0,0,0,0,0,0,"Job Change to Acolyte" -1003,0,0,0,0,0,0,0,"Job Change to Acolyte" -1004,0,0,0,0,0,0,0,"Job Change to Archer" -1005,0,0,0,0,0,0,0,"Job Change to Mage" -1006,0,0,0,0,0,0,0,"Job Change to Mage" -1007,0,0,0,0,0,0,0,"Job Change to Mage" -1008,0,0,0,0,0,0,0,"Job Change to Mage" -1009,0,0,0,0,0,0,0,"Job Change to Merchant" -1010,0,0,0,0,0,0,0,"Job Change to Merchant" -1011,0,0,0,0,0,0,0,"Job Change to Merchant" -1012,0,0,0,0,0,0,0,"Job Change to Merchant" -1013,0,0,0,0,0,0,0,"Job Change to Thief" -1014,0,0,0,0,0,0,0,"Job Change to Swordman" -1015,0,0,0,0,0,0,0,"Your first quest" -1016,0,0,0,0,0,0,0,"Gaining base levels" - -// 2010 Headgear Quests -1100,0,1178,20,0,0,0,0,"Solo in the Sphinx Dungeon!" -1101,0,1164,20,0,0,0,0,"Soloing Sphinx Dungeon!" -1102,0,1194,40,0,0,0,0,"Soloing Clock Tower!" -1103,0,1213,30,0,0,0,0,"Soloing Clock Tower!" -1104,0,1519,20,0,0,0,0,"Solo at Louyang!" -1105,0,1513,50,0,0,0,0,"Solo at Louyang!" -1106,0,1375,20,0,0,0,0,"Solo at Amatsu Dungeon!" -1107,0,1403,40,0,0,0,0,"Solo at Amatsu Dungeon!" -1108,0,1631,20,0,0,0,0,"Solo at Louyang!" - -// Ropewa & Yuridi Quest -1109,0,0,0,0,0,0,0,"Ropewa & Yuridi - Survivors of the Labyrinth" -1110,0,0,0,0,0,0,0,"Ropewa & Yuridi - Victims of the Labyrinth" -1111,0,0,0,0,0,0,0,"Ropewa & Yuridi - Maze in the Labyrinth" -1112,0,0,0,0,0,0,0,"Ropewa & Yuridi - Lost in the Labyrinth" -1113,0,0,0,0,0,0,0,"Ropewa & Yuridi - Torn Apart" -1114,0,0,0,0,0,0,0,"Ropewa & Yuridi - The Cost of Restoration" -1115,0,0,0,0,0,0,0,"Ropewa & Yuridi - Song of the Abyss" -1116,0,0,0,0,0,0,0,"Ropewa & Yuridi - Dead Man's Song" -1117,0,0,0,0,0,0,0,"Ropewa & Yuridi - Eternal Promise, Broken Ring" -1118,0,0,0,0,0,0,0,"Neighborhood Knight - I Need Clues" -1119,82800,0,0,0,0,0,0,"Neighborhood Knight - Cooldown" - -1145,0,0,0,0,0,0,0,"Help the poor cat" -1146,0,0,0,0,0,0,0,"Help the poor cat" -1147,0,0,0,0,0,0,0,"Help the poor cat" -1148,0,0,0,0,0,0,0,"Help the poor cat" -1149,0,0,0,0,0,0,0,"Help the poor cat" -1150,0,0,0,0,0,0,0,"Help the poor cat" -1151,0,0,0,0,0,0,0,"Help the poor cat" -1152,82800,0,0,0,0,0,0,"Help the poor cat" -1153,0,0,0,0,0,0,0,"Help the poor cat" -1154,0,2197,20,0,0,0,0,"Help the poor cat" -1155,0,0,0,0,0,0,0,"Help the poor cat" -1174,0,0,0,0,0,0,0,"Rumor, Time and Legend" -1175,0,0,0,0,0,0,0,"Rumor, Time and Legend" -1176,0,0,0,0,0,0,0,"Rumor, Time and Legend" -1177,0,0,0,0,0,0,0,"Rumor, Time and Legend" -1178,0,0,0,0,0,0,0,"Rumor, Time and Legend" -1179,0,0,0,0,0,0,0,"Rumor, Time and Legend" -1180,0,0,0,0,0,0,0,"Get Rid of Bakonawa" -1181,0,0,0,0,0,0,0,"Get Rid of Bakonawa" -1182,0,0,0,0,0,0,0,"Get Rid of Bakonawa" -1183,0,0,0,0,0,0,0,"Get Rid of Bakonawa" -1184,0,0,0,0,0,0,0,"Get Rid of Bakonawa" -1185,0,0,0,0,0,0,0,"Get Rid of Bakonawa" -1186,0,2313,15,0,0,0,0,"Get Rid of Bakonawa" -1187,0,0,0,0,0,0,0,"Get Rid of Bakonawa" -1188,0,0,0,0,0,0,0,"Get Rid of Bakonawa" -1189,0,0,0,0,0,0,0,"Get Rid of Bakonawa" -1190,0,0,0,0,0,0,0,"Get Rid of Bakonawa" -1191,0,0,0,0,0,0,0,"Get Rid of Bakonawa" -1192,0,0,0,0,0,0,0,"Get Rid of Bakonawa" -1193,0,0,0,0,0,0,0,"Get Rid of Bakonawa" - -// 2011 X-Mas Event -1194,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1195,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1196,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1197,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1198,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1199,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1200,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1201,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1202,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1203,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1204,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1205,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1206,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1207,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1208,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1209,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1210,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1211,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1212,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" -1213,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" - -// Find Professor Worm's Memory -1214,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" -1215,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" -1216,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" -1217,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" -1218,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" -1219,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" -1220,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" -1221,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" -1222,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" -1223,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" -1224,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" -1225,0,2367,15,0,0,0,0,"Getting back Professor Worm's memory" -1226,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" -1227,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" -1228,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" - -2000,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2001,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2002,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2003,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2004,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2005,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2006,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2007,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2008,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2009,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2010,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2011,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2012,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2013,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2014,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2015,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2016,0,0,0,0,0,0,0,"Job Change to Blacksmith" -2017,0,0,0,0,0,0,0,"Job Change to Rogue" -2018,0,0,0,0,0,0,0,"Job Change to Rogue" -2019,0,0,0,0,0,0,0,"Job Change to Rogue" -2020,0,0,0,0,0,0,0,"Job Change to Rogue" -2021,0,0,0,0,0,0,0,"Job Change to Rogue" -2022,0,0,0,0,0,0,0,"Job Change to Rogue" -2023,0,0,0,0,0,0,0,"Job Change to Rogue" -2024,0,0,0,0,0,0,0,"Job Change to Rogue" -2025,0,0,0,0,0,0,0,"Job Change to Rogue" -2026,0,0,0,0,0,0,0,"Job Change to Rogue" -2027,0,0,0,0,0,0,0,"Job Change to Rogue" -2028,0,0,0,0,0,0,0,"Job Change to Alchemist" -2029,0,0,0,0,0,0,0,"Job Change to Alchemist" -2030,0,0,0,0,0,0,0,"Job Change to Alchemist" -2031,0,0,0,0,0,0,0,"Job Change to Alchemist" -2032,0,0,0,0,0,0,0,"Job Change to Alchemist" -2033,0,0,0,0,0,0,0,"Job Change to Alchemist" -2034,0,0,0,0,0,0,0,"Job Change to Alchemist" -2035,0,0,0,0,0,0,0,"Job Change to Alchemist" -2036,0,0,0,0,0,0,0,"Job Change to Alchemist" -2037,0,0,0,0,0,0,0,"Job Change to Alchemist" -2038,0,0,0,0,0,0,0,"Job Change to Alchemist" -2039,0,0,0,0,0,0,0,"Job Change to Alchemist" -2040,0,0,0,0,0,0,0,"Job Change to Alchemist" -2041,0,0,0,0,0,0,0,"Job Change to Sage" -2042,0,0,0,0,0,0,0,"Job Change to Sage" -2043,0,0,0,0,0,0,0,"Job Change to Sage" -2044,0,0,0,0,0,0,0,"Job Change to Sage" -2045,0,0,0,0,0,0,0,"Job Change to Sage" -2046,0,0,0,0,0,0,0,"Job Change to Sage" -2047,0,0,0,0,0,0,0,"Job Change to Sage" -2048,0,0,0,0,0,0,0,"Job Change to Sage" -2049,0,0,0,0,0,0,0,"Job Change to Sage" -2050,0,0,0,0,0,0,0,"Job Change to Sage" -2051,0,0,0,0,0,0,0,"Job Change to Sage" -2052,0,0,0,0,0,0,0,"Job Change to Sage" -2053,0,0,0,0,0,0,0,"Job Change to Sage" -2054,0,0,0,0,0,0,0,"Job Change to Sage" -2055,0,0,0,0,0,0,0,"Job Change to Sage" -2056,0,0,0,0,0,0,0,"Job Change to Sage" -2057,0,0,0,0,0,0,0,"Job Change to Sage" -2058,0,0,0,0,0,0,0,"Job Change to Sage" -2059,0,0,0,0,0,0,0,"Job Change to Sage" -2060,0,0,0,0,0,0,0,"Job Change to Sage" -2061,0,0,0,0,0,0,0,"Job Change to Sage" -2062,0,0,0,0,0,0,0,"Job Change to Sage" -2063,0,0,0,0,0,0,0,"The Crow of the Fate - 1" -2064,0,0,0,0,0,0,0,"The Crow of the Fate - 2" -2065,0,0,0,0,0,0,0,"The Crow of the Fate - 3" -2066,0,0,0,0,0,0,0,"The Crow of the Fate - 4" -2067,0,0,0,0,0,0,0,"The Crow of the Fate - 5" -2068,0,0,0,0,0,0,0,"The Crow of the Fate - 6" -2069,300,0,0,0,0,0,0,"Tierra Gorge Battle" -2070,300,0,0,0,0,0,0,"Flavius Battle" -2071,0,0,0,0,0,0,0,"Cursed Property" -2072,0,0,0,0,0,0,0,"Cursed Property" -2073,0,0,0,0,0,0,0,"Cursed Property" -2074,0,0,0,0,0,0,0,"Cursed Property" -2075,0,0,0,0,0,0,0,"Cursed Property" -2076,0,0,0,0,0,0,0,"Cursed Property" -2077,0,0,0,0,0,0,0,"Cursed Property" -2078,0,0,0,0,0,0,0,"Cursed Property" -2079,0,0,0,0,0,0,0,"The past went wrong" -2080,0,0,0,0,0,0,0,"The past went wrong" -2081,0,0,0,0,0,0,0,"The past went wrong" -2082,0,0,0,0,0,0,0,"The past went wrong" -2083,0,0,0,0,0,0,0,"The past went wrong" -2084,0,0,0,0,0,0,0,"The past went wrong" -2085,0,0,0,0,0,0,0,"The past went wrong" -2086,0,0,0,0,0,0,0,"The Enterprise" -2087,0,0,0,0,0,0,0,"The Enterprise" -2088,0,0,0,0,0,0,0,"The Enterprise" -2089,0,0,0,0,0,0,0,"The Enterprise" -2090,0,0,0,0,0,0,0,"The Enterprise" -2091,0,0,0,0,0,0,0,"The Enterprise" -2092,0,0,0,0,0,0,0,"The Enterprise" -2093,0,0,0,0,0,0,0,"The Enterprise" -2094,0,0,0,0,0,0,0,"The Enterprise" -2095,0,0,0,0,0,0,0,"The Enterprise" -2109,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon" -2110,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon" -2111,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon" -2112,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon" -2113,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon" -2114,0,0,0,0,0,0,0,"Thor Volcano base camp" -2115,0,0,0,0,0,0,0,"Thor Volcano base camp" -2116,0,0,0,0,0,0,0,"Thor Volcano base camp" -2117,0,0,0,0,0,0,0,"Thor Volcano base camp" -2118,0,0,0,0,0,0,0,"Thor Volcano base camp" -2119,0,0,0,0,0,0,0,"Thor Volcano base camp" -2120,0,0,0,0,0,0,0,"Thor Volcano base camp" -2121,0,0,0,0,0,0,0,"Thor Volcano base camp" -2122,0,0,0,0,0,0,0,"Thor Volcano base camp" -2123,0,0,0,0,0,0,0,"Thor Volcano base camp" -2124,0,0,0,0,0,0,0,"Thor Volcano base camp" -2125,0,0,0,0,0,0,0,"Thor Volcano base camp" -2126,0,0,0,0,0,0,0,"Thor Volcano base camp" -2127,0,0,0,0,0,0,0,"Thor Volcano base camp" -2128,0,0,0,0,0,0,0,"Thor Volcano base camp" -2129,0,0,0,0,0,0,0,"Thor Volcano base camp" -2130,0,0,0,0,0,0,0,"Thor Volcano base camp" -2131,0,0,0,0,0,0,0,"Thor Volcano base camp" -2132,0,0,0,0,0,0,0,"For Arunafeltz" -2133,0,0,0,0,0,0,0,"For Arunafeltz" -2134,0,0,0,0,0,0,0,"For Arunafeltz" -2135,0,0,0,0,0,0,0,"For Arunafeltz" -2136,0,0,0,0,0,0,0,"For Arunafeltz" -2137,0,0,0,0,0,0,0,"For Arunafeltz" -2138,0,0,0,0,0,0,0,"For Arunafeltz" -2139,0,0,0,0,0,0,0,"For Arunafeltz" -2140,0,0,0,0,0,0,0,"For Arunafeltz" -2141,0,0,0,0,0,0,0,"For Arunafeltz" -2142,0,0,0,0,0,0,0,"For Arunafeltz" -2143,50,0,0,0,0,0,0,"Guild Dungeon Event" -2144,0,0,0,0,0,0,0,"Guild Dungeon Event" - -2147,0,0,0,0,0,0,0,"Attitude to the New" -2148,0,0,0,0,0,0,0,"Attitude to the New" -2149,0,0,0,0,0,0,0,"Attitude to the New" -2150,0,1995,30,0,0,0,0,"Attitude to the New" -2151,0,1992,10,0,0,0,0,"Attitude to the New" -2152,0,0,0,0,0,0,0,"Attitude to the New" -2153,0,0,0,0,0,0,0,"Attitude to the New" -2154,0,0,0,0,0,0,0,"Attitude to the New" -2155,0,0,0,0,0,0,0,"Attitude to the New" -2156,0,0,0,0,0,0,0,"Attitude to the New" -2157,0,1986,10,0,0,0,0,"Attitude to the New" -2158,0,0,0,0,0,0,0,"Finding a Fairy" -2159,0,0,0,0,0,0,0,"Finding a Tree Giant" -2179,0,0,0,0,0,0,0,"Dr. Lifeguard's request" -2180,0,0,0,0,0,0,0,"Dr. Lifeguard's request" -2181,0,0,0,0,0,0,0,"Dr. Lifeguard's request" -2182,64800,0,0,0,0,0,0,"Rough Minerals" -2183,0,0,0,0,0,0,0,"Flower of Alfheim" -2184,0,0,0,0,0,0,0,"Flower of Alfheim" -2185,0,0,0,0,0,0,0,"Spirit of Alfheim" -2186,64800,0,0,0,0,0,0,"Helping Grenouille" - -2187,0,0,0,0,0,0,0,"Arch Bishop job changing quest" -2188,0,0,0,0,0,0,0,"Arch Bishop job changing quest" -2189,0,0,0,0,0,0,0,"Arch Bishop job changing quest" -2190,0,0,0,0,0,0,0,"Arch Bishop job changing quest" -2191,0,0,0,0,0,0,0,"Arch Bishop job changing quest" - -2192,0,0,0,0,0,0,0,"Guarana quest" -2193,0,0,0,0,0,0,0,"Guarana quest" -2194,0,0,0,0,0,0,0,"Guarana quest" -2195,0,0,0,0,0,0,0,"Guarana quest" -2196,0,0,0,0,0,0,0,"Guarana quest" -2197,0,0,0,0,0,0,0,"Guarana quest" -2198,0,0,0,0,0,0,0,"Guarana quest" -2199,0,0,0,0,0,0,0,"Guarana quest" -2200,0,0,0,0,0,0,0,"Guarana quest" -2201,0,0,0,0,0,0,0,"Brasilis Water Lily" -2202,0,0,0,0,0,0,0,"Brasilis Water Lily" -2203,0,0,0,0,0,0,0,"Brasilis Water Lily" -2204,0,0,0,0,0,0,0,"Brasilis Water Lily" -2205,0,0,0,0,0,0,0,"Brasilis Water Lily" -2206,0,0,0,0,0,0,0,"Brasilis Water Lily" -2207,0,0,0,0,0,0,0,"Brasilis Water Lily" -2208,0,0,0,0,0,0,0,"Bathroom Ghost" - -2209,0,0,0,0,0,0,0,"Generic Job Change Quest" -2210,0,0,0,0,0,0,0,"Generic Job Change Quest" -2211,0,0,0,0,0,0,0,"Generic Job Change Quest" -2212,0,0,0,0,0,0,0,"Generic Job Change Quest" -2213,0,0,0,0,0,0,0,"Generic Job Change Quest" -2214,0,0,0,0,0,0,0,"Generic Job Change Quest" -2215,0,0,0,0,0,0,0,"Generic Job Change Quest" -2216,0,0,0,0,0,0,0,"Generic Job Change Quest" -2217,0,0,0,0,0,0,0,"Generic Job Change Quest" -2218,0,0,0,0,0,0,0,"Wanderer Job Change Quest" -2219,0,0,0,0,0,0,0,"Wanderer Job Change Quest" -2220,0,0,0,0,0,0,0,"Wanderer Job Change Quest" -2221,600,1718,50,0,0,0,0,"Wanderer Job Change Quest" -2222,0,0,0,0,0,0,0,"Wanderer Job Change Quest" -2223,0,1428,100,0,0,0,0,"Generic Job Change Quest" - -// Secret in the Woods -2271,0,0,0,0,0,0,0,"Secret in the Woods" -2272,0,0,0,0,0,0,0,"Secret in the Woods" -2273,0,0,0,0,0,0,0,"Secret in the Woods" -2274,0,0,0,0,0,0,0,"Secret in the Woods" -2275,0,0,0,0,0,0,0,"Secret in the Woods" -2276,0,0,0,0,0,0,0,"Secret in the Woods" -2277,0,0,0,0,0,0,0,"Secret in the Woods" -2278,0,0,0,0,0,0,0,"Secret in the Woods" -2279,0,0,0,0,0,0,0,"Secret in the Woods" -2280,0,0,0,0,0,0,0,"Secret in the Woods" -2281,0,2319,1,0,0,0,0,"Get Rid of Buwaya" - -// Pyramid (Nightmare) -2289,0,2355,20,0,0,0,0,"Verit Hunting (Nightmare)" -2290,82800,0,0,0,0,0,0,"Verit Hunting - Cooldown" -2291,82800,0,0,0,0,0,0,"Mummy Hunting - Cooldown" -2292,0,2360,20,0,0,0,0,"Mummy Hunting (Nightmare)" - -// New Novice Ground -2299,0,0,0,0,0,0,0,"Training Center: Talk to Lisa" -2300,0,0,0,0,0,0,0,"Training Center: Talk to General Reindeer" -2301,0,0,0,0,0,0,0,"Training Center: Leave the boat" -2302,0,0,0,0,0,0,0,"Training Center: Formation" - -//2315,0,0,0,0,0,0,0,"" - -3000,0,0,0,0,0,0,0,"Job Change to Bard" -3001,0,0,0,0,0,0,0,"Job Change to Bard" -3002,0,0,0,0,0,0,0,"Job Change to Bard" -3003,0,0,0,0,0,0,0,"Job Change to Bard" -3004,0,0,0,0,0,0,0,"Job Change to Bard" -3006,0,0,0,0,0,0,0,"Job Change to Crusader" -3007,0,0,0,0,0,0,0,"Job Change to Crusader" -3008,0,0,0,0,0,0,0,"Job Change to Crusader" -3009,0,0,0,0,0,0,0,"Job Change to Crusader" -3010,0,0,0,0,0,0,0,"Job Change to Crusader" -3011,0,0,0,0,0,0,0,"Job Change to Crusader" -3012,0,0,0,0,0,0,0,"Job Change to Crusader" -3013,0,0,0,0,0,0,0,"Job Change to Crusader" -3014,0,0,0,0,0,0,0,"Job Change to Crusader" -3015,0,0,0,0,0,0,0,"Job Change to Crusader" -3016,0,0,0,0,0,0,0,"Job Change to Monk" -3017,0,0,0,0,0,0,0,"Job Change to Monk" -3018,0,0,0,0,0,0,0,"Job Change to Monk" -3019,0,0,0,0,0,0,0,"Job Change to Monk" -3020,0,0,0,0,0,0,0,"Job Change to Monk" -3021,0,0,0,0,0,0,0,"Job Change to Monk" -3022,0,0,0,0,0,0,0,"Job Change to Monk" -3023,0,0,0,0,0,0,0,"Job Change to Monk" -3024,0,0,0,0,0,0,0,"Job Change to Monk" -3025,0,0,0,0,0,0,0,"Job Change to Monk" -3026,0,0,0,0,0,0,0,"Job Change to Monk" -3027,0,0,0,0,0,0,0,"Job Change to Monk" -3028,0,0,0,0,0,0,0,"Job Change to Monk - Marathon" -3029,0,0,0,0,0,0,0,"Job Change to Monk - Final test" -//3030,0,0,0,0,0,0,0,"Job Change to Monk" -3031,0,0,0,0,0,0,0,"Job Change to Monk - Spiritual Training" -3032,0,0,0,0,0,0,0,"Job Change to Monk - Become a Monk" -3040,43200,0,0,0,0,0,0,"The Curse of Baphomet" -3041,180,0,0,0,0,0,0,"The Curse of Baphomet" -3042,0,0,0,0,0,0,0,"The Cursed Baphomet Doll" -3043,0,0,0,0,0,0,0,"The Gigantic Magestic Goat" -3044,0,0,0,0,0,0,0,"The Gigantic Magestic Goat" -3045,7200,0,0,0,0,0,0,"Sealed Shrine" -3046,0,0,0,0,0,0,0,"Sealed Shrine After-effect" - -3050,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 1" -3051,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 2" -3052,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 3" -3053,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 4" -3054,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 5" -3055,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 6" -3056,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 7" -3060,0,0,0,0,0,0,0,"Kids in Veins - Where's the Little Sis?" -3061,0,0,0,0,0,0,0,"Kids in Veins - Find a way to unlock the shackles!" -3062,0,0,0,0,0,0,0,"Kids in Veins - Find the Locksmith!" -3063,0,0,0,0,0,0,0,"Kids in Veins - Mr. Lockenlock?" -3064,0,0,0,0,0,0,0,"Kids in Veins - Organic Chamelepu Soap" -3065,0,0,0,0,0,0,0,"Kids in Veins - Soap Ingredients" -3066,0,0,0,0,0,0,0,"Kids in Veins - To make a Chamelepu Soap..." -3067,0,0,0,0,0,0,0,"Kids in Veins - Camel Appetite Stimulants" -3068,0,0,0,0,0,0,0,"Kids in Veins - Getting the Camel Dung" -3069,0,0,0,0,0,0,0,"Kids in Veins - Where's the Silk Sand Camel?" -3070,0,0,0,0,0,0,0,"Kids in Veins - Silk Sand Camel is gone!" -3071,0,0,0,0,0,0,0,"Kids in Veins - Silk Sand Camel is found!" -3072,0,0,0,0,0,0,0,"Kids in Veins - 1 lump of Camel dung obtained" -3073,0,0,0,0,0,0,0,"Kids in Veins - 2 lumps of Camel dung obtained" -3074,0,0,0,0,0,0,0,"Kids in Veins - 3 lumps of Camel dung obtained" -3075,0,0,0,0,0,0,0,"Kids in Veins - 4 lumps of Camel dung obtained" -3076,0,0,0,0,0,0,0,"Kids in Veins - 5 lumps of Camel dung obtained" -3077,0,0,0,0,0,0,0,"Kids in Veins - Go to Ms. Ivory" -3078,0,0,0,0,0,0,0,"Kids in Veins - Chamalepu Soap is completed!" -3079,0,0,0,0,0,0,0,"Kids in Veins - Making the key mold" -3080,0,0,0,0,0,0,0,"Kids in Veins - Bringing the key mold" -3081,0,0,0,0,0,0,0,"Kids in Veins - All you need is Steel!" -3082,0,0,0,0,0,0,0,"Kids in Veins - The Key is Made!" -3083,0,0,0,0,0,0,0,"Kids in Veins - Mr. Lockenlock's key" -3085,0,0,0,0,0,0,0,"Call from the commander" -3086,0,0,0,0,0,0,0,"Commander's Duty" -3087,0,0,0,0,0,0,0,"Report to Rune Midgard" -3088,0,0,0,0,0,0,0,"Report to the continent - Accident!" -3089,0,0,0,0,0,0,0,"Report to the continent - How to restore" -3090,0,0,0,0,0,0,0,"Report to the continent - Location of reports" -3091,1800,0,0,0,0,0,0,"Report to the continent - Location of reports" -3092,0,0,0,0,0,0,0,"Report to the continent - Success to restore!" -3093,0,0,0,0,0,0,0,"Report to the continent - Report to the continent" -3094,0,0,0,0,0,0,0,"Report to the continent - Return to the expedition" - -3100,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Lost Bond of Debt" -3101,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Strange Heap of Earth" -3102,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Bond of Debt Found, but..." -3103,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Inventor Dorian" -3104,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repair Materials of Magic Dryer" -3105,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer" -3106,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer Failed" -3107,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer Successful" -3108,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Let's Run the Magic Dryer" -3109,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Restoring the Bond of Debt" -3110,0,0,0,0,0,0,0,"Stolen Diamond - Tracking the Diamond" -3111,0,0,0,0,0,0,0,"Stolen Diamond - Leblo's Favor" -3112,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor" -3113,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor" -3114,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor" -3115,0,0,0,0,0,0,0,"Stolen Diamond - Leblo's Information" -3116,0,0,0,0,0,0,0,"Stolen Diamond - Information from Rogue Investigator" -3117,0,0,0,0,0,0,0,"Stolen Diamond - Odd Switches" -3118,0,0,0,0,0,0,0,"Stolen Diamond - Diamond Found!" -3119,0,0,0,0,0,0,0,"Z Gang Wanted - Wanted Notice" -3120,0,0,0,0,0,0,0,"Z Gang Wanted - About Z Gang" -3121,0,0,0,0,0,0,0,"Z Gang Wanted - Valdes's Favor" -3122,0,0,0,0,0,0,0,"Z Gang Wanted - Information from Valdes" -3123,0,0,0,0,0,0,0,"Z Gang Wanted - Marybell's Test" -3124,0,0,0,0,0,0,0,"Z Gang Wanted - Challenging Moonho Ahn" -3125,0,0,0,0,0,0,0,"Z Gang Wanted - Challenging Moonho Ahn" -3126,0,0,0,0,0,0,0,"Z Gang Wanted - Information from Marybell" -3127,0,0,0,0,0,0,0,"Z Gang Wanted - Z Gang's Attack" -3128,0,0,0,0,0,0,0,"Z Gang Wanted - Z Gang's Attack" -3129,0,0,0,0,0,0,0,"Z Gang Wanted - Strange Letter" -3130,0,0,0,0,0,0,0,"Z Gang Wanted - Decrypting the letter..." -3131,0,0,0,0,0,0,0,"Z Gang Wanted - Code's Broken!" -3132,0,0,0,0,0,0,0,"Z Gang Wanted - Find the Z Gang's Agit" -3133,0,0,0,0,0,0,0,"Z Gang Wanted - Agit Found!" -3134,0,0,0,0,0,0,0,"Z Gang Wanted - Clean Sweep of Z Gang" -3135,259200,0,0,0,0,0,0,"Nidhoggur's Nest" -3136,14400,0,0,0,0,0,0,"Nidhoggur's Nest Time Limit" - -3200,0,0,0,0,0,0,0,"Job changes to Rune knight - Recommendation for Rune knight" -3201,0,0,0,0,0,0,0,"Job changes to Rune knight - Secret rendezvous of Rune knight" -3202,0,0,0,0,0,0,0,"Job changes to Rune knight - The first test" -3203,0,0,0,0,0,0,0,"Job changes to Rune knight - The first test" -3204,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the first test" -3205,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" -3206,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" -3207,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" -3208,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" -3209,0,1504,10,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy1" -3210,0,1506,10,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy2" -3211,0,1508,10,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy3" -3212,0,1510,10,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy4" -3213,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" -3214,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" -3215,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the second test" -3216,0,0,0,0,0,0,0,"Job changes to Rune knight - The final test" -3217,0,0,0,0,0,0,0,"Job changes to Rune knight - The final test" -3218,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the final test" -3219,0,0,0,0,0,0,0,"Job changes to Rune knight - The end of all test" -3220,600,0,0,0,0,0,0,"Job changes to Rune knight - Waiting time of test" - -3250,0,1041,30,0,0,0,0,"Request - What is this bandage for?" -3251,0,1271,30,0,0,0,0,"Request - An alligator of Counterattack" -3252,0,1264,30,0,0,0,0,"Request - My mermaid don't do like this way!" -3253,0,0,0,0,0,0,0,"Request - Missing occult mania" -3254,0,0,0,0,0,0,0,"Request - A country wants you" -3255,0,1166,30,0,0,0,0,"Request - A wild boar subjugate operation" -3256,0,0,0,0,0,0,0,"Request - Ready for waiting summer" -3257,0,1170,30,0,0,0,0,"Request - A grudge of women" -3258,0,0,0,0,0,0,0,"Request - A material of delicacy" -3259,0,1143,30,0,0,0,0,"Request - A agony of a doll master" -3260,0,1035,30,0,0,0,0,"Request - Tiresome flies" -3261,0,1026,30,0,0,0,0,"Request - Unclean girl" -3262,0,0,0,0,0,0,0,"Request - Queer hobby" -3263,0,0,0,0,0,0,0,"Request - A mallet of goblin" -3265,0,0,0,0,0,0,0,"Request - Missing occult mania" - -4000,0,0,0,0,0,0,0,"Sherin's Job Interview" -4001,0,0,0,0,0,0,0,"Job Change to Hunter" -4002,0,0,0,0,0,0,0,"Job Change to Hunter" -4003,0,0,0,0,0,0,0,"Job Change to Hunter" -4004,0,0,0,0,0,0,0,"Job Change to Hunter" -4005,0,0,0,0,0,0,0,"Job Change to Hunter" -4006,0,0,0,0,0,0,0,"Job Change to Hunter" -4007,0,0,0,0,0,0,0,"Job Change to Hunter" -4008,0,0,0,0,0,0,0,"Job Change to Hunter" -4009,0,0,0,0,0,0,0,"Job Change to Hunter" -4010,0,0,0,0,0,0,0,"Job Change to Hunter" -4011,0,0,0,0,0,0,0,"Job Change to Hunter - Test" -4012,0,0,0,0,0,0,0,"Job Change to Hunter" -4013,0,0,0,0,0,0,0,"Job Change to Hunter" - -// Following entries are depreciated - use 10000-10025 -//4015,0,0,0,0,0,0,0,"Becoming an Adventurer Appraiser" -//4016,0,0,0,0,0,0,0,"Proof of Qualification" -//4017,0,0,0,0,0,0,0,"Qualification Test" -//4018,0,0,0,0,0,0,0,"Preparations for Meeting Princes" -//4020,0,0,0,0,0,0,0,"Interview with the Prince" -//4021,0,0,0,0,0,0,0,"Interview with the Prince" -//4022,0,0,0,0,0,0,0,"Interview with the Prince" -//4023,0,0,0,0,0,0,0,"Interview with the Prince" -//4024,0,0,0,0,0,0,0,"Interview with the Prince" -//4025,0,0,0,0,0,0,0,"Interview with the Prince" -//4026,0,0,0,0,0,0,0,"Interview with the Prince" -//4027,0,0,0,0,0,0,0,"Interview with the Prince" -//4028,0,0,0,0,0,0,0,"The prince, Peter's Favor" -//4029,0,0,0,0,0,0,0,"The Girl's Favor" -//4030,0,0,0,0,0,0,0,"The Story of Ahrum and Ernst" -//4031,0,0,0,0,0,0,0,"The Story of Ahrum and Ernst" -//4032,0,0,0,0,0,0,0,"Conspiracy of the two families" -//4033,0,0,0,0,0,0,0,"Death of Ahrum" - -4133,0,0,0,0,0,0,0,"Iara" -4134,0,0,0,0,0,0,0,"Iara" -4135,86400,0,0,0,0,0,0,"Iara" - -4154,0,0,0,0,0,0,0,"Homunculus Researcher" -4155,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 1" -4156,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 2" -4157,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 3" -4158,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 4" -4159,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 5" -4160,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 6" - -4161,0,0,0,0,0,0,0,"Siege Expert" -4162,0,0,0,0,0,0,0,"Party Recruiting Expert" -4163,0,0,0,0,0,0,0,"Battleground Expert" -4164,0,0,0,0,0,0,0,"Memorial Dungeon Expert" -4165,0,0,0,0,0,0,0,"Map Expert" -4166,0,0,0,0,0,0,0,"Passing Grades" - -// Paradise 86 - 90 [Chilly] -4167,0,1321,30,0,0,0,0,"Paradise: Dragon Tail Handling" -4168,0,1322,30,0,0,0,0,"Paradise: Spring Rabbit Handling" -4169,0,1256,30,0,0,0,0,"Paradise: Pest Handling" -4170,0,1102,30,0,0,0,0,"Paradise: Bathory Handling" -4171,0,1193,30,0,0,0,0,"Paradise: Alarm Handling" -4172,0,1882,30,0,0,0,0,"Paradise: Babayaga Handling" -4173,0,1512,30,0,0,0,0,"Paradise: Hyegun Handling" -4174,0,1403,30,0,0,0,0,"Paradise: Antique Firelock Handling" -4175,0,1417,30,0,0,0,0,"Paradise: Zipper Bear Handling" -4176,0,1155,30,0,0,0,0,"Paradise: Earth Petite Handling" -4177,0,1162,30,0,0,0,0,"Paradise: Rafflesia Handling" -4178,0,1621,30,0,0,0,0,"Paradise: Venomous Handling" -4179,0,1616,30,0,0,0,0,"Paradise: Pitman Handling" -4180,0,1718,30,0,0,0,0,"Paradise: Yellow Novus Handling" - -// Paradise 91 - 99 [Chilly] -4181,0,1316,30,0,0,0,0,"Paradise: Solider Handling" -4182,0,1319,30,0,0,0,0,"Paradise: Freezer Handling" -4183,0,1318,30,0,0,0,0,"Paradise: Heater Handling" -4184,0,1257,30,0,0,0,0,"Paradise: Injustice Handling" -4185,0,1201,30,0,0,0,0,"Paradise: Rybio Handling" -4186,0,1198,30,0,0,0,0,"Paradise: Dark Priest Handling" -4187,0,1784,30,0,0,0,0,"Paradise: Stapo Handling" -4188,0,1782,30,0,0,0,0,"Paradise: Roween Handling" -4189,0,1776,30,0,0,0,0,"Paradise: Siroma Handling" -4190,0,1401,30,0,0,0,0,"Paradise: Shinobi Handling" -4191,0,1416,30,0,0,0,0,"Paradise: Evil Nymph Handling" -4192,0,1109,30,0,0,0,0,"Paradise: Deviruchi Handling" -4193,0,1614,30,0,0,0,0,"Paradise: Mineral Handling" -4194,0,1072,30,0,0,0,0,"Paradise: Kaho Handling" -4195,0,1255,30,0,0,0,0,"Paradise: Neraid Handling" -4196,0,1506,30,0,0,0,0,"Paradise: Disguise Handling" - -4197,10800,0,0,0,0,0,0,"Octopus" - -// Paradise Cooldowns -4198,10800,0,0,0,0,0,0,"86-90 Mission Board Timer" -4199,10800,0,0,0,0,0,0,"86-90 Mission Board Timer" -4200,10800,0,0,0,0,0,0,"86-90 Mission Board Timer" -4201,10800,0,0,0,0,0,0,"86-90 Mission Board Timer" -4202,10800,0,0,0,0,0,0,"86-90 Mission Board Timer" -4203,10800,0,0,0,0,0,0,"86-90 Mission Board Timer" -4204,10800,0,0,0,0,0,0,"86-90 Mission Board Timer" -4205,10800,0,0,0,0,0,0,"86-90 Mission Board Timer" -4206,10800,0,0,0,0,0,0,"86-90 Mission Board Timer" -4207,10800,0,0,0,0,0,0,"86-90 Mission Board Timer" -4208,10800,0,0,0,0,0,0,"86-90 Mission Board Timer" -4209,10800,0,0,0,0,0,0,"86-90 Mission Board Timer" -4210,10800,0,0,0,0,0,0,"86-90 Mission Board Timer" -4211,10800,0,0,0,0,0,0,"86-90 Mission Board Timer" -4212,10800,0,0,0,0,0,0,"91-99 Mission Board Timer" -4213,10800,0,0,0,0,0,0,"91-99 Mission Board Timer" -4214,10800,0,0,0,0,0,0,"91-99 Mission Board Timer" -4215,10800,0,0,0,0,0,0,"91-99 Mission Board Timer" -4216,10800,0,0,0,0,0,0,"91-99 Mission Board Timer" -4217,10800,0,0,0,0,0,0,"91-99 Mission Board Timer" -4218,10800,0,0,0,0,0,0,"91-99 Mission Board Timer" -4219,10800,0,0,0,0,0,0,"91-99 Mission Board Timer" -4220,10800,0,0,0,0,0,0,"91-99 Mission Board Timer" -4221,10800,0,0,0,0,0,0,"91-99 Mission Board Timer" -4222,10800,0,0,0,0,0,0,"91-99 Mission Board Timer" -4223,10800,0,0,0,0,0,0,"91-99 Mission Board Timer" -4224,10800,0,0,0,0,0,0,"91-99 Mission Board Timer" -4225,10800,0,0,0,0,0,0,"91-99 Mission Board Timer" -4226,10800,0,0,0,0,0,0,"91-99 Mission Board Timer" -4227,10800,0,0,0,0,0,0,"91-99 Mission Board Timer" - -4229,82800,0,0,0,0,0,0,"Devil in the Cave" - -4254,0,0,0,0,0,0,0,"Fairy with a stomache" -4255,0,2363,20,0,0,0,0,"Revenge!" -4256,0,0,0,0,0,0,0,"An accomplice?" -4257,0,0,0,0,0,0,0,"Conspiracy" -4258,0,0,0,0,0,0,0,"Eirinn" -4259,0,0,0,0,0,0,0,"Bourbon" -4260,0,0,0,0,0,0,0,"Bee" -4261,0,0,0,0,0,0,0,"Counterattack (1)" -4262,0,0,0,0,0,0,0,"Counterattack (2)" -4263,0,0,0,0,0,0,0,"Counteroffensive (1)" -4264,0,0,0,0,0,0,0,"Counteroffensive (2)" -4265,0,0,0,0,0,0,0,"Bookshelf use" -4266,0,0,0,0,0,0,0,"????? ??" -4267,0,0,0,0,0,0,0,"????? ??" -//4303,0,0,0,0,0,0,0,"" -//4304,0,0,0,0,0,0,0,"" -//4305,0,0,0,0,0,0,0,"" -4999,0,0,0,0,0,0,0,"Extermination Crisis" -5000,0,0,0,0,0,0,0,"The Crow of the Fate - 7" -5001,0,1037,50,0,0,0,0,"King Froggie VII's revenge" -5002,0,0,0,0,0,0,0,"The hero of the frogs" -5003,0,0,0,0,0,0,0,"Frog Hiding Skill" -5004,0,1099,50,0,0,0,0,"Food Shortage" - -// Researcher's Quest -5016,0,0,0,0,0,0,0,"Bring me a Research Tool Bag" -5017,0,0,0,0,0,0,0,"Revenge of the Reseacher" -5018,0,0,0,0,0,0,0,"Revenge of the Reseacher" -5019,0,0,0,0,0,0,0,"Bathroom Sample Studying" -5020,86400,0,0,0,0,0,0,"Sample Researching" -5021,0,0,0,0,0,0,0,"Sample Collecting" -5022,0,0,0,0,0,0,0,"Sample Collecting" -5023,21600,0,0,0,0,0,0,"Inspection of the Sample" -5024,0,0,0,0,0,0,0,"Eastern Pool Research" -5025,0,0,0,0,0,0,0,"Western Pool Research" -5026,0,0,0,0,0,0,0,"Southern Pool Research" -5027,0,0,0,0,0,0,0,"Northern Pool Research" -5028,43200,0,0,0,0,0,0,"Inspection of the Sample" -5029,3600,0,0,0,0,0,0,"Unidentified Creature" -5030,0,0,0,0,0,0,0,"The creature's family" -5031,0,0,0,0,0,0,0,"The creature's family" -5032,0,0,0,0,0,0,0,"The creature's family" -5033,0,0,0,0,0,0,0,"The creature's family" -5034,0,0,0,0,0,0,0,"News from the family" -5035,0,0,0,0,0,0,0,"Help the old man!" -5036,0,0,0,0,0,0,0,"Help the old man!" -5037,0,0,0,0,0,0,0,"Help the old man!" -5038,0,0,0,0,0,0,0,"Help the old man!" -5039,0,0,0,0,0,0,0,"Help the old man!" -5040,0,0,0,0,0,0,0,"Help the old man!" -5041,0,0,0,0,0,0,0,"Help the old man!" -5042,0,0,0,0,0,0,0,"Help the old man!" -5043,300,0,0,0,0,0,0,"Help the old man!" -5044,86400,0,0,0,0,0,0,"Help the old man!" -5045,0,0,0,0,0,0,0,"Help the old man!" -5046,0,0,0,0,0,0,0,"Help the old man!" -5047,0,0,0,0,0,0,0,"Help the old man!" -5048,0,0,0,0,0,0,0,"Help the old man!" -5049,0,0,0,0,0,0,0,"Help the old man!" -5050,0,0,0,0,0,0,0,"Help the old man!" -5051,0,0,0,0,0,0,0,"Help the old man!" -5052,0,0,0,0,0,0,0,"Traditional Weapon" -5053,0,0,0,0,0,0,0,"Traditional Weapon" -5054,0,0,0,0,0,0,0,"Traditional Weapon" -5055,0,2071,15,0,0,0,0,"Local Rising - Headless Horse" -5056,0,1584,15,0,0,0,0,"Local Rising - Tamruan" -5057,0,0,0,0,0,0,0,"Local Rising - Ready the Festival" -5058,0,0,0,0,0,0,0,"The mood of the players-(1)" -5059,0,0,0,0,0,0,0,"The mood of the players-(2)" -5060,180,0,0,0,0,0,0,"Cat Shock" -5061,0,0,0,0,0,0,0,"Am I scared?" -5062,0,0,0,0,0,0,0,"I met Eryu." -5063,0,0,0,0,0,0,0,"I met Stew." -5064,0,0,0,0,0,0,0,"I met Ketchup." -5065,0,0,0,0,0,0,0,"I met Eff." -5066,0,0,0,0,0,0,0,"Scary image-(1)" -5067,0,0,0,0,0,0,0,"Scary image-(2)" -5068,72000,0,0,0,0,0,0,"Collecting complaint" -5069,3600,0,0,0,0,0,0,"Token of honor" -5070,86400,0,0,0,0,0,0,"Rock Paper Scissors" -5071,86400,0,0,0,0,0,0,"Chamchamcham" -5072,86400,0,0,0,0,0,0,"Kkongnyangkkong" -5073,86400,0,0,0,0,0,0,"Challenging of flag wave" -5074,0,1158,30,0,0,0,0,"Cat's Meal" -5075,0,1144,50,0,0,0,0,"Health food" -5076,0,1282,30,0,0,0,0,"Enemies" -5077,0,1209,10,0,0,0,0,"Reaction Training" -5078,0,1019,50,0,0,0,0,"Light bird food" -5079,0,0,0,0,0,0,0,"How to stabilize the mind" -5080,0,0,0,0,0,0,0,"Lack of Snack" -5081,0,0,0,0,0,0,0,"Banned foods" -5082,0,0,0,0,0,0,0,"Cool food" -5083,0,0,0,0,0,0,0,"Please come back Eryu-(1)" -5084,0,0,0,0,0,0,0,"Please come back Eryu-(2)" -5085,0,0,0,0,0,0,0,"Please come back Stew-(1)" -5086,0,0,0,0,0,0,0,"Please come back Stew-(2)" -5087,0,0,0,0,0,0,0,"Please come back Ketchup-(1)" -5088,0,0,0,0,0,0,0,"Please come back Ketchup-(2)" -5089,0,0,0,0,0,0,0,"Please come back Eff-(1)" -5090,0,0,0,0,0,0,0,"Please come back Eff-(2)" -5091,0,0,0,0,0,0,0,"Go Malangdo" - -5092,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" -5093,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" -5094,0,1002,1000,0,0,0,0,"Unlocking the Ultimate Mediocrity" -5095,0,1063,1000,0,0,0,0,"Unlocking the Ultimate Mediocrity" -5096,0,1007,1000,0,0,0,0,"Unlocking the Ultimate Mediocrity" -5097,0,1049,1000,0,0,0,0,"Unlocking the Ultimate Mediocrity" -5098,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" -5099,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" -5100,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" - -5109,0,0,0,0,0,0,0,"Light but Unconfirmed Rumor" -5110,0,0,0,0,0,0,0,"The Rumored Character" -5111,0,0,0,0,0,0,0,"To the Lab..." -5112,259200,0,0,0,0,0,0,"Laboratory Restricted Access" -5113,0,0,0,0,0,0,0,"[Rest] Lord Knight" -5114,0,0,0,0,0,0,0,"[Rest] Paladin" -5115,0,0,0,0,0,0,0,"[Rest] High Priest" -5116,0,0,0,0,0,0,0,"[Rest] Champion" -5117,0,0,0,0,0,0,0,"[Rest] High Wizard" -5118,0,0,0,0,0,0,0,"[Rest] Professor" -5119,0,0,0,0,0,0,0,"[Rest] Whitesmith" -5120,0,0,0,0,0,0,0,"[Rest] Creator" -5121,0,0,0,0,0,0,0,"[Rest] Assassin Cross" -5122,0,0,0,0,0,0,0,"[Rest] Stalker" -5123,0,0,0,0,0,0,0,"[Rest] Sniper" -5124,0,0,0,0,0,0,0,"[Rest] Clown" -5125,0,0,0,0,0,0,0,"[Rest] Gypsy" - -// Kagerou/Oboro Job Quest -5131,0,0,0,0,0,0,0,"Strange Conversation" -5132,0,0,0,0,0,0,0,"Family Business-(1)" -5133,0,0,0,0,0,0,0,"Family Business-(2)" -5134,0,0,0,0,0,0,0,"New path" -5135,0,0,0,0,0,0,0,"4 tests" -5136,0,0,0,0,0,0,0,"Knowledge test" -5137,0,0,0,0,0,0,0,"Survival test" -5138,0,0,0,0,0,0,0,"Weapons test" -5139,0,0,0,0,0,0,0,"The guy looks familiar!!" -5140,0,0,0,0,0,0,0,"Uncertain chilliness" -5141,120,0,0,0,0,0,0,"Got a curse!!" -5142,0,0,0,0,0,0,0,"Prototype-(1)" -5143,0,0,0,0,0,0,0,"Prototype-(2)" -5144,0,0,0,0,0,0,0,"Prototype-(2)" -5145,0,0,0,0,0,0,0,"Prototype-(3)" -5146,0,0,0,0,0,0,0,"Battle test" - -// 2012 Headgear Quests -5161,86400,0,0,0,0,0,0,"Low Level collection request[Stand by]" -5162,0,1164,100,0,0,0,0,"Low Level collection request" -5163,0,1102,100,0,0,0,0,"Low Level collection request" -5164,0,1322,100,0,0,0,0,"Low Level collection request" -5165,0,1386,100,0,0,0,0,"Low Level collection request" -5166,0,1117,100,0,0,0,0,"Low Level collection request" -5167,0,1155,100,0,0,0,0,"Low Level collection request" -5168,0,1269,100,0,0,0,0,"Low Level collection request" -5169,86400,0,0,0,0,0,0,"Mid-Level collection request[Stand by]" -5170,0,1776,100,0,0,0,0,"Mid-Level collection request" -5171,0,1198,100,0,0,0,0,"Mid-Level collection request" -5172,0,1784,100,0,0,0,0,"Mid-Level collection request" -5173,0,1316,100,0,0,0,0,"Mid-Level collection request" -5174,86400,0,0,0,0,0,0,"High level collectiong request[Stand by]" -5175,0,1106,100,0,0,0,0,"High level collection request" -5176,0,1148,100,0,0,0,0,"High level collection request" -5177,0,1995,100,0,0,0,0,"High level collection request" -5178,0,1310,100,0,0,0,0,"High level collection request" -5179,0,1163,100,0,0,0,0,"Highest level collection request" -5180,0,1993,100,0,0,0,0,"Highest level collection request" -5181,0,1297,100,0,0,0,0,"Highest level collection request" -5182,0,1699,100,0,0,0,0,"Highest level collection request" -5222,0,0,0,0,0,0,0,"Saving the energy crystals" -5223,0,0,0,0,0,0,0,"Saving the energy crystals" -5224,0,0,0,0,0,0,0,"Saving the energy crystals" -5225,7200,0,0,0,0,0,0,"Saving energy crystal[Stand by]" -5226,7200,0,0,0,0,0,0,"Saving energy crystal[Stand by]" -5227,7200,0,0,0,0,0,0,"Saving energy crystal[Stand by]" - -6000,0,0,0,0,0,0,0,"Job Change to Taekwon" -6001,0,0,0,0,0,0,0,"Job Change to Taekwon" -6002,0,0,0,0,0,0,0,"Job Change to Taekwon" -6005,0,0,0,0,0,0,0,"Job Change to Soul-Linker" -6006,0,0,0,0,0,0,0,"Job Change to Soul-Linker" -6007,0,0,0,0,0,0,0,"Job Change to Soul-Linker" -6008,0,0,0,0,0,0,0,"Job Change to Soul-Linker" -6010,0,0,0,0,0,0,0,"Job Change to Super Novice" -6015,0,0,0,0,0,0,0,"A favor from Cougar" -6016,0,0,0,0,0,0,0,"A favor from a Suspicious Man" -6017,0,0,0,0,0,0,0,"Red Leopard Joe's Reply" -6018,0,0,0,0,0,0,0,"Cougar's Madness" -6020,0,0,0,0,0,0,0,"Master Miller's Letter" -6021,0,0,0,0,0,0,0,"Wise Bull Horn's voucher" -6022,0,0,0,0,0,0,0,"Making a voucher" -6023,0,0,0,0,0,0,0,"Wise Bull Horn's Favor" -6024,0,0,0,0,0,0,0,"Job Change to Gunslinger!" -6025,300,0,0,0,0,0,0,"KVM Guillaume" -6026,300,0,0,0,0,0,0,"KVM Croix" -6027,300,0,0,0,0,0,0,"KVM Indicator" -7000,0,0,0,0,0,0,0,"Job Change to Dancer!" -7001,0,0,0,0,0,0,0,"Job Change to Dancer!" -7002,0,0,0,0,0,0,0,"Job Change to Dancer!" -7003,0,0,0,0,0,0,0,"Job Change to Dancer!" -7004,0,0,0,0,0,0,0,"Job Change to Dancer!" -7005,0,0,0,0,0,0,0,"Job Change to Dancer!" -7006,0,0,0,0,0,0,0,"Job Change to Dancer!" -7007,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars" -7008,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - Nature" -7009,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - the Altar" -7010,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - Stars?" -7011,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars" -7012,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7013,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7014,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7015,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7016,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7017,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7018,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7019,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7020,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7021,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7022,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7023,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7024,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7025,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7026,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7027,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7028,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7029,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7030,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7031,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7032,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7033,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7034,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7035,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7036,0,0,0,0,0,0,0,"Pursuing Rayan Moore" -7037,0,0,0,0,0,0,0,"Case closed?" -7038,0,0,0,0,0,0,0,"Passion for Baked Sweet Potatoes" -7039,0,0,0,0,0,0,0,"Dodging the conversation" -7040,0,0,0,0,0,0,0,"Dodging the conversation" -7041,0,0,0,0,0,0,0,"Politics is for the Politicians" -7042,0,0,0,0,0,0,0,"Part-time Job - Tatacho's feed" -7043,0,0,0,0,0,0,0,"Part-time Job - Cornus's feed" -7044,0,0,0,0,0,0,0,"Part-time Job - Hillthrion's feed1" -7045,0,0,0,0,0,0,0,"Part-time Job - Hillthrion's feed2" -7046,0,0,0,0,0,0,0,"Part-time Job - warm rugs" -7047,18000,0,0,0,0,0,0,"Part-time Job - Let's call it a day!" -7048,0,0,0,0,0,0,0,"Thanatos Tower - Burled's Favor" -7049,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower" -7050,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower" -7051,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower" -7052,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower" -7053,0,0,0,0,0,0,0,"Thanatos Tower - What they want is.." -7054,0,1282,1000,0,0,0,0,"Myu's Favor - Teach them a lesson!" -7055,0,1261,1,0,0,0,0,"Myu's Favor - Not the cat!" -7056,0,0,0,0,0,0,0,"Messenger - Arc's Favor" -7057,0,0,0,0,0,0,0,"Messenger - Arc's Favor" -7058,0,0,0,0,0,0,0,"Messenger - Arc's Favor" -7059,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" -7060,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" -7061,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" -7062,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" -7063,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" -7064,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" -7065,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" -7066,0,0,0,0,0,0,0,"Messenger - Prove the Truth" -7067,0,0,0,0,0,0,0,"Messenger - Prove the Truth" -7068,0,0,0,0,0,0,0,"Messenger - Prove the Truth" -7069,0,0,0,0,0,0,0,"Messenger - Too late!" -7070,0,0,0,0,0,0,0,"Messenger - Terra's Return" -7071,0,0,0,0,0,0,0,"Messenger - Invitation" -//7072,0,0,0,0,0,0,0,"" -//7073,86400,0,0,0,0,0,0,"" -7074,0,2017,1,0,0,0,0,"Rata Hunt" -7075,0,2018,1,0,0,0,0,"Duneyrr Hunt" -7076,0,2026,1,0,0,0,0,"Wanted: Dandelion" -7077,0,0,0,0,0,0,0,"Collecting Dragon Eggs" -7078,86400,0,0,0,0,0,0,"Collecting Dragon Eggs" -7079,0,0,0,0,0,0,0,"Finding Refined Bradium" -7080,86400,0,0,0,0,0,0,"Finding Refined Bradium" -7081,0,0,0,0,0,0,0,"Helping the Laphine Craftsman" -7082,86400,0,0,0,0,0,0,"Helping the Laphine Craftsman" - -7091,0,0,0,0,0,0,0,"An advice of Diora 01" -7092,0,0,0,0,0,0,0,"An advice of Diora 02" -7093,0,0,0,0,0,0,0,"An advice of Diora 03" -7094,0,0,0,0,0,0,0,"An advice of Diora 04" -7095,0,0,0,0,0,0,0,"An advice of Diora 05" -7096,0,0,0,0,0,0,0,"A proof of new requirement" -7097,0,0,0,0,0,0,0,"A proof of new requirement" -7098,0,0,0,0,0,0,0,"A proof of new requirement" -7099,0,0,0,0,0,0,0,"A proof of new requirement" -7100,0,0,0,0,0,0,0,"A message of Bercascell" -7101,0,0,0,0,0,0,0,"Special task of an assassin guild 1" -7102,0,0,0,0,0,0,0,"Special task of an assassin guild 2" -7103,0,0,0,0,0,0,0,"Special task of an assassin guild 3" -7104,0,0,0,0,0,0,0,"Special task of an assassin guild 4" -7105,0,0,0,0,0,0,0,"Special task of an assassin guild 4" -7106,0,0,0,0,0,0,0,"Special task of an assassin guild 5" -7107,0,0,0,0,0,0,0,"Special task of an assassin guild 6" -7108,0,0,0,0,0,0,0,"Special task of an assassin guild 7" -7109,0,0,0,0,0,0,0,"Special task of an assassin guild 8" -7110,0,0,0,0,0,0,0,"Special task of an assassin guild 9" -7111,0,0,0,0,0,0,0,"Special task of an assassin guild 10" -7112,0,0,0,0,0,0,0,"Information of Madelle" -7113,0,0,0,0,0,0,0,"Information of Crave" -7114,0,0,0,0,0,0,0,"Information of Trovan" -7115,0,0,0,0,0,0,0,"Information of a peddler" -7116,0,0,0,0,0,0,0,"Information of a old man" - -// Novice Training Grounds -7117,0,0,0,0,0,0,0,"Your first quest!" -7118,0,0,0,0,0,0,0,"Novice Training" -7119,0,0,0,0,0,0,0,"Novice Training" -7120,0,0,0,0,0,0,0,"Novice Training" -7121,0,0,0,0,0,0,0,"Novice Training" -7122,0,1002,1,0,0,0,0,"First battle - Poring Hunt" -7123,0,1049,2,0,0,0,0,"Battle Basics -Swordman" -7124,0,1063,5,0,0,0,0,"Battle Basics -Mage" -//7125,0,0,0,0,0,0,0,"not used" -7126,0,0,0,0,0,0,0,"Selling items" -7127,0,1010,5,0,0,0,0,"Battle Basics -Thief" - -7128,0,0,0,0,0,0,0,"Training course 'conquest a desert!' -start" -7129,0,1009,10,0,0,0,0,"The training course 'conquer the desert!' - A real battle 1" -7130,0,1107,10,0,0,0,0,"The training course 'conquer the desert!' - A real battle 2" -7131,0,1001,5,0,0,0,0,"The training course 'conquer the desert!' - A real battle 3" -7132,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - Complete a quest" -7133,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - Start" -7134,0,1051,10,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 1" -7135,0,1175,10,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 2" -7136,0,1005,5,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 3" -7137,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - Complete a quest" -7138,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - Start" -7139,0,1076,15,0,0,0,0,"The training course 'conquer the haunted cave!' - A real battle 1" -7140,0,1031,10,0,0,0,0,"The training course 'conquer the haunted cave!' - A real battle 2" -7141,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - Complete a quest" -7142,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - Start" -7143,0,1160,15,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 1" -7144,0,1095,15,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 2" -7145,0,1176,10,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 3" -7146,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - Complete a quest" -7147,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - start" -7148,0,1686,10,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 1" -7149,0,1023,10,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 2" -7150,0,1273,10,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 3" -7151,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - Complete a quest" -7152,0,0,0,0,0,0,0,"bThe training course 'conquer the orc dungeon!' - start" -7153,0,1153,20,0,0,0,0,"The training course 'conquer the orc dungeon!' - A real battle 1" -7154,0,1152,20,0,0,0,0,"The training course 'conquer the orc dungeon!'- A real battle 2" -7155,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!' - complete a quest" -7156,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - start" -7157,0,1264,15,0,0,0,0,"The training course 'conquer an undersea city!' - A real battle 1" -7158,0,1065,10,0,0,0,0,"The training course 'conquer an undersea city!' - A real battle 2" -7159,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - Complete a quest" - -7160,0,0,0,0,0,0,0,"Mysterious Cryptogram" -7161,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd" -7162,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd" -7163,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd" -7164,0,2076,1,0,0,0,0,"Hunt for shadow of deception" -7165,0,0,0,0,0,0,0,"Key of deception" -7166,0,0,0,0,0,0,0,"Rachel Branch of Shadow Workshop" -7167,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd" -7168,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd" -7169,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd" -7170,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd" -7171,0,2077,1,0,0,0,0,"Hunt for shadow of delusion" -7172,0,0,0,0,0,0,0,"Key of delusion" -7173,0,0,0,0,0,0,0,"Message to Halled from Paul" -7174,0,0,0,0,0,0,0,"Mysterious Cryptogram - 4th" -7175,0,2078,1,0,0,0,0,"Hunft for shadow of gaiety" -7176,0,0,0,0,0,0,0,"Key of Gaiety" -7177,0,0,0,0,0,0,0,"A young guy in Lighthalzen" -7178,0,0,0,0,0,0,0,"Destination of Deception, Delusion and Gaiety" -7179,0,0,0,0,0,0,0,"Vicente, you dare!" -7180,0,0,0,0,0,0,0,"Message from Doomk" - -7181,0,0,0,0,0,0,0,"Karakas's ring" - -// El Dicastes -7182,0,0,0,0,0,0,0,"Sapha's Visit" -7183,0,0,0,0,0,0,0,"Invitation from Sapha" -7184,0,0,0,0,0,0,0,"To El Dicastes!" -7185,0,0,0,0,0,0,0,"Inspector Doha" -7186,0,0,0,0,0,0,0,"Secret Order from Doha - Investigation" -7187,0,0,0,0,0,0,0,"Secret Order from Doha - Shay" -7188,0,0,0,0,0,0,0,"Information Gathering - in the Plaza" -7189,0,0,0,0,0,0,0,"Information Gathering - in the Factory" -7190,0,0,0,0,0,0,0,"Information Gathering - at the Guards" -7191,0,0,0,0,0,0,0,"Shay's designation - BK" -7192,0,0,0,0,0,0,0,"BK's Information" -7193,0,0,0,0,0,0,0,"Dimensional Crack Investigation" -7194,0,0,0,0,0,0,0,"What's this bloodstain?" -7195,0,0,0,0,0,0,0,"What's this skin piece?" -7196,0,0,0,0,0,0,0,"What's this suspicious magic power?" -7197,0,0,0,0,0,0,0,"Sapha Certifications?" -7198,0,0,0,0,0,0,0,"Audience with Ahat" -7199,0,0,0,0,0,0,0,"Secret Order from Ahat" -7200,82800,0,0,0,0,0,0,"Cheshire's call" -7201,0,0,0,0,0,0,0,"Removing traces" -7202,0,0,0,0,0,0,0,"Secret order from Doha - Collect proof" -7203,0,0,0,0,0,0,0,"Secret order from Doha - Final Report" -7206,0,0,0,0,0,0,0,"New Day for Cheshire" -7207,0,0,0,0,0,0,0,"Cheshire's Box" -7208,86400,0,0,0,0,0,0,"Wait for Cheshire?" -7209,0,0,0,0,0,0,0,"Forget the box." -7210,0,0,0,0,0,0,0,"Daily delivery" - -// Misty Forest Labyrinth -7211,9000,0,0,0,0,0,0,"Misty Forest Labyrinth Exploration" -7212,0,0,0,0,0,0,0,"Loki's Search" -7213,0,0,0,0,0,0,0,"Wandering Protector" - -// Paradise Gear Advanced Quests [Chilly] -7214,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Training" -7215,0,1278,3,0,0,0,0,"Paradise Advanced: Romeo Hunt 1" -7216,0,1278,10,0,0,0,0,"Paradise Advanced: Romeo Hunt 2" -7217,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Hunt 3" -7218,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Complete" -7219,0,0,0,0,0,0,0,"Paradise Advanced: Johan Training" -7220,0,1192,20,0,0,0,0,"Paradise Advanced: Johan Hunt 1" -7221,0,1117,10,0,0,0,0,"Paradise Advanced: Johan Hunt 2" -7222,0,0,0,0,0,0,0,"Paradise Advanced: Johan Complete" -7223,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Training" -7224,0,1619,30,0,0,0,0,"Paradise Advanced: Kiren Hunt 1" -7225,0,1620,30,0,0,0,0,"Paradise Advanced: Removed" -7226,0,1621,30,0,0,0,0,"Paradise Advanced: Kiren Hunt 2 (Part A)" -7227,0,1622,5,0,0,0,0,"Paradise Advanced: Kiren Hunt 2 (Part B)" -7228,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Complete" -7229,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Training" -7230,0,1776,30,0,0,0,0,"Paradise Advanced: Naomi Hunt 1" -7231,0,1776,30,0,0,0,0,"Paradise Advanced: Naomi Hunt 2" -7232,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Complete" -7233,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Training" -7234,0,0,0,0,0,0,0,"Paradise Advanced: Margaret's Favor" -7235,0,1988,1,0,0,0,0,"Paradise Advanced: Margaret Hunt 1" -7236,0,1995,5,0,0,0,0,"Paradise Advanced: Margaret Hunt 2" -7237,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Complete" -7238,0,0,0,0,0,0,0,"Toren's Errands (Easy)" -7239,0,0,0,0,0,0,0,"Toren's Errands (Normal)" -7240,0,0,0,0,0,0,0,"Strengthening Equipment" -7241,86400,0,0,0,0,0,0,"Toren's Errands - Tomorrow" -7242,0,0,0,0,0,0,0,"Play with the baby cat" -7243,0,0,0,0,0,0,0,"Nyadventure-Duruduru Compass" -7244,180,0,0,0,0,0,0,"Nyadventure-Duruduru Race" -7245,180,0,0,0,0,0,0,"Nyadventure-Duruduru Race" -7246,0,0,0,0,0,0,0,"Nyadventure-I'm coming now." -7247,0,0,0,0,0,0,0,"Nyadventure-Stop the Bang!" -//7248,0,0,0,0,0,0,0,"" -7249,86400,0,0,0,0,0,0,"Nyadventure-Bang! See you next time" -7250,0,0,0,0,0,0,0,"Nyadventure-Hidden Treasure?" -7251,0,0,0,0,0,0,0,"Nyadventure-The First piece of Painting" -7252,0,0,0,0,0,0,0,"Nyadventure-The Second piece of Painting" -7253,0,0,0,0,0,0,0,"Nyadventure-The Third piece of Painting" -7254,0,0,0,0,0,0,0,"Nyadventure-The Fourth piece of Painting" -7255,0,0,0,0,0,0,0,"Nyadventure-The Fifth piece of Painting" -7256,0,0,0,0,0,0,0,"Nyadventure-The Sixth piece of Painting" -7257,86400,0,0,0,0,0,0,"Nyadventure-Race, Come back tomorrow!" -7258,0,0,0,0,0,0,0,"Nyadventure-Painting completed" -7259,0,0,0,0,0,0,0,"Gift from the Mew Bravery Team" -7260,0,0,0,0,0,0,0,"The origin of Bugs" -7261,0,0,0,0,0,0,0,"Cat Biscuits - Table" -7262,0,0,0,0,0,0,0,"Cat Biscuits - Mattress" -7263,0,0,0,0,0,0,0,"Cat Biscuits - Grill" -7264,0,0,0,0,0,0,0,"To Chef Nyas" -7265,0,0,0,0,0,0,0,"Rage of Chef Nyas" -7266,0,0,0,0,0,0,0,"Declaration of Chef Nyas" -7267,86400,0,0,0,0,0,0,"Appointed time with Cleanyang" -7268,0,0,0,0,0,0,0,"Find the Cat's hard biscuits!" -7269,0,0,0,0,0,0,0,"Cat Biscuits - Resting Place" -7270,0,0,0,0,0,0,0,"Cat Biscuits - Sand" -7271,0,0,0,0,0,0,0,"Cat Biscuits - Bottom of the Stairs" -7272,0,0,0,0,0,0,0,"Cat Biscuits - Corner" -7273,0,0,0,0,0,0,0,"Cat Biscuits - Locker" -7274,0,0,0,0,0,0,0,"Cat Biscuits - Foothold" -7275,0,0,0,0,0,0,0,"Cat Biscuits - Sand" -7276,86400,0,0,0,0,0,0,"Promise to deliver more food" -7281,0,0,0,0,0,0,0,"List of Errands" -7282,0,0,0,0,0,0,0,"List of Errands" -7283,0,0,0,0,0,0,0,"List of Errands" -7284,0,0,0,0,0,0,0,"List of Errands" -7285,0,0,0,0,0,0,0,"List of Errands" -7286,0,0,0,0,0,0,0,"List of Errands" -7287,0,0,0,0,0,0,0,"List of Errands" -7288,0,0,0,0,0,0,0,"List of Errands" -7289,0,0,0,0,0,0,0,"List of Errands" -7290,0,0,0,0,0,0,0,"List of Errands" -7291,0,0,0,0,0,0,0,"List of Errands" -7292,0,0,0,0,0,0,0,"List of Errands" -7293,0,0,0,0,0,0,0,"List of Errands" -7294,0,0,0,0,0,0,0,"List of Errands" -7295,0,0,0,0,0,0,0,"List of Errands" -7296,0,0,0,0,0,0,0,"List of Errands" -7297,0,0,0,0,0,0,0,"List of Errands" -7298,0,0,0,0,0,0,0,"List of Errands" -7299,0,0,0,0,0,0,0,"List of Errands" -7300,0,0,0,0,0,0,0,"List of Errands" -7301,0,0,0,0,0,0,0,"List of Errands" -7302,0,0,0,0,0,0,0,"List of Errands" -7303,0,0,0,0,0,0,0,"List of Errands" -7304,0,0,0,0,0,0,0,"List of Errands" -7305,0,0,0,0,0,0,0,"List of Errands" -7306,0,0,0,0,0,0,0,"List of Errands" -7307,0,0,0,0,0,0,0,"List of Errands" -7308,0,0,0,0,0,0,0,"List of Errands" -7309,0,0,0,0,0,0,0,"List of Errands" -7310,0,0,0,0,0,0,0,"List of Errands" -7311,0,0,0,0,0,0,0,"List of Errands" -7312,0,0,0,0,0,0,0,"List of Errands" -7313,0,0,0,0,0,0,0,"List of Errands" -7314,0,0,0,0,0,0,0,"List of Errands" -7315,0,0,0,0,0,0,0,"List of Errands" -7316,0,0,0,0,0,0,0,"List of Errands" -7317,0,0,0,0,0,0,0,"List of Errands" -7318,0,0,0,0,0,0,0,"List of Errands" -7319,0,0,0,0,0,0,0,"List of Errands" -7320,0,0,0,0,0,0,0,"List of Errands" -7321,0,0,0,0,0,0,0,"List of Errands" -7322,0,0,0,0,0,0,0,"List of Errands" -7323,0,0,0,0,0,0,0,"List of Errands" -7324,0,0,0,0,0,0,0,"List of Errands" -7325,0,0,0,0,0,0,0,"List of Errands" -7326,0,0,0,0,0,0,0,"List of Errands" -7327,0,0,0,0,0,0,0,"List of Errands" -7328,0,0,0,0,0,0,0,"List of Errands" -7329,0,0,0,0,0,0,0,"List of Errands" -7330,0,0,0,0,0,0,0,"List of Errands" -7331,0,0,0,0,0,0,0,"List of Errands" -7332,0,0,0,0,0,0,0,"List of Errands" -7333,0,0,0,0,0,0,0,"List of Errands" -7334,0,0,0,0,0,0,0,"List of Errands" -7335,0,0,0,0,0,0,0,"List of Errands" -7336,0,0,0,0,0,0,0,"List of Errands" -7337,0,0,0,0,0,0,0,"List of Errands" -7338,0,0,0,0,0,0,0,"List of Errands" -7339,0,0,0,0,0,0,0,"List of Errands" -7340,0,0,0,0,0,0,0,"List of Errands" -7341,0,0,0,0,0,0,0,"List of Errands" -7342,0,0,0,0,0,0,0,"List of Errands" -7343,0,0,0,0,0,0,0,"List of Errands" -7344,0,0,0,0,0,0,0,"List of Errands" -7345,0,0,0,0,0,0,0,"List of Errands" -7346,0,0,0,0,0,0,0,"List of Errands" - -// Hall of Abyss -7349,1800,0,0,0,0,0,0,"Vote" - -// Port Malaya -7350,0,0,0,0,0,0,0,"Cautious Village" -7351,0,0,0,0,0,0,0,"Better than My Old Button" -7352,0,0,0,0,0,0,0,"Sailor Wants a Button" -7353,0,0,0,0,0,0,0,"Old Man Wants a Button" -7354,0,0,0,0,0,0,0,"Young Man Wants a Button" -7355,0,0,0,0,0,0,0,"Merchant Wants a Button" -7356,0,0,0,0,0,0,0,"Little Kid Wants a Button" -7357,0,0,0,0,0,0,0,"Middle-aged Guy Wants a Button" -7358,0,0,0,0,0,0,0,"Why do they want my Buttons?" -7359,0,0,0,0,0,0,0,"Deliver Holy Item to Sailor" -7360,0,0,0,0,0,0,0,"Deliver Holy Item to Old Man" -7361,0,0,0,0,0,0,0,"Deliver Holy Item to Young Man" -7362,0,0,0,0,0,0,0,"Deliver Holy Item to Merchant" -7363,0,0,0,0,0,0,0,"Deliver Holy Item to Little Kid" -7364,0,0,0,0,0,0,0,"Deliver Holy Item to Middle-aged Man" -7365,0,0,0,0,0,0,0,"Better than My Old Button-2" -7366,0,0,0,0,0,0,0,"Traditional Spiritual Protection and Impudent Girl-1" -7367,600,0,0,0,0,0,0,"Traditional Spiritual Protection and Impudent Girl-2" -7368,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Pedro" -7369,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Nardo" -7370,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Pandoi" -7371,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Woeon" -7372,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Talah" -7373,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Romel" -7374,0,0,0,0,0,0,0,"Love and Spiritual Protection for All" -7375,82800,0,0,0,0,0,0,"Love and Spiritual Protection Continues" -7376,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-1" -7377,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-2" -7378,82800,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-Regular Trades" -7379,0,0,0,0,0,0,0,"Peace Preacher" -7380,0,0,0,0,0,0,0,"To Smith a Traditional Spiritual Protection" -7381,82800,0,0,0,0,0,0,"High Demand on Spiritual Protection Material" -7382,0,0,0,0,0,0,0,"Deliver to Pedro" -7383,0,0,0,0,0,0,0,"Deliver to Nardo" -7384,0,0,0,0,0,0,0,"Deliver to Pandoi" -7385,0,0,0,0,0,0,0,"Deliver to Woeon" -7386,0,0,0,0,0,0,0,"Deliver to Talah" -7387,0,0,0,0,0,0,0,"Deliver to Romel" -7388,0,0,0,0,0,0,0,"Maries's Child" -7389,0,0,0,0,0,0,0,"Give the Shirt to Maries's Child" -7390,82800,0,0,0,0,0,0,"Worried about Maries's Child" -7391,0,0,0,0,0,0,0,"Jejeling and Jejellopy" -7392,86400,0,0,0,0,0,0,"Collect Jejellopy Regularly" -7393,0,2314,10,2311,10,0,0,"Shiny Silver Blade" -7394,82800,0,0,0,0,0,0,"Shiny Tomorrow" -7395,0,0,0,0,0,0,0,"Ghost on the Ferry Ship" -7396,0,0,0,0,0,0,0,"Angry Soul on Ferry Ship" -7397,0,0,0,0,0,0,0,"Mumbaki Phong's Advice" -7398,0,0,0,0,0,0,0,"Offering Bouquet Recommended by Mumbaki" -7399,0,0,0,0,0,0,0,"Soul Diwata's Story" -7400,0,0,0,0,0,0,0,"Mumbaki of Port Malaya" -7401,82800,0,0,0,0,0,0,"All Aboard for Perry Sailing" -7402,0,0,0,0,0,0,0,"Bouquet for Diwata" -7403,0,0,0,0,0,0,0,"Stabilized Perry" -7404,0,2316,20,0,0,0,0,"Get Rid of Jejeling" -7405,82800,0,0,0,0,0,0,"Get Rid of Jejeling - Same Time Tomorrow" -7406,0,0,0,0,0,0,0,"Agree to Collecting Bones!" -7407,0,0,0,0,0,0,0,"Purified Bone" -7408,82800,0,0,0,0,0,0,"Agree to Come Back Tomorrow?" -7409,0,2309,10,0,0,0,0,"Cannot Meet Eyes with Him!" -7410,82800,0,0,0,0,0,0,"Teach Another Lesson Tomorrow!" - -// Eclage -7411,0,0,0,0,0,0,0,"The traveler, Fome's story" -7412,0,0,0,0,0,0,0,"The traveler, Litrip's story" -7413,0,0,0,0,0,0,0,"The traveler, Chiba's story" -7414,0,0,0,0,0,0,0,"Eclage guard's message" -7415,0,0,0,0,0,0,0,"Laphine's Chief of Staff" -7416,600,0,0,0,0,0,0,"Waiting to meet" -7417,0,0,0,0,0,0,0,"Kardui's request" -7418,0,0,0,0,0,0,0,"For Eclage 1" -7419,0,0,0,0,0,0,0,"For Eclage 2" -7420,0,0,0,0,0,0,0,"For Eclage 3" -7421,0,0,0,0,0,0,0,"That's enough" -7422,0,0,0,0,0,0,0,"Kardui's gift" -7423,0,0,0,0,0,0,0,"A rumor about the King 1" -7424,0,0,0,0,0,0,0,"A rumor about the King 2" -7425,0,0,0,0,0,0,0,"A rumor about the King 3" -7426,0,0,0,0,0,0,0,"A rumor about the King 4" -7427,0,0,0,0,0,0,0,"At times like this, face it straight on!" -7428,0,0,0,0,0,0,0,"Yai of the wild" -7429,82800,0,0,0,0,0,0,"Wild recent trend!" -7430,0,0,0,0,0,0,0,"Deliveryman that runs through space" -7431,82800,0,0,0,0,0,0,"A mailman never rests!" -7432,0,2363,5,2364,5,0,0,"The troublemakers in the land of blooming flowers" -7433,82800,0,0,0,0,0,0,"Need constant guidance" - -// Twins and Scholar of Magics -7434,0,0,0,0,0,0,0,"Kardui's big brother" -7435,180,0,0,0,0,0,0,"Time for reading the letter" -7436,0,0,0,0,0,0,0,"Avant the Scholar of Magics" -7437,0,0,0,0,0,0,0,"Shenime's favor" -7438,0,0,0,0,0,0,0,"Secret sponsorship" -7439,0,0,0,0,0,0,0,"The scholar of magics sponsored by Shenime" -7440,0,0,0,0,0,0,0,"Minuel's witness" -7441,0,0,0,0,0,0,0,"Mail is here!" -7442,0,0,0,0,0,0,0,"The identity of the scholar of magics" -7443,0,0,0,0,0,0,0,"Interfere with the research!" -7444,0,0,0,0,0,0,0,"What Avant was researching" - -// Orb -7445,0,0,0,0,0,0,0,"Avant's back" -7446,0,0,0,0,0,0,0,"Unfruitful conversation" -7447,0,0,0,0,0,0,0,"Dilemma surrounding the Orb" -7448,0,0,0,0,0,0,0,"Something's not right" -7449,0,0,0,0,0,0,0,"Temptation toward the Orb" -7450,0,0,0,0,0,0,0,"Orb's lighting room" -7451,0,0,0,0,0,0,0,"Betrayal" -7452,0,0,0,0,0,0,0,"Find the chief of staff!" -7453,0,0,0,0,0,0,0,"The last of the chief of staff" - -//7619,0,0,0,0,0,0,0,"" -//7621,0,0,0,0,0,0,0,"" -//7622,0,0,0,0,0,0,0,"" -//7623,0,0,0,0,0,0,0,"" -//7624,0,0,0,0,0,0,0,"" -//7625,0,0,0,0,0,0,0,"" -//7626,0,0,0,0,0,0,0,"" -//7627,0,0,0,0,0,0,0,"" -//7628,0,0,0,0,0,0,0,"" -//7629,0,0,0,0,0,0,0,"" - -8000,0,0,0,0,0,0,0,"Quitting Job Change" -8001,0,0,0,0,0,0,0,"Job Change to Assassin" -8002,0,0,0,0,0,0,0,"Job Change to Assassin" -8003,0,0,0,0,0,0,0,"Job Change to Assassin" -8004,0,0,0,0,0,0,0,"Job Change to Assassin" -8005,0,0,0,0,0,0,0,"Job Change to Assassin" -8006,0,0,0,0,0,0,0,"Find the Guild Master!" -8007,0,0,0,0,0,0,0,"Acceptance from the Guild Master" -8008,0,0,0,0,0,0,0,"Job Change to Assassin" -8009,0,0,0,0,0,0,0,"Applying for Job Change to Priest" -8010,0,0,0,0,0,0,0,"Job Change to Priest" -8011,0,0,0,0,0,0,0,"Job Change to Priest" -8012,0,0,0,0,0,0,0,"Job Change to Priest" -8013,0,0,0,0,0,0,0,"Job Change to Priest" -8014,0,0,0,0,0,0,0,"Job Change to Priest" -8015,0,0,0,0,0,0,0,"Job Change to Priest" -8016,0,0,0,0,0,0,0,"Job Change to Priest" -8017,0,0,0,0,0,0,0,"Factory Inspection" -8018,0,0,0,0,0,0,0,"Factory Inspection" -8019,0,0,0,0,0,0,0,"Factory Inspection" -8020,0,0,0,0,0,0,0,"Factory Inspection" -8021,0,0,0,0,0,0,0,"Factory Inspection" -8022,0,0,0,0,0,0,0,"Factory Inspection" -8023,0,0,0,0,0,0,0,"Factory Inspection" -8024,0,0,0,0,0,0,0,"Factory Inspection" -8025,0,0,0,0,0,0,0,"Factory Inspection" -8026,0,0,0,0,0,0,0,"Factory Inspection" -8027,0,0,0,0,0,0,0,"Factory Inspection" -8028,0,0,0,0,0,0,0,"Factory Inspection" -8029,0,0,0,0,0,0,0,"Factory Inspection" -8030,0,0,0,0,0,0,0,"Factory Inspection" -8031,0,0,0,0,0,0,0,"Factory Inspection" -8032,0,0,0,0,0,0,0,"Tarlock's Favor" -8033,0,0,0,0,0,0,0,"Ferlock's Favor" -8034,0,0,0,0,0,0,0,"Ferlock's Favor" -8035,0,0,0,0,0,0,0,"How the Airship Works" -8036,0,0,0,0,0,0,0,"Hallen's Favor" -8037,0,0,0,0,0,0,0,"The Dice Roller" -8038,0,0,0,0,0,0,0,"The Dice Roller" -8039,0,0,0,0,0,0,0,"Secret of Airships" -8040,0,0,0,0,0,0,0,"Secret of Airships" -8041,0,0,0,0,0,0,0,"Secret of Airships" -8042,0,0,0,0,0,0,0,"Secret of Airships" -8043,0,0,0,0,0,0,0,"Secret of Airships" -8044,0,0,0,0,0,0,0,"Euslan's Fiancee" -8045,0,0,0,0,0,0,0,"Tips from Kaci" -8046,0,0,0,0,0,0,0,"Ferlock's Passengers list" -8047,0,0,0,0,0,0,0,"Euslan's Favor" -8048,0,0,0,0,0,0,0,"Eukran's Testimony" -8049,0,0,0,0,0,0,0,"Thierry's Favor" -8050,0,0,0,0,0,0,0,"Danger coming on to Thierry" -8051,0,0,0,0,0,0,0,"Euslan's Medicine" -8052,0,0,0,0,0,0,0,"Thierry's Favor" -8053,0,0,0,0,0,0,0,"Find Postell" -8054,0,0,0,0,0,0,0,"Message from Postell" -8055,0,0,0,0,0,0,0,"Nursing Allen" -8056,0,0,0,0,0,0,0,"Little something in return" -8057,0,0,0,0,0,0,0,"Grumbling Manainne" -8058,0,0,0,0,0,0,0,"Conversation with El Schatt" -8059,0,0,0,0,0,0,0,"Conversation with Perfitz" -8060,0,0,0,0,0,0,0,"Stubborn El Schatt" -8061,0,0,0,0,0,0,0,"Stories of the past" -8062,0,0,0,0,0,0,0,"Kanainne" -8063,0,0,0,0,0,0,0,"Kanainne's spirit" -8064,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" -8065,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" -8066,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" -8067,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" -8068,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" -8069,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" -8070,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" -8071,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" -8072,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" -8073,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" -8074,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" -8075,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" -8076,0,0,0,0,0,0,0,"Klitzer and Calla" -8077,0,0,0,0,0,0,0,"Klitzer and Calla" -8078,0,0,0,0,0,0,0,"Klitzer and Calla" -8079,0,0,0,0,0,0,0,"Klitzer and Calla" -8080,0,0,0,0,0,0,0,"Klitzer and Calla" -8081,0,0,0,0,0,0,0,"Klitzer and Calla" -8082,0,0,0,0,0,0,0,"Klitzer and Calla" -8083,0,0,0,0,0,0,0,"Klitzer and Calla" -8084,0,0,0,0,0,0,0,"Klitzer and Calla" -8085,0,0,0,0,0,0,0,"Klitzer and Calla" -8086,0,0,0,0,0,0,0,"Klitzer and Calla" -8087,0,0,0,0,0,0,0,"Klitzer and Calla" -8088,0,0,0,0,0,0,0,"Klitzer and Calla" -8089,0,0,0,0,0,0,0,"Stolen Gemstone" -8090,0,0,0,0,0,0,0,"Mr. Manson" -8091,0,0,0,0,0,0,0,"Jenny the gardener" -8092,0,0,0,0,0,0,0,"Searching the Market" -8093,0,0,0,0,0,0,0,"Mysterious Message" -8094,0,0,0,0,0,0,0,"Double Crossed?" -8095,0,0,0,0,0,0,0,"Find Phobe" -8096,0,0,0,0,0,0,0,"Stolen Gemstone Found" -8097,0,0,0,0,0,0,0,"Informing Jenny" -8098,0,0,0,0,0,0,0,"Keeping the Secret" -8099,0,0,0,0,0,0,0,"Vincent's Recommendation" -8100,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" -8101,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" -8102,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" -8103,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" -8104,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" -8105,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" -8106,0,0,0,0,0,0,0,"Mr. Shendar's daughter" -8107,0,0,0,0,0,0,0,"Lachellen's Testimony" -8108,0,0,0,0,0,0,0,"A Foreigner, Katinshuell" -8109,0,0,0,0,0,0,0,"Bruspetti's scent" -8110,0,0,0,0,0,0,0,"Bruspetti's scent" -8111,0,0,0,0,0,0,0,"Lachellen's Testimony" -8112,0,0,0,0,0,0,0,"Freya's Spring" -8113,0,0,0,0,0,0,0,"Bruspetti's Diary" -8114,0,0,0,0,0,0,0,"Bruspetti's Diary" -8115,0,0,0,0,0,0,0,"Suspicious Katinshuell" -8116,0,0,0,0,0,0,0,"Lachellen's Testimony" -8117,0,0,0,0,0,0,0,"Freya's Spring" -8118,0,0,0,0,0,0,0,"Conversation with Mr. Shendar" -8119,0,0,0,0,0,0,0,"Bruspetti's Diary" -8120,0,0,0,0,0,0,0,"Conversation with Katinshuell" -8121,0,0,0,0,0,0,0,"Conversation with Katinshuell" -8122,0,0,0,0,0,0,0,"Bruspetti's resting place" -8123,0,0,0,0,0,0,0,"Ayotaya's world famous dish, Tom Yum Goong" -8124,0,0,0,0,0,0,0,"Ayotaya's world famous dish, Tom Yum Goong" -8125,0,0,0,0,0,0,0,"Ayotaya's world famous dish, Tom Yum Goong" -8126,0,0,0,0,0,0,0,"Ayotaya's world famous dish, Tom Yum Goong" -8127,0,0,0,0,0,0,0,"Momotaro Field Trip" -8128,0,0,0,0,0,0,0,"Momotaro Field Trip" -8129,0,0,0,0,0,0,0,"Momotaro Field Trip" -8130,0,0,0,0,0,0,0,"Momotaro Field Trip" -8131,0,0,0,0,0,0,0,"The mother of lord in Amatsu" -8132,0,0,0,0,0,0,0,"The mother of lord in Amatsu" -8133,0,0,0,0,0,0,0,"Song of the fox" -8134,0,0,0,0,0,0,0,"Boy at the Northern Shrine" -8135,0,0,0,0,0,0,0,"Fox Expelled" -8136,0,0,0,0,0,0,0,"The Gray Wolf's Warning" -8137,0,0,0,0,0,0,0,"Finding the Keymaker" -8138,0,0,0,0,0,0,0,"Blacksmith's Request" -8139,0,0,0,0,0,0,0,"The Golden Key" -8140,0,0,0,0,0,0,0,"The Red Ring" -8141,0,0,0,0,0,0,0,"Mashenka's Red Ring" -8142,0,0,0,0,0,0,0,"Searching the Marsh" -8143,0,0,0,0,0,0,0,"The Flute's Voice" -8144,0,0,0,0,0,0,0,"Ryubaba's Confession" -8145,0,0,0,0,0,0,0,"Worried Mother's Request" -8146,0,0,0,0,0,0,0,"Finding Lusalka" -8147,0,0,0,0,0,0,0,"Lusalka's Beloved" -8148,0,0,0,0,0,0,0,"Lusalka's Beloved" -8149,0,0,0,0,0,0,0,"Searching for Igor" -8150,0,0,0,0,0,0,0,"Igor's message" -8151,0,0,0,0,0,0,0,"Marozka's Cave" -8152,0,0,0,0,0,0,0,"The Golden Thread" -8153,0,0,0,0,0,0,0,"Test of mind and wisdom" -8154,0,0,0,0,0,0,0,"The Keymaker" -8155,0,0,0,0,0,0,0,"Baba Yaga's Favor" -8156,0,0,0,0,0,0,0,"Baba Yaga's Favor" -8157,0,0,0,0,0,0,0,"Baba Yaga's Favor" -8158,0,0,0,0,0,0,0,"Baba Yaga's Favor" -8159,0,0,0,0,0,0,0,"Baba Yaga's Favor" -8160,0,0,0,0,0,0,0,"Baba Yaga's Favor" -8161,0,0,0,0,0,0,0,"Baba Yaga's Favor" -8162,0,0,0,0,0,0,0,"Baba Yaga's Favor" -8163,0,0,0,0,0,0,0,"Baba Yaga's Favor" -8164,0,0,0,0,0,0,0,"Baba Yaga's Favor" -8165,0,0,0,0,0,0,0,"Baba Yaga's Favor" -8166,0,0,0,0,0,0,0,"Baba Yaga's Favor" -8167,0,0,0,0,0,0,0,"The Golden Key" -8168,0,0,0,0,0,0,0,"Koshei, the Immortal" -8169,0,0,0,0,0,0,0,"Living and Dead Water" -8170,0,0,0,0,0,0,0,"Living and Dead Water" -8171,0,0,0,0,0,0,0,"Living and Dead Water" - -8181,0,0,0,0,0,0,0,"Sight Blaster" -8182,0,0,0,0,0,0,0,"Push Back Theory" -8183,0,0,0,0,0,0,0,"Sight Blaster" -8184,0,0,0,0,0,0,0,"Elemental Converter" -8185,0,0,0,0,0,0,0,"Elemental Change" -8186,0,0,0,0,0,0,0,"Fire Elemental Change" -8187,0,0,0,0,0,0,0,"Earth Elemental Change" -8188,0,0,0,0,0,0,0,"Wind Elemental Change" -8189,0,0,0,0,0,0,0,"Water Elemental Change" -8190,0,0,0,0,0,0,0,"Charming Wink" -8191,0,0,0,0,0,0,0,"Charming Advisor" -8192,0,0,0,0,0,0,0,"Selfish Advisor" -8193,0,0,0,0,0,0,0,"Selfish Advisor" -8194,0,0,0,0,0,0,0,"Drunken Advisor" -8195,0,0,0,0,0,0,0,"Kind Canell" -8196,0,0,0,0,0,0,0,"The Tripartite Union's Feud" -8197,0,0,0,0,0,0,0,"Document Delivery" -8198,0,0,0,0,0,0,0,"Report to the United Research Official" -8199,0,0,0,0,0,0,0,"United Research Official's Favor" -8200,0,0,0,0,0,0,0,"Ryosen's Document Requests" -8201,0,0,0,0,0,0,0,"Missing Document" -8202,0,0,0,0,0,0,0,"Document Restoration" -8203,0,0,0,0,0,0,0,"Document Restoration" -8204,0,0,0,0,0,0,0,"Ryosen" -8205,0,0,0,0,0,0,0,"Report to the United Research Official" -8206,0,0,0,0,0,0,0,"Researchers' Meeting" -8207,0,0,0,0,0,0,0,"Hansenne is not guilty." -8208,0,0,0,0,0,0,0,"Hansenne's Favor" -8209,0,0,0,0,0,0,0,"Hue's Report" -8210,0,0,0,0,0,0,0,"Report to the United Research Official" -8211,0,0,0,0,0,0,0,"Shurank's Lecture" -8212,0,0,0,0,0,0,0,"Shurank's Lecture" -8213,0,0,0,0,0,0,0,"Shurank's Lecture" -8214,0,0,0,0,0,0,0,"Shurank's Lecture" -8215,0,0,0,0,0,0,0,"Shurank's Lecture" -8216,0,0,0,0,0,0,0,"Shurank's Order" -8217,0,0,0,0,0,0,0,"Dequ'ee's Message" -8218,0,0,0,0,0,0,0,"Shurank's Lecture" -8219,0,0,0,0,0,0,0,"Shurank's Lecture" -8220,0,0,0,0,0,0,0,"Shurank's Lecture" -8221,0,0,0,0,0,0,0,"Shurank's Lecture" -8222,0,0,0,0,0,0,0,"Shurank's order" -8223,0,0,0,0,0,0,0,"Dequ'ee's order" -8224,0,0,0,0,0,0,0,"The clue" -8225,0,0,0,0,0,0,0,"Dequ'ee's Reasoning" -8226,0,0,0,0,0,0,0,"Bankley's Death" -8227,0,0,0,0,0,0,0,"Return to Shurank" -8228,0,0,0,0,0,0,0,"Shurank's Lecture" -8229,0,0,0,0,0,0,0,"Guarnien's Lecture" -8230,0,0,0,0,0,0,0,"Guarnien's Lecture" -8231,0,0,0,0,0,0,0,"Guarnien's Lecture" -8232,0,0,0,0,0,0,0,"Guarnien's Lecture" -8233,0,0,0,0,0,0,0,"Guarnien's Lecture" -8234,0,0,0,0,0,0,0,"Prontera Market Research" -8235,0,0,0,0,0,0,0,"Guarnien's Lecture" -8236,0,0,0,0,0,0,0,"Guarnien's Lecture" -8237,0,0,0,0,0,0,0,"Guarnien's Lecture" -8238,0,0,0,0,0,0,0,"Guarnien's Lecture" -8239,0,0,0,0,0,0,0,"Guarnien's Lecture" -8240,0,0,0,0,0,0,0,"Guarnien's Lecture" -8241,0,0,0,0,0,0,0,"Collection of Red Jewel" -8242,0,0,0,0,0,0,0,"Collection of blue Jewel" -8243,0,0,0,0,0,0,0,"Learning new languages" -8244,0,0,0,0,0,0,0,"Fairies and Tree Giants" -8245,0,0,0,0,0,0,0,"Language sample investigation" -8246,0,0,0,0,0,0,0,"Language sample investigation" -8247,0,0,0,0,0,0,0,"Research progress" -8248,0,0,0,0,0,0,0,"Research progress" -8249,0,0,0,0,0,0,0,"Compressing Information" -8250,0,0,0,0,0,0,0,"Storage Gem" -8251,0,0,0,0,0,0,0,"Injection of Magic" -8252,0,0,0,0,0,0,0,"Handworked jewels" -8253,3600,0,0,0,0,0,0,"Language translation device" - -8254,0,0,0,0,0,0,0,"with a light heart and body" -8255,0,0,0,0,0,0,0,"The test of power for existence" -8256,0,0,0,0,0,0,0,"The test of power for existence" -8257,0,0,0,0,0,0,0,"Providing food of Teardrop" -8258,0,0,0,0,0,0,0,"Providing food of Teardrop" -8259,0,0,0,0,0,0,0,"to a place for taking a practical technique test" -8260,0,0,0,0,0,0,0,"Mission! Documents delivery" -8261,0,0,0,0,0,0,0,"When you play the flute,then the wolf show up!" -8262,0,0,0,0,0,0,0,"Ranger master never again" - -8265,0,0,0,0,0,0,0,"One time a one hour!" - -8266,0,1077,10,0,0,0,0,"Hunting poison spore!" -8267,0,1056,10,0,0,0,0,"Hunting smokie!" -8268,0,1033,10,0,0,0,0,"Hunt elder wilow!" -8269,0,1104,10,0,0,0,0,"Hunt coco!" -8270,0,1034,10,0,0,0,0,"Hunt tharafrog!" -8271,0,0,0,0,0,0,0,"Toxic sprays delivery!" -8272,0,0,0,0,0,0,0,"Deliver a honey!" -8273,0,0,0,0,0,0,0,"Deliver a blanket!" -8274,0,0,0,0,0,0,0,"Collect bones!" -8275,0,0,0,0,0,0,0,"Collect feet!" -8276,0,0,0,0,0,0,0,"Collect scell!" -8277,0,0,0,0,0,0,0,"Collect tails!" -8278,0,0,0,0,0,0,0,"Collect cookies!" -8279,0,0,0,0,0,0,0,"Collect mustache!" - -9000,0,0,0,0,0,0,0,"Job Change to Knight" -9001,0,0,0,0,0,0,0,"Loyalty of a Knight" -9002,0,0,0,0,0,0,0,"Loyalty of a Knight" -9003,0,0,0,0,0,0,0,"The Honor of a Knight" -9004,0,0,0,0,0,0,0,"The Honor of a Knight" -9005,0,0,0,0,0,0,0,"Tenacity of a Knight" -9006,0,0,0,0,0,0,0,"Tenacity of a Knight" -9007,0,0,0,0,0,0,0,"The Honor of a Knight" -9008,0,0,0,0,0,0,0,"Etiquette as a Knight" -9009,0,0,0,0,0,0,0,"Life as a Knight" -9010,0,0,0,0,0,0,0,"Quality of reverence" -9011,0,0,0,0,0,0,0,"Life as a Knight" -9012,0,0,0,0,0,0,0,"Glory of a Knight!" -9013,0,0,0,0,0,0,0,"Job Change to Wizard" -9014,0,0,0,0,0,0,0,"Job Change to Wizard" -9015,0,0,0,0,0,0,0,"Job Change to Wizard" -9016,0,0,0,0,0,0,0,"Job Change to Wizard" -9017,0,0,0,0,0,0,0,"Job Change to Wizard" -9018,0,0,0,0,0,0,0,"Certified as a Wizard!" -9058,0,0,0,0,0,0,0,"O'Riley's Request" -9059,0,0,0,0,0,0,0,"Happy St. Patrick's Day" -9117,0,0,0,0,0,0,0,"Lina's Curse" -9118,0,1109,50,0,0,0,0,"Lina's Curse - Deviruchi Hunt" -9119,0,1291,50,0,0,0,0,"Lina's Curse - Wraith Dead Hunt" -9120,0,1504,50,0,0,0,0,"Lina's Curse - Dullahan Hunt" -9121,0,1379,50,0,0,0,0,"Lina's Curse - Nightmare Terror Hunt" -9122,0,0,0,0,0,0,0,"Lina's Curse" -9123,0,0,0,0,0,0,0,"Lina's Curse" -9024,0,0,0,0,0,0,0,"An errand boy from Einbroch" -// kRO -//9028,0,0,0,0,0,0,0,"strange Mouse" -//9029,86400,0,0,0,0,0,0,"Strange Mouse : present conditions" -// iRO/cRO -9028,0,0,0,0,0,0,0,"strange Hydra" -9029,86400,0,0,0,0,0,0,"Strange Hydra : present conditions" -9030,0,0,0,0,0,0,0,"Find a puppy" -9031,0,0,0,0,0,0,0,"Find a puppy" -9032,86400,0,0,0,0,0,0,"Find a puppy" - -9155,0,0,0,0,0,0,0,"Getting materials for the Jaty Crown" -9156,0,0,0,0,0,0,0,"Make the Jaty Crown" -9157,0,0,0,0,0,0,0,"Reward from Sage, Kasyapa" -9158,0,0,0,0,0,0,0,"Delivery of Good News(1)" -9159,0,0,0,0,0,0,0,"Back to Paiko" -9160,0,0,0,0,0,0,0,"Delivery of Good News(2)" -9161,0,0,0,0,0,0,0,"Back to Paiko" -9162,0,0,0,0,0,0,0,"Delivery of Good News(3)" -9163,0,0,0,0,0,0,0,"Back to Paiko" -9164,0,0,0,0,0,0,0,"Delivery of Good News(4)" -9165,0,0,0,0,0,0,0,"Reward from Paiko for success of Jaty Crown" - -9167,0,0,0,0,0,0,0,"Tutorial - Mercenary for Hire" -9168,0,0,0,0,0,0,0,"Quest Window Check" -9169,0,0,0,0,0,0,0,"Window Shopper Catalogue" -9170,0,0,0,0,0,0,0,"Window Shopper Catalogue" -9171,0,0,0,0,0,0,0,"Enchanting Items" -9172,0,0,0,0,0,0,0,"Enchanted Items" -9173,72000,0,0,0,0,0,0,"Tutorial Timer Cooldown" - -9222,0,2327,1,0,0,0,0,"Get Rid of Bangungot from Hospital 2F" -9223,604800,0,0,0,0,0,0,"Will there be Peace at the Hospital?" -9224,3600,0,0,0,0,0,0,"Explore Hospital 2F" - -9225,0,0,0,0,0,0,0,"Mystery Robbery Incident 1" -9226,0,0,0,0,0,0,0,"Mystery Robbery Incident 2" -9227,0,0,0,0,0,0,0,"Mystery Robbery Incident 3" -9228,0,0,0,0,0,0,0,"Mystery Robbery Incident 4" -9229,0,0,0,0,0,0,0,"Mystery Robbery Incident 5" -9230,0,0,0,0,0,0,0,"Mystery Robbery Incident 6" -9231,0,0,0,0,0,0,0,"Mystery Robbery Incident 7" -9232,0,0,0,0,0,0,0,"Mystery Robbery Incident 8" -9233,0,0,0,0,0,0,0,"Mystery Robbery Incident 9" -9234,0,0,0,0,0,0,0,"Mystery Robbery Incident 10" -9235,0,0,0,0,0,0,0,"Mystery Robbery Incident 11" -9236,0,0,0,0,0,0,0,"Mystery Robbery Incident 12" -9237,0,0,0,0,0,0,0,"Mystery Robbery Incident 13" -9238,0,0,0,0,0,0,0,"Mystery Robbery Incident 14" -9239,0,0,0,0,0,0,0,"Mystery Robbery Incident 15" -9240,0,0,0,0,0,0,0,"Luen's statement notes" -9241,0,0,0,0,0,0,0,"Luen's statement notes" -9242,0,0,0,0,0,0,0,"Luen's statement notes" -9243,0,0,0,0,0,0,0,"Luen's statement notes" -9244,0,0,0,0,0,0,0,"Dames's statement notes" -9245,0,0,0,0,0,0,0,"Dames's statement notes" -9246,0,0,0,0,0,0,0,"Dames's statement notes" -9247,0,0,0,0,0,0,0,"Dames's statement notes" -9248,0,0,0,0,0,0,0,"Rosa's statement notes" -9249,0,0,0,0,0,0,0,"Rosa's statement notes" -9250,0,0,0,0,0,0,0,"Rosa's statement notes" -9251,0,0,0,0,0,0,0,"Rosa's statement notes" -9252,0,0,0,0,0,0,0,"Observing Poppy" -9253,0,0,0,0,0,0,0,"Examining a messy bookshelf" -9254,0,0,0,0,0,0,0,"Examining a damaged book" -9255,0,0,0,0,0,0,0,"Examining a container for soda cans" -9256,0,0,0,0,0,0,0,"Examining a messed up table" -9257,0,0,0,0,0,0,0,"Examining a foreign object" -9258,0,0,0,0,0,0,0,"Field examination results" -9259,0,2363,5,2364,30,0,0,"Confirming Cruyan's statements" -9260,0,0,0,0,0,0,0,"Survey investigation notes" -9262,0,0,0,0,0,0,0,"Mystery Robbery Incident 16" - -//9327,0,0,0,0,0,0,0,"" -//9328,0,0,0,0,0,0,0,"" -//9329,0,0,0,0,0,0,0,"" -//9330,0,0,0,0,0,0,0,"" -//9331,0,0,0,0,0,0,0,"" -//9332,0,0,0,0,0,0,0,"" -//9333,0,0,0,0,0,0,0,"" -//9334,0,0,0,0,0,0,0,"" - -10000,0,0,0,0,0,0,0,"To the Prontera Royal Court" -10001,0,0,0,0,0,0,0,"Qualification Test" -10002,0,0,0,0,0,0,0,"Qualification Review" -10003,0,0,0,0,0,0,0,"Instructions on what to do" -10004,0,0,0,0,0,0,0,"Interim Report" -10005,0,0,0,0,0,0,0,"Prince Eigen Ahrum" -10006,0,0,0,0,0,0,0,"Prince Ernst" -10007,0,0,0,0,0,0,0,"Prince Poe" -10008,0,0,0,0,0,0,0,"Prince Peter" -10009,0,0,0,0,0,0,0,"Prince Urugen" -10010,0,0,0,0,0,0,0,"Prince Helmut" -10011,0,0,0,0,0,0,0,"Prince Erich" -10012,0,0,0,0,0,0,0,"Conversation of the two princes" -10013,0,0,0,0,0,0,0,"Searching for the unknown girl" -10014,0,0,0,0,0,0,0,"Back to Peter" -10015,0,0,0,0,0,0,0,"Test 15" -10016,0,0,0,0,0,0,0,"A Guest from the Walter Family" -10017,0,0,0,0,0,0,0,"Conspiracy" -10018,0,0,0,0,0,0,0,"Villainous Ahrum - Poe" -10019,0,0,0,0,0,0,0,"Villainous Ahrum - Peter" -10020,0,0,0,0,0,0,0,"Villainous Ahrum - Erich" -10021,0,0,0,0,0,0,0,"Villainous Ahrum - Urugen" -10022,0,0,0,0,0,0,0,"Villainous Ahrum - Helmut" -10023,0,0,0,0,0,0,0,"Eigen Ahrum and Ernst -Former-" -10024,0,0,0,0,0,0,0,"Eigen Ahrum and Ernst -Latter-" -10025,0,0,0,0,0,0,0,"Good-bye, dear!" -10026,0,0,0,0,0,0,0,"Reforming Meto" -10027,0,0,0,0,0,0,0,"Reforming Meto" -10028,0,0,0,0,0,0,0,"Reforming Meto" -10029,0,0,0,0,0,0,0,"Reforming Meto" -10030,0,0,0,0,0,0,0,"Reforming Meto" -10031,0,0,0,0,0,0,0,"Reforming Meto" -10032,0,0,0,0,0,0,0,"Reforming Meto" -10033,0,0,0,0,0,0,0,"Reforming Meto" -10034,0,0,0,0,0,0,0,"Search the knife" -10035,0,0,0,0,0,0,0,"Deliver the knife" -10036,0,0,0,0,0,0,0,"Material Supply-Candy" -10037,0,0,0,0,0,0,0,"Material Supply-Crap Shells" -10038,0,0,0,0,0,0,0,"Material Supply-Conch" -10039,0,0,0,0,0,0,0,"Material Supply-Fish Tail" -10040,0,0,0,0,0,0,0,"Material Supply-White Platter" -10041,0,0,0,0,0,0,0,"Material Supply-?" -10042,0,0,0,0,0,0,0,"Find the Piano Keys-5 remained" -10043,0,0,0,0,0,0,0,"Find the Piano Keys-5 remained" -10044,0,0,0,0,0,0,0,"Find the Piano Keys-4 remained" -10045,0,0,0,0,0,0,0,"Find the Piano Keyboard-4 remained" -10046,0,0,0,0,0,0,0,"Find the Piano Keyboard-3 remained" -10047,0,0,0,0,0,0,0,"Find the Piano Keyboard-3 remained" -10048,0,0,0,0,0,0,0,"Find the Piano Keyboard-2 remained" -10049,0,0,0,0,0,0,0,"Find the Piano Keyboard-2 remained" -10050,0,0,0,0,0,0,0,"Find the Piano Keyboard-1 remained" -10051,0,0,0,0,0,0,0,"Find the Piano Keyboard-1 remained" -10052,0,0,0,0,0,0,0,"Find the Piano Keyboard-To the piano" -10053,0,0,0,0,0,0,0,"Find the Piano Keyboard-Fill the empty spot" -10054,0,0,0,0,0,0,0,"On the Verge of the Escape-Clint Kana" -10055,0,0,0,0,0,0,0,"Understanding the culture of Utan" -10056,0,0,0,0,0,0,0,"Learning Utan Language" -10057,0,0,0,0,0,0,0,"Onward to the Other World" -10058,0,0,0,0,0,0,0,"Onward to the Other World" -10059,0,0,0,0,0,0,0,"Onward to the Other World" -10060,0,0,0,0,0,0,0,"Onward to the Other World" -10061,0,0,0,0,0,0,0,"Onward to the Other World" -10062,0,0,0,0,0,0,0,"Onward to the Other World" -10063,0,0,0,0,0,0,0,"Onward to the Other World" -10064,0,0,0,0,0,0,0,"Onward to the Other World" -10065,0,0,0,0,0,0,0,"Onward to the Other World" -10066,0,0,0,0,0,0,0,"Onward to the Other World" -10067,0,0,0,0,0,0,0,"Onward to the Other World" -10068,0,0,0,0,0,0,0,"Onward to the Other World" -10069,0,0,0,0,0,0,0,"Onward to the Other World" -10070,0,0,0,0,0,0,0,"Onward to the Other World" -10071,0,0,0,0,0,0,0,"Onward to the Other World" -10072,0,0,0,0,0,0,0,"Onward to the Other World" -10073,0,0,0,0,0,0,0,"Onward to the Other World" -10074,0,0,0,0,0,0,0,"Onward to the Other World" -10075,0,0,0,0,0,0,0,"Onward to the Other World" -10076,0,0,0,0,0,0,0,"Onward to the Other World" -10077,0,0,0,0,0,0,0,"Onward to the Other World" -10078,0,0,0,0,0,0,0,"Onward to the Other World" -10079,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" -10080,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" -10081,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" -10082,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" -10083,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" -10084,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" -10085,86400,0,0,0,0,0,0,"Escape from the reality, into the broad world" -10086,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" -10087,86400,0,0,0,0,0,0,"Escape from the reality, into the broad world" -10088,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" -10089,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" - -10090,0,0,0,0,0,0,0,"Job changes to Mechanic" -10091,0,0,0,0,0,0,0,"Job changes to Mechanic" -10092,0,0,0,0,0,0,0,"Job changes to Mechanic" -10093,0,0,0,0,0,0,0,"Job changes to Mechanic" -10094,0,0,0,0,0,0,0,"Job changes to Mechanic" -10095,0,0,0,0,0,0,0,"Job changes to Mechanic" -10096,0,0,0,0,0,0,0,"Job changes to Mechanic" -10097,0,0,0,0,0,0,0,"Job changes to Mechanic" -10098,0,0,0,0,0,0,0,"Job changes to Mechanic" -10099,0,0,0,0,0,0,0,"Job changes to Mechanic" -10100,0,0,0,0,0,0,0,"Job changes to Mechanic" -10101,0,0,0,0,0,0,0,"Job changes to Mechanic" - -10102,0,0,0,0,0,0,0,"To client - the chapter of the sphinx dungeon" -10103,0,0,0,0,0,0,0,"To client - the chapter of Glast heim" -10104,0,0,0,0,0,0,0,"To client - the chapter of Yuno" -10105,0,0,0,0,0,0,0,"To client - the chapter of a clock tower" -10106,0,0,0,0,0,0,0,"To client - the chapter of localizing " -10107,0,1164,10,0,0,0,0,"Sphinx dungeon - Requiem" -10108,0,1140,10,0,0,0,0,"Sphinx dungeon - Marduk" -10109,0,1154,10,0,0,0,0,"Sphinx dungeon - Pasana" -10110,0,1260,10,0,0,0,0,"Glast heim - Dark Frame" -10111,0,1117,10,0,0,0,0,"Glast heim - Evil druid" -10112,0,1192,10,0,0,0,0,"Glast heim - Wraith" -10113,0,1276,10,0,0,0,0,"Glast Heim - Raydric Archer" -10114,0,1369,20,0,0,0,0,"Juno - Grand Peco" -10115,0,1386,20,0,0,0,0,"Juno - sleeper" -10116,0,1372,20,0,0,0,0,"Juno - Goat" -10117,0,1376,20,0,0,0,0,"Juno - Harpy" -10118,0,1269,15,0,0,0,0,"clock tower - Clock" -10119,0,1199,15,0,0,0,0,"clock tower - Punk" -10120,0,1195,15,0,0,0,0,"clock tower - Rideword" -10121,0,1883,15,0,0,0,0,"Localizing - Uzhas" -10122,0,1404,15,0,0,0,0,"Localizing - Miyabi Doll" -10123,0,1516,15,0,0,0,0,"Localizing - Mi Gao" - -11000,0,0,0,0,0,0,0,"Inspection of Odin Shrine" -11001,0,0,0,0,0,0,0,"Inspection of Odin Shrine" -11002,0,0,0,0,0,0,0,"Inspection of Odin Shrine" -11003,0,0,0,0,0,0,0,"Inspection of Odin Shrine" -11004,0,0,0,0,0,0,0,"Inspection of Odin Shrine" -11005,0,0,0,0,0,0,0,"Inspection of Odin Shrine" -11006,0,0,0,0,0,0,0,"Inspection of Odin Shrine" -11007,0,0,0,0,0,0,0,"Inspection of Odin Shrine" -11008,0,0,0,0,0,0,0,"Inspection of Odin Shrine" -11009,0,0,0,0,0,0,0,"Morriphen's Request" -11010,0,0,0,0,0,0,0,"Fetching the medicine" -11011,0,0,0,0,0,0,0,"Medicine for two" -11012,0,0,0,0,0,0,0,"Find Makkie" -11013,0,0,0,0,0,0,0,"Red Plant Stem Powder" -11014,0,0,0,0,0,0,0,"The researcher's medicine" -11015,0,0,0,0,0,0,0,"Siria's cure" -11016,0,0,0,0,0,0,0,"Morriphen's story" -11017,0,0,0,0,0,0,0,"Exploring Juperos" -11018,0,0,0,0,0,0,0,"Exploring Juperos" -11019,0,0,0,0,0,0,0,"Exploring Juperos" -11020,0,0,0,0,0,0,0,"Exploring Juperos" -11021,0,0,0,0,0,0,0,"Exploring Juperos" -11022,0,0,0,0,0,0,0,"Exploring Juperos" -// iRO Event Quest -//11023,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 1" -//11024,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 2" -//11025,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 3" -//11026,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 4" -//11027,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 5" -//11028,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 6" -11029,0,0,0,0,0,0,0,"Going to the Turtle Island.." -11030,0,0,0,0,0,0,0,"Going to the Turtle Island.." -11031,0,0,0,0,0,0,0,"Going to the Turtle Island.." -11032,0,0,0,0,0,0,0,"Going to the Turtle Island.." -11033,0,0,0,0,0,0,0,"Going to the Turtle Island.." -11034,0,0,0,0,0,0,0,"Going to the Turtle Island.." -11035,0,0,0,0,0,0,0,"Going to the Turtle Island.." -11036,0,0,0,0,0,0,0,"Going to the Turtle Island.." -11037,0,0,0,0,0,0,0,"Going to the Turtle Island.." -11038,0,0,0,0,0,0,0,"Meet the Dead" -11039,0,0,0,0,0,0,0,"Meet the Dead" -11040,0,0,0,0,0,0,0,"Meet the Dead" -11041,0,0,0,0,0,0,0,"Meet the Dead" -11042,0,0,0,0,0,0,0,"Meet the Dead" -11043,0,0,0,0,0,0,0,"Meet the Dead" -11044,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" -11045,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" -11046,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" -11047,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" -11048,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" -11049,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" -11050,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" -11051,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" -11052,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" -11053,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" -11054,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" -11055,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" -11056,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" -11057,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" -11070,0,0,0,0,0,0,0,"Poison King" -11071,0,0,0,0,0,0,0,"Poison King" -11072,0,0,0,0,0,0,0,"Poison King" -11073,0,0,0,0,0,0,0,"Poison King" -11074,0,0,0,0,0,0,0,"Poison King" -11075,0,0,0,0,0,0,0,"Poison King" -11076,0,0,0,0,0,0,0,"Poison King" -11077,0,0,0,0,0,0,0,"Poison King" -11078,0,0,0,0,0,0,0,"Poison King" -11079,0,0,0,0,0,0,0,"Poison King" -11080,0,0,0,0,0,0,0,"Poison King" -11081,0,0,0,0,0,0,0,"Poison King" -11082,0,0,0,0,0,0,0,"Poison King" -11083,0,0,0,0,0,0,0,"Poison King" -11084,0,0,0,0,0,0,0,"New Surroundings" -11085,0,0,0,0,0,0,0,"New Surroundings" -11086,0,0,0,0,0,0,0,"New Surroundings" -11087,0,0,0,0,0,0,0,"Repairing the Tent" -11088,0,0,0,0,0,0,0,"Repairing the Tent" -11089,0,0,0,0,0,0,0,"Repairing the Tent" -11090,0,0,0,0,0,0,0,"Repairing the Tent" -11091,0,0,0,0,0,0,0,"Delivering Supplies" -11092,0,0,0,0,0,0,0,"Delivering Supplies" -11093,0,0,0,0,0,0,0,"Delivering Supplies" -11094,0,0,0,0,0,0,0,"Delivering Supplies" -11095,0,0,0,0,0,0,0,"Delivering Supplies" -11096,0,0,0,0,0,0,0,"Delivering Supplies" -11097,0,0,0,0,0,0,0,"Delivering Supplies" -11098,0,0,0,0,0,0,0,"Delivering Supplies" -11099,0,0,0,0,0,0,0,"To My Friend" -11100,0,0,0,0,0,0,0,"To My Friend" -11101,0,0,0,0,0,0,0,"Secret note of Bazet" -11102,0,0,0,0,0,0,0,"Secret note of Bazet" -11103,0,0,0,0,0,0,0,"Secret note of Bazet" -11104,82800,0,0,0,0,0,0,"Resting time" -11105,0,0,0,0,0,0,0,"Tendrilrion skin" - -11106,0,0,0,0,0,0,0,"Job changing to Warlock" -11107,0,0,0,0,0,0,0,"Job changing to Warlock" -11108,0,0,0,0,0,0,0,"Job changing to Warlock" -11109,0,0,0,0,0,0,0,"Job changing to Warlock" -11110,0,0,0,0,0,0,0,"Job changing to Warlock" -11111,0,0,0,0,0,0,0,"Job changing to Warlock" -11112,0,0,0,0,0,0,0,"Job changing to Warlock" -11113,82800,0,0,0,0,0,0,"Until radering is functioning" - -11114,0,1004,10,0,0,0,0,"Request : Hunt Honet" -11115,0,1009,20,0,0,0,0,"Request : Hunt Condor" -11116,0,1052,10,0,0,0,0,"Request : Hunt Grasshopper's Leg" -11117,0,1024,20,0,0,0,0,"Request : Hunt Worm tail" -11118,0,1014,30,0,0,0,0,"Request : Hunt Spore" -11119,0,1048,20,0,0,0,0,"Request : Pest Control" -11120,0,1055,20,0,0,0,0,"Request : Hunt Muka" -11121,0,1005,20,0,0,0,0,"Request : Hunt Farmiliar" -11122,0,1019,30,0,0,0,0,"Request : Collect Feather" -11123,0,1077,30,0,0,0,0,"Request : Collect Poison Spore" -11124,86400,0,0,0,0,0,0,"Request : Hunt Honet - Complete" -11125,86400,0,0,0,0,0,0,"Request : Hunt Condor - Complete" -11126,86400,0,0,0,0,0,0,"Request : Hunt Grasshopper's Leg - Complete" -11127,86400,0,0,0,0,0,0,"Request : Hunt Worm Tail - Complete" -11128,86400,0,0,0,0,0,0,"Request : Hunt Spore - Complete" -11129,86400,0,0,0,0,0,0,"Request : Pest Control - Complete" -11130,86400,0,0,0,0,0,0,"Request : Hunt Muka - Complete" -11131,86400,0,0,0,0,0,0,"Request : Hunt Farmiliar - Complete" -11132,86400,0,0,0,0,0,0,"Request : Collect Feather - Complete" -11133,86400,0,0,0,0,0,0,"Request : Collect Poison Spore - Complete" - -11135,0,0,0,0,0,0,0,"Looking for Maestro Song" -11136,0,0,0,0,0,0,0,"Looking for Maestro Song" -11137,0,0,0,0,0,0,0,"Looking for Maestro Song" -11138,0,0,0,0,0,0,0,"Looking for Maestro Song" -11139,0,0,0,0,0,0,0,"Looking for Maestro Song" -11140,0,0,0,0,0,0,0,"The sky, plane and travel sickness." -11141,0,0,0,0,0,0,0,"Human & gossip is towarding to the bar" -11142,0,0,0,0,0,0,0,"Fearful metalic sound" -11143,0,0,0,0,0,0,0,"Thanatos tower" -11144,0,0,0,0,0,0,0,"Juno manager : click" -11145,0,1622,33,0,0,0,0,"I want to get the " -11146,0,0,0,0,0,0,0,"to ice tunnel..." -11147,0,0,0,0,0,0,0,"Lared's dew" -11148,0,0,0,0,0,0,0,"Toward Comodo with the bow" -11149,0,0,0,0,0,0,0,"Just pour the water. Pour! Pour!..." -11150,0,0,0,0,0,0,0,"Looking for Maestro Song" -11151,0,0,0,0,0,0,0,"Looking for Maestro Song" -11152,0,0,0,0,0,0,0,"to the quiet place!..." -11153,0,0,0,0,0,0,0,"Missing watch top" -11154,0,0,0,0,0,0,0,"I will remember the memories with you...." -11155,0,0,0,0,0,0,0,"undefinable battler" -11156,0,1106,100,0,0,0,0,"annoying homework" -11157,0,0,0,0,0,0,0,"Helmes valley " -11158,0,0,0,0,0,0,0,"On the way for meditation" - -11159,0,0,0,0,0,0,0,"Story of Brian" -11160,0,0,0,0,0,0,0,"Story of John" -11161,0,0,0,0,0,0,0,"Story of Tyler" -11162,0,0,0,0,0,0,0,"Story of Rose" -11163,0,0,0,0,0,0,0,"Story of Bain" -11164,0,0,0,0,0,0,0,"Story of Lash" -11165,0,0,0,0,0,0,0,"Delivery to Brian" -11166,0,0,0,0,0,0,0,"Delivery to John" -11167,0,0,0,0,0,0,0,"Delivery to Tyler" -11168,0,0,0,0,0,0,0,"Delivery to Rose" -11169,0,0,0,0,0,0,0,"Delivery to Bain" -11170,0,0,0,0,0,0,0,"Delivery to Lash" -11171,0,0,0,0,0,0,0,"Request from Frede" -11172,0,0,0,0,0,0,0,"Request from Frede" -11173,0,0,0,0,0,0,0,"Request from Frede" -11174,0,0,0,0,0,0,0,"Supply Shortage" -11175,7200,0,0,0,0,0,0,"Supply Shortage" -11176,0,0,0,0,0,0,0,"For my friends" - -// Mora -11182,60,0,0,0,0,0,0,"Theore's Report" -11183,0,0,0,0,0,0,0,"Theore's Favor" -11184,0,0,0,0,0,0,0,"Runaway Laphine" -11185,0,0,0,0,0,0,0,"Pouch" -11186,0,0,0,0,0,0,0,"Pouch" -11187,0,0,0,0,0,0,0,"Pouch" -11188,0,0,0,0,0,0,0,"Pouch" -11189,0,0,0,0,0,0,0,"Roast Beef" -11190,0,0,0,0,0,0,0,"Roast Beef" -11191,0,0,0,0,0,0,0,"Shortage of Roast Beef" -11192,0,0,0,0,0,0,0,"Mora Village..." -11193,0,0,0,0,0,0,0,"Sonya's Friend" -11194,0,0,0,0,0,0,0,"Runaway Laphine" -11195,0,0,0,0,0,0,0,"Pouch" -11196,0,0,0,0,0,0,0,"Pouch" -11197,0,0,0,0,0,0,0,"Pouch" -11198,0,0,0,0,0,0,0,"Mora Village..." -11199,0,0,0,0,0,0,0,"Theo's Friend" -11200,0,0,0,0,0,0,0,"Pouch" -11201,0,0,0,0,0,0,0,"Roast Beef" -11202,0,0,0,0,0,0,0,"Roast Beef" -11203,0,0,0,0,0,0,0,"Shortage of Roast Beef" -11206,0,0,0,0,0,0,0,"Quick Delivery Yoneseu" -11207,0,0,0,0,0,0,0,"A Very Heavy Burden" -11208,0,0,0,0,0,0,0,"Daphne" - -// Malangdo -11209,0,0,0,0,0,0,0,"Hardships of Thomas" -11210,0,0,0,0,0,0,0,"Malangdo Reunion" -11211,0,0,0,0,0,0,0,"Malangdo Reunion" -11212,0,0,0,0,0,0,0,"Malangdo Reunion" -11213,0,0,0,0,0,0,0,"Malangdo Reunion" -11214,0,0,0,0,0,0,0,"Malangdo Reunion" -11215,0,0,0,0,0,0,0,"Malangdo Reunion" -11216,0,0,0,0,0,0,0,"Malangdo Reunion" -11217,0,0,0,0,0,0,0,"Malangdo Reunion" -11218,0,0,0,0,0,0,0,"Malangdo Reunion" -11219,0,0,0,0,0,0,0,"Malangdo Reunion" -11220,0,0,0,0,0,0,0,"Malangdo Reunion" -11221,0,0,0,0,0,0,0,"Repair of cracks" -11222,0,0,0,0,0,0,0,"Repair of cracks" -11223,0,0,0,0,0,0,0,"Repair of cracks" -11224,0,0,0,0,0,0,0,"Repair of cracks" -11225,0,0,0,0,0,0,0,"Repair of cracks" -11226,0,0,0,0,0,0,0,"Repair of cracks" -11227,0,0,0,0,0,0,0,"Repair of cracks" -11228,0,0,0,0,0,0,0,"Repair of cracks" -11229,0,0,0,0,0,0,0,"Repair of cracks" -11230,0,0,0,0,0,0,0,"Repair of cracks" -11231,0,0,0,0,0,0,0,"Repair of cracks" -11232,0,0,0,0,0,0,0,"Repair of cracks" -11233,0,0,0,0,0,0,0,"Repair of cracks" -11234,0,0,0,0,0,0,0,"Repair of cracks" -11235,0,0,0,0,0,0,0,"Repair of cracks" -11236,0,0,0,0,0,0,0,"Repair of cracks" -11237,0,0,0,0,0,0,0,"Repair of cracks" -11238,0,0,0,0,0,0,0,"Malangdo Fruits" -11239,82800,0,0,0,0,0,0,"Malangdo Fruits" -11240,0,0,0,0,0,0,0,"Repair of cracks" -11241,0,0,0,0,0,0,0,"Repair of cracks" -11242,0,0,0,0,0,0,0,"Repair of cracks" -11243,82800,0,0,0,0,0,0,"Repair of cracks" -11244,0,0,0,0,0,0,0,"Soft Jelly" -11245,82800,0,0,0,0,0,0,"Soft Jelly" - -11284,0,0,0,0,0,0,0,"Nurse at Port Malaya-1" -11285,0,0,0,0,0,0,0,"Nurse at Port Malaya-2" -11286,0,0,0,0,0,0,0,"Nurse at Port Malaya-3" -11287,0,0,0,0,0,0,0,"Nurse at Port Malaya-4" -11288,0,0,0,0,0,0,0,"Nurse at Port Malaya-5" -11289,0,0,0,0,0,0,0,"Nurse at Port Malaya-6" -11290,0,0,0,0,0,0,0,"Nurse at Port Malaya-7" -11291,0,0,0,0,0,0,0,"Nurse at Port Malaya-8" -11292,0,0,0,0,0,0,0,"Nurse at Port Malaya-9" -11293,0,0,0,0,0,0,0,"Nurse at Port Malaya-10" -11294,0,0,0,0,0,0,0,"Nurse at Port Malaya-11" -11295,0,0,0,0,0,0,0,"Nurse at Port Malaya-12" -11296,0,0,0,0,0,0,0,"Nurse at Port Malaya-13" -11297,0,0,0,0,0,0,0,"Nurse at Port Malaya-14" -11298,0,0,0,0,0,0,0,"Nurse at Port Malaya-15" -11299,0,0,0,0,0,0,0,"Nurse at Port Malaya-16" -11300,0,0,0,0,0,0,0,"Nurse at Port Malaya-17" -11301,0,0,0,0,0,0,0,"Nurse at Port Malaya-18" -11302,0,0,0,0,0,0,0,"Nurse at Port Malaya-19" -11303,0,0,0,0,0,0,0,"Nurse at Port Malaya-20" -11304,0,0,0,0,0,0,0,"Nurse at Port Malaya-21" -11305,0,0,0,0,0,0,0,"Nurse at Port Malaya-22" -11306,0,0,0,0,0,0,0,"Nurse at Port Malaya-23" -11307,0,0,0,0,0,0,0,"Nurse at Port Malaya-24" -11308,0,0,0,0,0,0,0,"Nurse at Port Malaya-25" -11309,0,2327,1,0,0,0,0,"Nurse at Port Malaya-26" - -11310,30,0,0,0,0,0,0,"Eclage's Entrance" -11311,0,0,0,0,0,0,0,"Eclage's Entrance" -11312,0,0,0,0,0,0,0,"Goliath" -11313,0,0,0,0,0,0,0,"Goliath" -11314,0,0,0,0,0,0,0,"Goliath" -11315,0,0,0,0,0,0,0,"And time keeps on flowing" -11316,0,0,0,0,0,0,0,"And time keeps on flowing" -11317,0,0,0,0,0,0,0,"And time keeps on flowing" -11318,0,0,0,0,0,0,0,"And time keeps on flowing" -11319,0,0,0,0,0,0,0,"And time keeps on flowing" -11320,0,0,0,0,0,0,0,"And time keeps on flowing" -11321,0,0,0,0,0,0,0,"And time keeps on flowing" -11322,0,0,0,0,0,0,0,"And time keeps on flowing" -11323,0,0,0,0,0,0,0,"And time keeps on flowing" -11324,0,0,0,0,0,0,0,"And time keeps on flowing" -11325,0,0,0,0,0,0,0,"The chicken or the egg" -11326,0,0,0,0,0,0,0,"The chicken or the egg" -11327,0,0,0,0,0,0,0,"The chicken or the egg" -11328,0,0,0,0,0,0,0,"The chicken or the egg" -11329,0,0,0,0,0,0,0,"The chicken or the egg" -11330,0,0,0,0,0,0,0,"The chicken or the egg" -11331,0,0,0,0,0,0,0,"The chicken or the egg" -11332,0,0,0,0,0,0,0,"The chicken or the egg" -11333,0,0,0,0,0,0,0,"Red seed and green seed" -11334,0,0,0,0,0,0,0,"Red seed and green seed" -11335,0,0,0,0,0,0,0,"Dreaming boy" -11336,0,0,0,0,0,0,0,"Dreaming boy" -11337,0,0,0,0,0,0,0,"Dreaming boy" - -//11366,0,0,0,0,0,0,0,"" -11378,0,0,0,0,0,0,0,"Trick or treat" // Halloween Event 2013 - -12000,0,0,0,0,0,0,0,"An old friend" -12001,0,0,0,0,0,0,0,"Digotz, Maku's old friend" -12002,0,0,0,0,0,0,0,"Messenger of Friendship" -12003,0,0,0,0,0,0,0,"Digotz's message" -12004,0,0,0,0,0,0,0,"Maku's other friend" -12005,0,0,0,0,0,0,0,"Benkaistein" -12006,0,0,0,0,0,0,0,"Benkaistein's lost item" -12007,0,0,0,0,0,0,0,"Kazien" -12008,0,0,0,0,0,0,0,"Researcher Garins" -12009,0,0,0,0,0,0,0,"Failed mission" -12010,0,0,0,0,0,0,0,"No entrance" -12011,0,0,0,0,0,0,0,"Lyozien" -12012,0,0,0,0,0,0,0,"Meet Mr. Ahman" -12013,0,0,0,0,0,0,0,"Delivery complete" -12014,0,0,0,0,0,0,0,"More missions" -12015,0,0,0,0,0,0,0,"Ghalstein" -12016,0,0,0,0,0,0,0,"Sneaking into the Laboratory" -12017,0,0,0,0,0,0,0,"Membership approved" -12018,0,0,0,0,0,0,0,"Meeting the President" -12019,0,0,0,0,0,0,0,"The President's Mission" -12020,0,0,0,0,0,0,0,"Rescuing a Secret Wing Member" -12021,0,0,0,0,0,0,0,"The Sealed File Folder" -12022,0,0,0,0,0,0,0,"The Sealed File Folder" -12023,0,0,0,0,0,0,0,"Shinokas the researcher" -12024,0,0,0,0,0,0,0,"Kafra Corporation Agent" -12025,0,0,0,0,0,0,0,"Rekenber's Secret Archive" -12026,0,0,0,0,0,0,0,"Rekenber's Secret Archive" -12027,0,0,0,0,0,0,0,"Rekenber's Secret Archive" -12028,0,0,0,0,0,0,0,"Kurelle the traitor" -12029,0,0,0,0,0,0,0,"Lost Engagement Ring" -12030,0,0,0,0,0,0,0,"Engagement Ring Found" -12031,0,0,0,0,0,0,0,"Find Annon" -12032,0,0,0,0,0,0,0,"Searching for Annon" -12033,0,0,0,0,0,0,0,"Traces of blood" -12034,0,0,0,0,0,0,0,"Annon's side of the story" -12035,0,0,0,0,0,0,0,"Holy Threads" -12036,0,0,0,0,0,0,0,"The Stone Slate Message" -12037,0,0,0,0,0,0,0,"Holier Threads" -12038,0,0,0,0,0,0,0,"Searching for the Sa-mhing Tiger" -12039,0,0,0,0,0,0,0,"Boonthom's Comrade" -12040,0,0,0,0,0,0,0,"Benkaistein's Journal" -12041,0,0,0,0,0,0,0,"Benkaistein's Journal" -12042,0,0,0,0,0,0,0,"Benkaistein's Journal" -12043,0,0,0,0,0,0,0,"Pass to the Slums" -12044,0,0,0,0,0,0,0,"Soothing a crying child 1" -12045,0,0,0,0,0,0,0,"Soothing a crying child 2" -12046,0,0,0,0,0,0,0,"Soothing a crying child 3" -12047,0,0,0,0,0,0,0,"Soothing a crying child 4" -12048,0,0,0,0,0,0,0,"Soothing a crying child 5" -12049,0,0,0,0,0,0,0,"Job Quest 1 - Rogue" -12050,0,0,0,0,0,0,0,"Job Quest 2 - Rogue" -12051,0,0,0,0,0,0,0,"Job Quest 3 - Rogue" -12052,0,0,0,0,0,0,0,"Job Quest 4 - Rogue" -12053,0,0,0,0,0,0,0,"Job Quest 5 - Rogue" -12054,0,0,0,0,0,0,0,"Job Quest 6 - Rogue" -12055,0,0,0,0,0,0,0,"Job Quest - Assassin" -12056,0,0,0,0,0,0,0,"Job Quest - Assassin" -12057,0,0,0,0,0,0,0,"Pass to the Lab" -12058,604800,0,0,0,0,0,0,"Admission Restricted to the 102 Tower" -12059,7200,0,0,0,0,0,0,"Orc's Memory Time Limit" -12060,86400,0,0,0,0,0,0,"Today's Fishing Closed" -12061,10,0,0,0,0,0,0,"Concentration" -12062,86400,0,0,0,0,0,0,"Today's Mining Closed" -12070,14400,0,0,0,0,0,0,"Limited time for enter" -12071,86400,0,0,0,0,0,0,"Stamp a seal on the attendance book" -12072,0,1034,20,0,0,0,0,"Hunt tharafrog" -12073,0,1248,15,0,0,0,0,"Remove Cruiser" -12074,0,1070,30,0,0,0,0,"Remove Kukre" -12075,0,1686,15,0,0,0,0,"Remove orcbaby" -12076,0,1023,20,0,0,0,0,"Remove orcwarroir" -12077,0,1066,15,0,0,0,0,"Hunt vadon" -12078,0,1064,30,0,0,0,0,"Hunt Megalodon" -12079,0,1144,15,0,0,0,0,"Hunt Marse" -12080,0,1067,20,0,0,0,0,"Hunt Cornutus" -12081,0,1151,15,0,0,0,0,"Remove Myst" -12082,0,1074,30,0,0,0,0,"Hunt shellfish" -12083,0,1142,15,0,0,0,0,"Hunt Marine sphere" -12084,0,1158,20,0,0,0,0,"Hunt Phen" -12085,0,1152,15,0,0,0,0,"Remove orcskeleton" -12086,0,1177,30,0,0,0,0,"Remove Zenorc" -12087,0,1041,15,0,0,0,0,"Remove mummy" -12088,0,0,0,0,0,0,0,"Accomplishing a request" - -12090,0,0,0,0,0,0,0,"Mysterious guy" -12091,0,0,0,0,0,0,0,"Just save the burning heart" -12092,0,0,0,0,0,0,0,"Long lasting story" -12093,0,0,0,0,0,0,0,"the record the intelligence Lyoda left" -12094,0,0,0,0,0,0,0,"The damaged shield letter" -12096,0,0,0,0,0,0,0,"Towards Karakas" -12097,0,0,0,0,0,0,0,"Basic preparation" -12098,0,0,0,0,0,0,0,"Tour of dungeon" -12099,0,2014,10,0,0,0,0,"Remove Root Cause" -12100,0,1994,12,0,0,0,0,"Violent Winged Insect" -12101,0,2013,5,0,0,0,0,"Work Interference" -12102,0,1993,10,0,0,0,0,"Intelligent Snakes" -12103,0,1992,1,0,0,0,0,"Legendary Creature" -12104,0,1987,15,0,0,0,0,"Insects with an Appetite" -12105,0,2024,10,0,0,0,0,"Moving Rocks" -12106,0,1995,15,0,0,0,0,"A child on a flower" -12107,0,2015,10,0,0,0,0,"Twisted Love" -12108,0,1988,12,0,0,0,0,"Dangerous Plant Removal" -12109,0,1999,14,0,0,0,0,"Larva Extermination" -12110,0,2016,7,0,0,0,0,"Demon of Water" -12111,0,1986,10,0,0,0,0,"Bird with ugly face" -12117,0,0,0,0,0,0,0,"Withered Flower" -12118,0,0,0,0,0,0,0,"Welcomed Mineral" -12119,0,0,0,0,0,0,0,"Valuable Textile" -12120,0,0,0,0,0,0,0,"Curious Meat" -12121,0,0,0,0,0,0,0,"Materials to Clear Snow" -12122,0,0,0,0,0,0,0,"Best Cooler Material" -12123,0,0,0,0,0,0,0,"Best Paint" -12124,0,0,0,0,0,0,0,"Rare Valuable" -12125,0,0,0,0,0,0,0,"Armory Material" -12126,0,0,0,0,0,0,0,"Advanced Armory Material" -12127,0,0,0,0,0,0,0,"Supervisor's Tool" -12128,0,0,0,0,0,0,0,"Preparation for Heating" -12129,0,0,0,0,0,0,0,"Suspicious Food" -12130,0,0,0,0,0,0,0,"Useful Material" -12131,0,0,0,0,0,0,0,"Essential Material for Construction" -12132,0,0,0,0,0,0,0,"Essential Material for Construction 2" -12133,0,0,0,0,0,0,0,"Decoration arrangement" -12134,0,0,0,0,0,0,0,"Instant Receptacle" -12135,0,0,0,0,0,0,0,"Not enough medicine" -12136,0,0,0,0,0,0,0,"Honey robber" -12137,0,0,0,0,0,0,0,"Tools for Experiment" -12138,0,0,0,0,0,0,0,"Fine Gift Samples" -12139,0,0,0,0,0,0,0,"Respect for Taste!" -12140,0,0,0,0,0,0,0,"Courtesy for Regulars" -12141,0,0,0,0,0,0,0,"Special Package" -12142,0,0,0,0,0,0,0,"Dangerous Request" -12143,0,0,0,0,0,0,0,"Strange Trend" -12144,0,0,0,0,0,0,0,"Unknown Usage" -12145,0,0,0,0,0,0,0,"Other World Cuisine" -12146,0,0,0,0,0,0,0,"Filling in Cracks" -12147,0,0,0,0,0,0,0,"Adhesive Material" -12148,0,0,0,0,0,0,0,"Bait for Tatacho Hunting" -12149,0,0,0,0,0,0,0,"Swordmanship Practice" -12150,0,0,0,0,0,0,0,"Pretty reddish vegetable" -12151,0,0,0,0,0,0,0,"Tenacity of the pub owner" -12152,0,0,0,0,0,0,0,"Tastes like home cooking" -12153,0,0,0,0,0,0,0,"Hazardous plant when burnt" -12154,0,0,0,0,0,0,0,"Unexpectedly Normal" -12155,0,0,0,0,0,0,0,"Gift with heart" -12156,0,0,0,0,0,0,0,"Respect personal appetite!" -12157,0,0,0,0,0,0,0,"Resolution of the pub owner" -12158,0,0,0,0,0,0,0,"Rage of the pub owner" -12159,82800,0,0,0,0,0,0,"Quest record from Laponte" -12160,82800,0,0,0,0,0,0,"Quest record from Kalipo" -12161,82800,0,0,0,0,0,0,"Quest record from Pura" -12162,82800,0,0,0,0,0,0,"Quest record from Tragis" -12163,82800,0,0,0,0,0,0,"Quest record from Calyon" -12164,82800,0,0,0,0,0,0,"Quest record from Moltuka" -12165,21600,0,0,0,0,0,0,"Dizziness" -12166,0,0,0,0,0,0,0,"Tree Root Doc." -12167,0,0,0,0,0,0,0,"Reptile Tongue Doc." -12168,0,0,0,0,0,0,0,"Scorpion Tail Doc." -12169,0,0,0,0,0,0,0,"Stem Doc." -12170,0,0,0,0,0,0,0,"Pointed Scale Doc." -12171,0,0,0,0,0,0,0,"Resin Doc." -12172,0,0,0,0,0,0,0,"Spawn Doc." -12173,0,0,0,0,0,0,0,"Jellopy Doc." -12174,0,0,0,0,0,0,0,"Fish Tail Doc." -12175,0,0,0,0,0,0,0,"Worm Peeling Doc." -12176,0,0,0,0,0,0,0,"Gill Doc." -12177,0,0,0,0,0,0,0,"Tooth of Bat Doc." -12178,0,0,0,0,0,0,0,"Fluff Doc." -12179,0,0,0,0,0,0,0,"Chrysalis Doc." -12180,0,0,0,0,0,0,0,"Feather of Birds Doc." -12181,0,0,0,0,0,0,0,"Talon Document Doc." -12182,0,0,0,0,0,0,0,"Sticky Webfoot Doc." -12183,0,0,0,0,0,0,0,"Animal Skin Doc." -12184,0,0,0,0,0,0,0,"Wolf Claw Doc." -12185,0,0,0,0,0,0,0,"Mushroom Spore Doc." -12186,0,0,0,0,0,0,0,"Orc's Fang Doc." -12187,0,0,0,0,0,0,0,"Evil Horn Doc." -12188,0,0,0,0,0,0,0,"Powder of Butterfly Doc." -12189,0,0,0,0,0,0,0,"Bill of Birds Doc." -12190,0,0,0,0,0,0,0,"Snake Scale Doc." -12191,0,0,0,0,0,0,0,"Insect Feeler Doc." -12192,0,0,0,0,0,0,0,"Immortal Heart Doc." -12193,0,0,0,0,0,0,0,"Rotten Bandage Doc." -12194,0,0,0,0,0,0,0,"Decayed Nail Doc." -12195,0,0,0,0,0,0,0,"Horrendous Mouth Doc." -12196,0,0,0,0,0,0,0,"Tentacle Doc." -12197,0,0,0,0,0,0,0,"Shell Doc." -12198,0,0,0,0,0,0,0,"Scale Shell Doc." -12199,0,0,0,0,0,0,0,"Venom Canine Doc." -12200,0,0,0,0,0,0,0,"Sticky Mucus Doc." -12201,0,0,0,0,0,0,0,"Bee Sting Doc." -12202,0,0,0,0,0,0,0,"Grasshopper's Leg Doc." -12203,0,0,0,0,0,0,0,"Royal Jelly Doc." -12204,0,0,0,0,0,0,0,"Yoyo Tail Doc." -12205,0,0,0,0,0,0,0,"Solid Shell Doc." -12206,0,0,0,0,0,0,0,"Yam Doc." -12207,0,0,0,0,0,0,0,"Raccoon Leaf Doc." -12208,0,0,0,0,0,0,0,"Snail's Shell Doc." -12209,0,0,0,0,0,0,0,"Horn Doc." -12210,0,0,0,0,0,0,0,"Bear's Footskin Doc." -12211,0,0,0,0,0,0,0,"Feather Doc." -12212,0,0,0,0,0,0,0,"Red Herb Doc." -12213,0,0,0,0,0,0,0,"Carrot Doc." -12214,0,0,0,0,0,0,0,"Cactus Needle Doc." -12215,0,0,0,0,0,0,0,"Stone Heart Doc." -12216,21600,0,0,0,0,0,0,"Pouty Jahbong" -12217,0,0,0,0,0,0,0,"Request - Traces of wild boar hunt" -12218,0,0,0,0,0,0,0,"How to make lava elixir" -12219,0,0,0,0,0,0,0,"How to creat flame elixir" -12220,0,0,0,0,0,0,0,"How to create glaicer elixir" -12221,0,0,0,0,0,0,0,"How to create fossil elixir" -12222,0,0,0,0,0,0,0,"How to create storm elixir" - -// Mora Coin Daily Quests -12225,0,2132,3,0,0,0,0,"Pom Spider Hunting" -12226,0,2133,4,0,0,0,0,"Angra Mantis Hunting" -12227,0,2134,5,0,0,0,0,"Parus Hunting" -12228,0,2136,6,0,0,0,0,"Little Fatam Hunting" -12229,0,2137,7,0,0,0,0,"Miming Hunting" -12230,82800,0,0,0,0,0,0,"Mora Monster Hunt" -12231,0,0,0,0,0,0,0,"Insect Feeler Collecting" -12232,0,0,0,0,0,0,0,"Immortal Heart Collecting" -12233,0,0,0,0,0,0,0,"Rotten Bandage Collecting" -12234,0,0,0,0,0,0,0,"Orcish Voucher Collecting" -12235,0,0,0,0,0,0,0,"Skeleton Bone Collecting" -12236,0,0,0,0,0,0,0,"Memento Collecting" -12237,0,0,0,0,0,0,0,"Shell Collecting" -12238,0,0,0,0,0,0,0,"Scale Shell Collecting" -12239,0,0,0,0,0,0,0,"Venom Canine Collecting" -12240,0,0,0,0,0,0,0,"Sticky Mucus Collecting" -12241,82800,0,0,0,0,0,0,"Mora Item Request 1" -12242,82800,0,0,0,0,0,0,"Mora Item Request 2" - -// Missing Person Quests -12243,0,0,0,0,0,0,0,"Missing Information on Tajareu" -12244,0,0,0,0,0,0,0,"Missing Information on Tokenizer" -12245,0,0,0,0,0,0,0,"Missing Information on Mesile" -12246,0,0,0,0,0,0,0,"Missing Information on Noir" -12247,0,0,0,0,0,0,0,"Missing Information on Pajama God" -12248,0,0,0,0,0,0,0,"Missing Information on Mendel" -12249,0,0,0,0,0,0,0,"Missing Information on Miles" -12250,0,0,0,0,0,0,0,"Missing Information on Kunmune" -12251,0,0,0,0,0,0,0,"Missing Information on Chayihokin" -12252,0,0,0,0,0,0,0,"Missing Information on Tuale" -12253,82800,0,0,0,0,0,0,"Missing Person Search Time Limit" - -// Malangdo Culverts -12254,3600,0,0,0,0,0,0,"Now it's cleaning" -12255,0,2176,20,0,0,0,0,"Hunt deep sea crab" -12256,0,2175,20,0,0,0,0,"Hunt deep sea squid" -12257,0,2174,20,0,0,0,0,"Hunt Ancient crustacean" -12258,0,2178,20,0,0,0,0,"Hunt deep sea shell" -12259,0,2179,20,0,0,0,0,"Hunt ancient kukre" -12260,0,2177,20,0,0,0,0,"Hunt deep sea conch" -12261,0,2182,30,0,0,0,0,"Hunt deep sea horse" -12262,0,2181,30,0,0,0,0,"Hunt ancient sword fish" -12263,0,2180,30,0,0,0,0,"Hunt ancient sea god" -12264,0,2183,30,0,0,0,0,"Hunt mutation anolian" -12265,0,2184,30,0,0,0,0,"Hunt deep sea mermaid" -12266,0,2185,30,0,0,0,0,"Hunt transformable kapha" -12267,0,2188,1,0,0,0,0,"Hunt weird coelacanth" -12268,0,2187,1,0,0,0,0,"Hunt dark coelacanth" -12269,0,2190,1,0,0,0,0,"Hunt Cruel coelacanth" -12270,0,2189,1,0,0,0,0,"Hunt mutation coelacanth" -12271,82800,0,0,0,0,0,0,"In progress general culvert single day service" -12272,82800,0,0,0,0,0,0,"In progress hard culvert single day service" -12273,579600,0,0,0,0,0,0,"In progress general culvert weekly service" -12274,579600,0,0,0,0,0,0,"In progress hard culvert weekly service" - -12278,604800,0,0,0,0,0,0,"Towards Bakonawa Lake..." -12279,0,2322,1,0,0,0,0,"Get Rid of Bakonawa" - -12280,0,0,0,0,0,0,0,"A suspicious prisoner" -12281,0,0,0,0,0,0,0,"An unwanted favor" -12282,0,0,0,0,0,0,0,"Gossip king Clever" -12283,0,0,0,0,0,0,0,"The rift researcher" -12284,0,0,0,0,0,0,0,"A cat merchant's source of information" -12285,0,0,0,0,0,0,0,"A way to calm down a cat" -12286,0,0,0,0,0,0,0,"Information traded for some canned foods" -12287,0,0,0,0,0,0,0,"A weird experience" -12288,0,0,0,0,0,0,0,"A successful experience" -12289,0,0,0,0,0,0,0,"Another visitation" -12290,0,0,0,0,0,0,0,"Clever's historical documents" -12291,0,0,0,0,0,0,0,"Hidden historical documents (?)" -12292,0,0,0,0,0,0,0,"The unknown ones" -12293,0,0,0,0,0,0,0,"Figures in history" -12294,0,0,0,0,0,0,0,"Tour of Eclage" -12295,0,0,0,0,0,0,0,"Error" -12296,0,0,0,0,0,0,0,"Fun times with the reactor" -12297,0,0,0,0,0,0,0,"Encountering Etran" -12298,0,0,0,0,0,0,0,"Two wishes" -12299,0,0,0,0,0,0,0,"Revisiting Robert" -12300,0,0,0,0,0,0,0,"Revisiting Etran" -12301,0,0,0,0,0,0,0,"Two remaining friends" - -// Old Glast Heim -12317,82800,0,0,0,0,0,0,"Fake Keyblade" -12318,0,2475,1,0,0,0,0,"Upper Cats: annoying guy" -12319,0,2476,1,0,0,0,0,"Upper Cats: annoying guy" - -12363,0,0,0,0,0,0,0,"?????? ?? ??" - -13000,0,0,0,0,0,0,0,"RWC2011Card Gathering" -13001,82800,0,0,0,0,0,0,"RWC2011Card Gathering - Hold" - -// eden 100-110 -13002,0,0,0,0,0,0,0,"Brigan collecting" -13003,0,1267,30,0,0,0,0,"Carat Request" -13004,3600,0,0,0,0,0,0,"Carat Request timer" -13005,0,1194,22,0,0,0,0,"Arclouse Request" -13006,3600,0,0,0,0,0,0,"Arclouse Request timer" -13007,0,1206,30,0,0,0,0,"Anolian Request" -13008,3600,0,0,0,0,0,0,"Anolian Request timer" -13009,0,1207,30,0,0,0,0,"Sting Request" -13010,3600,0,0,0,0,0,0,"Sting Request timer" -13011,0,1310,30,0,0,0,0,"Majoruros Request" -13012,3600,0,0,0,0,0,0,"Majoruros Request timer" -13013,0,1995,30,0,0,0,0,"Pinguicula Request" -13014,3600,0,0,0,0,0,0,"Pinguicula Request timer" -13015,0,1994,30,0,0,0,0,"Luciola Vespa Request" -13016,3600,0,0,0,0,0,0,"Luciola Vespa Request timer" -13017,0,1106,30,0,0,0,0,"Desert Wolf Request" -13018,3600,0,0,0,0,0,0,"Desert Wolf Request timer" -13019,0,1775,30,0,0,0,0,"Snowier Request" -13020,3600,0,0,0,0,0,0,"Snowier Request timer" -13021,0,1777,30,0,0,0,0,"Ice Titan Request" -13022,3600,0,0,0,0,0,0,"Ice Titan Request Timer" -13023,0,1379,30,0,0,0,0,"Nightmare Terror Request" -13024,3600,0,0,0,0,0,0,"Nightmare Terror Request Timer" -13025,0,1384,30,0,0,0,0,"Flying Deleter Request" -13026,3600,0,0,0,0,0,0,"Deleter Request Timer" -13040,0,1505,30,0,0,0,0,"Loli Ruri Request" -13041,3600,0,0,0,0,0,0,"Loli Ruri Request Timer" -13042,0,1148,30,0,0,0,0,"Medusa Request" -13043,3600,0,0,0,0,0,0,"Medusa Request Timer" -13044,0,1098,20,0,0,0,0,"Anubis Request" -13045,3600,0,0,0,0,0,0,"Anubis Request Timer" -13046,0,1991,1,0,0,0,0,"Tendrilion Request" -13047,3600,0,0,0,0,0,0,"Tendrilion Request Timer" -13048,0,1991,1,0,0,0,0,"Tendrilion Request" -13049,3600,0,0,0,0,0,0,"Tendrilion Request Timer" - -13050,0,0,0,0,0,0,0,"The Laphine that loves the land" -13051,0,0,0,0,0,0,0,"The singing Laphine" -13052,0,0,0,0,0,0,0,"The watering Laphine" -13053,0,0,0,0,0,0,0,"The dancing Laphine" -13054,0,0,0,0,0,0,0,"The smiling Laphine" -13055,0,0,0,0,0,0,0,"See if all the adventurers are safe" -13056,0,0,0,0,0,0,0,"Reporter Rossi" -13057,0,0,0,0,0,0,0,"Adventurer Euncheong" -13058,0,0,0,0,0,0,0,"Troublemaker New Oz" -13059,79200,0,0,0,0,0,0,"End of project" -13060,79200,0,0,0,0,0,0,"Safety confirmation complete!" -13061,0,0,0,0,0,0,0,"Food support" -13062,79200,0,0,0,0,0,0,"Food support - complete" -13063,0,2365,20,0,0,0,0,"Dusting off" -13064,79200,0,0,0,0,0,0,"Dusting off - complete" -13065,0,0,0,0,0,0,0,"Collecting a souvenir" -13066,79200,0,0,0,0,0,0,"This is enough for souvenirs" - -// eden 111-120 -13067,0,1163,30,0,0,0,0,0,"Raydric research" -13068,3600,0,0,0,0,0,0,"Raydric research - timer" -13069,0,1132,30,0,0,0,0,"Khalitzburg research" -13070,3600,0,0,0,0,0,0,"Khalitzburg research - timer" -13071,0,1208,30,0,0,0,0,"Wander Man research" -13072,3600,0,0,0,0,0,0,"Wander Man research - timer" -13073,0,1699,30,0,0,0,0,"Ancient Mimic research" -13074,3600,0,0,0,0,0,0,"Ancient Mimic research - timer" -13075,0,1698,30,0,0,0,0,"Death Word research" -13076,3600,0,0,0,0,0,0,"Death Word research - timer" -13077,0,1295,20,0,0,0,0,"Owl Baron research" -13078,3600,0,0,0,0,0,0,"Owl Baron research - timer" -13079,0,0,0,0,0,0,0,"Bloody Page Research" -13080,3600,0,0,0,0,0,0,"Bloody Page Research - Wait" -13081,0,2015,30,0,0,0,0,"Dark Pinguicula research" -13082,3600,0,0,0,0,0,0,"Dark Pinguicula research - timer" -13083,0,1988,30,0,0,0,0,"Nepenthes research" -13084,3600,0,0,0,0,0,0,"Nepenthes research - timer" -13085,0,1993,30,0,0,0,0,"Naga research" -13086,3600,0,0,0,0,0,0,"Naga research - timer" -13087,0,1999,20,0,0,0,0,"Centipede Larva research" -13088,3600,0,0,0,0,0,0,"Centipede Larva research - timer" -13089,0,1992,30,0,0,0,0,"Cornus research" -13090,3600,0,0,0,0,0,0,"Cornus research - timer" -13091,0,0,0,0,0,0,0,"Mystic Horn Research" -13092,3600,0,0,0,0,0,0,"Mystic Horn Research - Wait" -13093,0,1297,30,0,0,0,0,"Ancient Mummy research" -13094,3600,0,0,0,0,0,0,"Ancient Mummy research - timer" -13095,0,1374,10,1370,10,1390,10,"Geffenia expedition" -13096,3600,0,0,0,0,0,0,"Geffenia expedition - Wait" -13097,0,1677,30,1678,30,1679,30,"Juperos expedition" -13098,3600,0,0,0,0,0,0,"Juperos expedition - Wait" -13099,0,0,0,0,0,0,0,"Fragments and Rusty Screw" -13100,3600,0,0,0,0,0,0,"Fragments and Rusty Screw - Wait" - -// eden 121-130 -13107,0,0,0,0,0,0,0,"Thanatos Tower Search" -13108,0,0,0,0,0,0,0,"Rachel holy ground Search" -13109,0,0,0,0,0,0,0,"Unknown island Search" -13110,0,0,0,0,0,0,0,"Abyss Lake Search" -13111,0,0,0,0,0,0,0,"Thanatos Tower Search - Reporting results" -13112,0,0,0,0,0,0,0,"Rachel holy ground Search - Reporting results" -13113,0,0,0,0,0,0,0,"Nameless Island Search - Reporting results" -13114,0,0,0,0,0,0,0,"Abyss Lake Search - Reporting results" -13115,3600,0,0,0,0,0,0,"Thanatos Tower Search - Wait" -13116,3600,0,0,0,0,0,0,"Rachel holy ground Search - Wait" -13117,3600,0,0,0,0,0,0,"Unknown island Search - Wait" -13118,3600,0,0,0,0,0,0,"Abyss Lake Search - Wait" -13119,0,1702,30,0,0,0,0,"Combat Baroness of Retribution" -13120,3600,0,0,0,0,0,0,"Combat Baroness of Retribution - Wait" -13121,0,1703,30,0,0,0,0,"Combat Lady Solace" -13122,3600,0,0,0,0,0,0,"Combat Lady Solace - Wait" -13123,0,1701,30,0,0,0,0,"Combat Mistress of Shelter" -13124,3600,0,0,0,0,0,0,"Combat Mistress of Shelter - Wait" -13125,0,1700,30,0,0,0,0,"Combat Dame of Sentinel" -13126,3600,0,0,0,0,0,0,"Combat Dame of Sentinel - Wait" -13127,0,1771,20,1772,20,0,0,"Combat Vanberk and Isilla" -13128,3600,0,0,0,0,0,0,"Combat Vanberk and Isilla - Wait" -13129,0,1773,30,0,0,0,0,"Combat Hodremlin" -13130,3600,0,0,0,0,0,0,"Combat Hodremlin - Wait" -13131,0,1769,20,1770,20,0,0,"Combat Agav and Echio" -13132,3600,0,0,0,0,0,0,"Combat Agav and Echio - Wait" -13133,0,1865,30,0,0,0,0,"Combat Ragged Zombie" -13134,3600,0,0,0,0,0,0,"Combat Ragged Zombie - Wait" -13135,0,1864,30,0,0,0,0,"Combat Zombie Slaughter" -13136,3600,0,0,0,0,0,0,"Combat Zombie Slaughter - Wait" -13137,0,1867,30,0,0,0,0,"Combat Banshee" -13138,3600,0,0,0,0,0,0,"Combat Banshee - Wait" -13139,0,1714,30,1717,30,0,0,"Combat Ferus and Bewler" -13140,3600,0,0,0,0,0,0,"Combat Ferus and Bewler - Wait" -13141,0,1713,30,1716,30,0,0,"Combat Acidus" -13142,3600,0,0,0,0,0,0,"Combat Acidus - Wait" - -// eden 131-140 -13143,0,1652,30,0,0,0,0,"Egnigem Story" -13144,3600,0,0,0,0,0,0,"Egnigem Story - Wait" -13145,0,1654,30,0,0,0,0,"Armeyer Story" -13146,3600,0,0,0,0,0,0,"Armeyer Story - Wait" -13147,0,1653,30,0,0,0,0,"Whikebain Story" -13148,3600,0,0,0,0,0,0,"Whikebain Story - Wait" -13149,0,1656,30,0,0,0,0,"Kavach Story" -13150,3600,0,0,0,0,0,0,"Kavach Story - Wait" -13151,0,1655,30,0,0,0,0,"Errende Story" -13152,3600,0,0,0,0,0,0,"Errende Story - Wait" -13153,0,1657,30,0,0,0,0,"Laurell Story" -13154,3600,0,0,0,0,0,0,"Laurell Story - Wait" -13155,0,1918,30,0,0,0,0,"Morocc Story1" -13156,3600,0,0,0,0,0,0,"Morocc Story1 - Wait" -13157,0,1919,30,0,0,0,0,"Morocc Story2" -13158,3600,0,0,0,0,0,0,"Morocc Story2 - Wait" -13159,0,1921,30,0,0,0,0,"Morocc Story3" -13160,3600,0,0,0,0,0,0,"Morocc Story3 - Wait" -13161,0,2083,30,0,0,0,0,"Uni-horn Scaraba Story" -13162,3600,0,0,0,0,0,0,"Uni-horn Scaraba Story - Wait" -13163,0,2084,30,0,0,0,0,"Horn Scaraba Story" -13164,3600,0,0,0,0,0,0,"Horn Scaraba Story - Wait" -13165,0,2085,30,0,0,0,0,"Antler Scaraba Story" -13166,3600,0,0,0,0,0,0,"Antler Scaraba Story - Wait" -13167,0,2086,30,0,0,0,0,"Rake horn Scaraba Story" -13168,3600,0,0,0,0,0,0,"Rake horn Scaraba Story - Wait" - -14118,0,0,0,0,0,0,0,"Wuhari's concern" -14119,0,0,0,0,0,0,0,"Test of patience" -14120,0,0,0,0,0,0,0,"Test of patience 2" -14121,0,0,0,0,0,0,0,"Test of patience 3" -14122,0,0,0,0,0,0,0,"Time for two" -14123,0,0,0,0,0,0,0,"Wuharu's favor" -14125,0,0,0,0,0,0,0,"Surveying the area" -14126,0,0,0,0,0,0,0,"Searching for Ms. Goatie" -14127,0,0,0,0,0,0,0,"Searching for Ms. Goatie's husband" -14128,0,0,0,0,0,0,0,"Obtaining the research report" -14131,300,0,0,0,0,0,0,"Analysis time" -14133,0,0,0,0,0,0,0,"Another favor" -14134,0,0,0,0,0,0,0,"Sharp Ms. Goatie" -14135,0,0,0,0,0,0,0,"Searching for Mr. Pompe" -14136,0,0,0,0,0,0,0,"A terrible scene in the field" -14137,0,0,0,0,0,0,0,"An interesting proposition" -14138,0,0,0,0,0,0,0,"The big corpse" -14139,0,0,0,0,0,0,0,"To Wuhuru" -14140,0,0,0,0,0,0,0,"To Wuhari" -14141,0,0,0,0,0,0,0,"Ingredients for research" - -//14254,0,0,0,0,0,0,0,"" -//14255,0,0,0,0,0,0,0,"" -//14256,0,0,0,0,0,0,0,"" -//14257,0,0,0,0,0,0,0,"" -//14258,0,0,0,0,0,0,0,"" -//14259,0,0,0,0,0,0,0,"" -//14260,0,0,0,0,0,0,0,"" -//14261,0,0,0,0,0,0,0,"" -//14262,0,0,0,0,0,0,0,"" -//14263,0,0,0,0,0,0,0,"" -//14264,0,0,0,0,0,0,0,"" -//14265,0,0,0,0,0,0,0,"" -//14266,0,0,0,0,0,0,0,"" -//14267,0,0,0,0,0,0,0,"" -//14268,0,0,0,0,0,0,0,"" -//14269,0,0,0,0,0,0,0,"" -//14270,0,0,0,0,0,0,0,"" -//14271,0,0,0,0,0,0,0,"" -//14272,0,0,0,0,0,0,0,"" -//14273,0,0,0,0,0,0,0,"" -//14275,0,0,0,0,0,0,0,"" -//14276,0,0,0,0,0,0,0,"" -//14277,0,0,0,0,0,0,0,"" -//14278,0,0,0,0,0,0,0,"" -//14279,0,0,0,0,0,0,0,"" -//14280,0,0,0,0,0,0,0,"" -//14281,0,0,0,0,0,0,0,"" -//14282,0,0,0,0,0,0,0,"" -//14283,0,0,0,0,0,0,0,"" -//14284,0,0,0,0,0,0,0,"" -//14285,0,0,0,0,0,0,0,"" -//14286,0,0,0,0,0,0,0,"" -//14287,0,0,0,0,0,0,0,"" -//14288,0,0,0,0,0,0,0,"" -//14289,0,0,0,0,0,0,0,"" -//14290,0,0,0,0,0,0,0,"" -//14291,0,0,0,0,0,0,0,"" -//15025,0,0,0,0,0,0,0,"" -//15026,0,0,0,0,0,0,0,"" -//15027,0,0,0,0,0,0,0,"" -//15028,0,0,0,0,0,0,0,"" -//15029,0,0,0,0,0,0,0,"" -//15030,0,0,0,0,0,0,0,"" -//15031,0,0,0,0,0,0,0,"" -//15032,0,0,0,0,0,0,0,"" -//15033,0,0,0,0,0,0,0,"" -//15034,0,0,0,0,0,0,0,"" -//15035,0,0,0,0,0,0,0,"" -//15036,0,0,0,0,0,0,0,"" -//15037,0,0,0,0,0,0,0,"" -//15038,0,0,0,0,0,0,0,"" -//15039,0,0,0,0,0,0,0,"" -//15040,0,0,0,0,0,0,0,"" -//15041,0,0,0,0,0,0,0,"" -//15043,0,0,0,0,0,0,0,"" -//15045,0,0,0,0,0,0,0,"" - -// 2013 Christmas Event -15055,0,0,0,0,0,0,0,"Christmas : We are the great Single Union Army!" -15056,0,0,0,0,0,0,0,"Christmas : Declare war against couples!" -15057,0,0,0,0,0,0,0,"Christmas : Prepare the festival!" -15059,86400,0,0,0,0,0,0,"Christmas : Cooldown Timer" -15060,0,0,0,0,0,0,0,"Christmas : Kwami has joined" -15061,0,0,0,0,0,0,0,"Christmas : Willer has joined" -15062,0,0,0,0,0,0,0,"Christmas : Rinka has joined" -15063,0,0,0,0,0,0,0,"Christmas : Jee has joined" -15064,0,0,0,0,0,0,0,"Christmas : Marty has joined" - -16000,0,0,0,0,0,0,0,"Metz Brayde's Notice" -16001,0,0,0,0,0,0,0,"First examination" -16002,0,0,0,0,0,0,0,"Fetching Items for Arian -1" -16003,0,0,0,0,0,0,0,"Fetching Items for Arian -2" -16004,0,0,0,0,0,0,0,"Fetching Items for Arian -3" -16005,0,0,0,0,0,0,0,"Fetching Items for Arian -4" -16006,0,0,0,0,0,0,0,"Fetching Items for Arian -5" -16007,0,0,0,0,0,0,0,"Fetching Items for Arian -6" -16008,0,0,0,0,0,0,0,"Quiz time!" -16009,0,0,0,0,0,0,0,"Quiz time!" -16010,0,0,0,0,0,0,0,"Daewoon's Test" -16011,0,0,0,0,0,0,0,"Sir Jore's Test" -16012,0,0,0,0,0,0,0,"Sir Jore's Materials" -16013,0,0,0,0,0,0,0,"The Stone of Sage" -16014,0,0,0,0,0,0,0,"The Stone of Sage" -16015,0,0,0,0,0,0,0,"Lady Jesqurienne" -16016,0,0,0,0,0,0,0,"Jesquerinne's Quiz Challenge" -16017,0,0,0,0,0,0,0,"Failed Quiz Challenge" -16018,0,0,0,0,0,0,0,"Quiz Challenge Triumph" -16019,0,0,0,0,0,0,0,"Search for Dearles" -16020,0,0,0,0,0,0,0,"Dearles' Test" -16021,0,0,0,0,0,0,0,"Test of Appreciation" -16022,0,0,0,0,0,0,0,"Dearles' Test Part Two" -16023,0,0,0,0,0,0,0,"Rhythm Test Passed" -16024,0,0,0,0,0,0,0,"Find Bakerlan" -16025,0,0,0,0,0,0,0,"Bakerlan's delivery" -16026,0,0,0,0,0,0,0,"Mahatra's delivery" -16027,0,0,0,0,0,0,0,"Bakerlan's Receipt" -16028,0,0,0,0,0,0,0,"Find Seylin" -16029,0,0,0,0,0,0,0,"Vigorgra Medicine" -16030,0,0,0,0,0,0,0,"Vigorgra Ingredients" -16031,0,0,0,0,0,0,0,"Vigorgra Ingredients" -16032,0,0,0,0,0,0,0,"Seylin's Request" -16033,0,0,0,0,0,0,0,"Back to Seylin" -16034,0,0,0,0,0,0,0,"Back to Mahatra" -16035,0,0,0,0,0,0,0,"Report to Bakerlan" -16036,0,0,0,0,0,0,0,"The last Crumb" -16037,0,0,0,0,0,0,0,"Finding Engel Howard" -16038,0,0,0,0,0,0,0,"Liana's Letter" -16039,0,0,0,0,0,0,0,"Combining the Starlight" -16040,0,0,0,0,0,0,0,"Letter to Engel's Family" -16041,0,0,0,0,0,0,0,"Talk to Liana" -16042,0,0,0,0,0,0,0,"Sobbing Starlight Progress" -16043,0,0,0,0,0,0,0,"Restored Sobbing Starlight" -16044,0,0,0,0,0,0,0,"Combining the Starlight" -16045,0,0,0,0,0,0,0,"Starlight message" -16046,0,0,0,0,0,0,0,"The man in Umbala" -16047,0,0,0,0,0,0,0,"Into the Tree" -16048,0,0,0,0,0,0,0,"Ancient Papers" -16049,0,0,0,0,0,0,0,"Record of Ancient Language" -16050,0,0,0,0,0,0,0,"The Fastidious Old Man" -16051,0,0,0,0,0,0,0,"Blurry Vision" -16052,0,0,0,0,0,0,0,"Translating the Document" -16053,0,0,0,0,0,0,0,"Translated Ancient Language" -16054,0,0,0,0,0,0,0,"Where the rejected live" -16055,0,0,0,0,0,0,0,"Misfortunate of Niflheim" -16056,0,0,0,0,0,0,0,"Removed Curse" -16057,0,0,0,0,0,0,0,"Meeting the witch" -16058,0,0,0,0,0,0,0,"Wing Of Crow" -16059,0,0,0,0,0,0,0,"Wing Of Crow" -16060,0,0,0,0,0,0,0,"Misfortunate of Niflheim" -16061,0,0,0,0,0,0,0,"Bard in Niflheim" -16062,0,0,0,0,0,0,0,"Gen of Niflheim" -16063,0,0,0,0,0,0,0,"The Witch's Aid" -16064,0,0,0,0,0,0,0,"Misfortunate of Niflheim" -16065,0,0,0,0,0,0,0,"The Queen's Symbol" -16066,0,0,0,0,0,0,0,"Knowledge of the Symbol" -16067,0,0,0,0,0,0,0,"Knowledge of Asgard" -16068,0,0,0,0,0,0,0,"Finding the Soul Pieces" -16069,0,0,0,0,0,0,0,"Finding the Soul Pieces" -16070,0,0,0,0,0,0,0,"Finding the Soul Pieces" -16071,0,0,0,0,0,0,0,"Finding the Soul Pieces" -16072,0,0,0,0,0,0,0,"Finding the Soul Pieces" -16073,0,0,0,0,0,0,0,"Agrboda's Soul" -16074,0,0,0,0,0,0,0,"Symbol of the Nine Realms" -16075,0,0,0,0,0,0,0,"Serin's Ambitions" -16076,0,0,0,0,0,0,0,"Witch's Tonic" -16077,0,0,0,0,0,0,0,"Serin's Release" -16078,0,0,0,0,0,0,0,"Visit with Lady Hell" -16079,0,0,0,0,0,0,0,"The Sign" -16080,0,0,0,0,0,0,0,"Dark Lord's return" -16081,0,0,0,0,0,0,0,"Serin's Ambitions" -16082,0,0,0,0,0,0,0,"Dark Lord's return" -16083,0,0,0,0,0,0,0,"Serin's Realization" -16084,0,0,0,0,0,0,0,"The Sign" -16085,0,0,0,0,0,0,0,"The Sign" -16086,0,0,0,0,0,0,0,"The Sign" -16087,0,0,0,0,0,0,0,"The Sign" -16101,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16102,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16103,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16104,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16105,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16106,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16107,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16108,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16109,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16110,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16111,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16112,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16113,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16114,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16115,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16116,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16117,0,0,0,0,0,0,0,"Mysterious World Map" -16118,0,0,0,0,0,0,0,"Hidden poem" -16119,0,0,0,0,0,0,0,"Snake swords" -16120,0,0,0,0,0,0,0,"A dream?" -16121,0,0,0,0,0,0,0,"Secret Code?" -16122,0,0,0,0,0,0,0,"Old Copper Key" -16123,0,0,0,0,0,0,0,"Green Keycard" -16124,0,0,0,0,0,0,0,"Steel Box" -16125,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16126,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16127,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16128,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16129,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16130,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16131,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16132,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16133,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16134,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16135,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16136,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16137,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16138,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16139,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16140,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16141,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16142,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16143,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16144,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16145,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16146,0,0,0,0,0,0,0,"Kiel Hyre Academy" -16200,0,0,0,0,0,0,0,"Limberg's Request" -16201,0,0,0,0,0,0,0,"TPS Report" -16202,0,0,0,0,0,0,0,"TPS Report" -16203,0,0,0,0,0,0,0,"TPS Report" -16204,0,0,0,0,0,0,0,"Crack in the Wall" -16205,0,0,0,0,0,0,0,"The Empty Lava Tube" -17000,0,0,0,0,0,0,0,"Meet with Father Bamph" -17001,0,0,0,0,0,0,0,"Meet with Larjes" -17002,0,0,0,0,0,0,0,"Report to Father Bamph" -17003,0,0,0,0,0,0,0,"Travel to Rachel" -17004,0,0,0,0,0,0,0,"Travel to Veins" -17005,0,0,0,0,0,0,0,"Frustrated Magistrate" -17006,0,0,0,0,0,0,0,"Interrogated Smugglers" -17007,0,0,0,0,0,0,0,"Written Orders" -17008,0,0,0,0,0,0,0,"Investigating" -17009,0,0,0,0,0,0,0,"More Investigating" -17010,0,0,0,0,0,0,0,"Further Investigations" -17011,0,0,0,0,0,0,0,"Kurdi's Father" -17012,0,0,0,0,0,0,0,"Karyn's Boat" -17013,0,0,0,0,0,0,0,"To the Island" -17014,0,0,0,0,0,0,0,"Investigating the Island" -17015,0,0,0,0,0,0,0,"The Research Note" -17016,0,0,0,0,0,0,0,"Regicide" -17017,0,0,0,0,0,0,0,"Reporting the King's Death" - -18001,0,0,0,0,0,0,0,"Delivery for Rooney" -18002,0,0,0,0,0,0,0,"Delivery for Rooney" -18003,0,0,0,0,0,0,0,"Delivery for Rooney" -18004,0,0,0,0,0,0,0,"Lasda's Request" -18005,0,0,0,0,0,0,0,"Jesse's Request" -18006,0,0,0,0,0,0,0,"Sir Krieg's Approval" -18007,0,0,0,0,0,0,0,"Sir Krieg's Trust" -18008,0,0,0,0,0,0,0,"Sir Krieg's Trust" -18009,0,0,0,0,0,0,0,"Into the prison" -18010,0,0,0,0,0,0,0,"Jail Break" -18011,0,0,0,0,0,0,0,"Bodyguard work" -18012,0,0,0,0,0,0,0,"Bodyguard work" -18013,0,0,0,0,0,0,0,"Bodyguard work" -18014,0,0,0,0,0,0,0,"Bodyguard work" -18015,0,0,0,0,0,0,0,"Bodyguard work" -18016,0,0,0,0,0,0,0,"Bodyguard work" -18017,0,0,0,0,0,0,0,"Jail Break" -18018,0,0,0,0,0,0,0,"Jail Break" -18019,0,0,0,0,0,0,0,"Vitre's Songs" -18020,0,0,0,0,0,0,0,"Vitre's Songs" -18021,0,0,0,0,0,0,0,"Vitre's Songs" -18022,0,0,0,0,0,0,0,"Vitre's Songs" -18023,0,0,0,0,0,0,0,"Vitre the Spy" -18030,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18031,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18032,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18033,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18034,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18035,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18036,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18037,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18038,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18039,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18040,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18041,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18042,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18043,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18044,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18045,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18046,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18047,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18048,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18049,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18050,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18051,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18052,0,0,0,0,0,0,0,"Gaebolg Family Curse" -18060,0,0,0,0,0,0,0,"Missing boy Mikhail" -18061,0,0,0,0,0,0,0,"Mikhail's Whereabouts" -18062,0,0,0,0,0,0,0,"Missing boy Mikhail" -18063,0,0,0,0,0,0,0,"The isolated swamp" -18064,0,0,0,0,0,0,0,"Back to the Village" -18065,0,0,0,0,0,0,0,"High-strength Adhesive" -18066,0,0,0,0,0,0,0,"Back to the swamp" -18067,0,0,0,0,0,0,0,"Make the paste" -18068,0,0,0,0,0,0,0,"Fixing the Matrushka" -18069,0,0,0,0,0,0,0,"Report to Gallina" -18070,0,0,0,0,0,0,0,"Banishing Winter" -18071,0,0,0,0,0,0,0,"Making the magic dust" -18072,0,0,0,0,0,0,0,"Making the magic dust" -18073,0,0,0,0,0,0,0,"The Dragon's Lair" -18074,0,0,0,0,0,0,0,"The Magic Gourd Bottle" -18075,0,0,0,0,0,0,0,"Containing People's Speech" -18076,0,0,0,0,0,0,0,"Containing People's Speech" -18077,0,0,0,0,0,0,0,"Csar's Request" -18078,0,0,0,0,0,0,0,"Baba Yaga's Secret Medicine" -18079,0,0,0,0,0,0,0,"Winter is Banished" -18100,0,0,0,0,0,0,0,"Legends from Moscovia" -18101,0,0,0,0,0,0,0,"The Moving Island" -18102,0,0,0,0,0,0,0,"In Search of The Moving Island" -18103,0,0,0,0,0,0,0,"In Search of The Moving Island" -18104,0,0,0,0,0,0,0,"Mr. Ibanoff's New Friend" -18105,0,0,0,0,0,0,0,"Repairing Charabel" -18106,0,0,0,0,0,0,0,"As the Tide Turns" -18107,0,0,0,0,0,0,0,"Departing" -18108,0,0,0,0,0,0,0,"The Moving Island?" -18109,0,0,0,0,0,0,0,"The Moving Island???" -18110,0,0,0,0,0,0,0,"The Aged Stranger" -18111,0,0,0,0,0,0,0,"Whale Island!" -18112,0,0,0,0,0,0,0,"A Story for the Csar" -18113,0,0,0,0,0,0,0,"Evidence for the Csar" -18114,0,0,0,0,0,0,0,"Before Sunset" -18115,0,0,0,0,0,0,0,"Departing" -18116,0,0,0,0,0,0,0,"Whale Island!" -18117,0,0,0,0,0,0,0,"Materials for Evidence" -18118,0,0,0,0,0,0,0,"Mysterious Musical Instrument" -18119,0,0,0,0,0,0,0,"Gusli" -18120,0,0,0,0,0,0,0,"Gusli" -18121,0,0,0,0,0,0,0,"Shafka" -19101,0,0,0,0,0,0,0,"The Eye of Hellion" -19102,0,0,0,0,0,0,0,"The Eye of Hellion" -19103,0,0,0,0,0,0,0,"The Eye of Hellion" -19104,0,0,0,0,0,0,0,"The Eye of Hellion" -19105,0,0,0,0,0,0,0,"The Eye of Hellion" -19106,0,0,0,0,0,0,0,"The Eye of Hellion" -19107,0,0,0,0,0,0,0,"The Eye of Hellion" -19108,0,0,0,0,0,0,0,"The Eye of Hellion" -19109,0,0,0,0,0,0,0,"The Eye of Hellion" -19110,0,0,0,0,0,0,0,"The Eye of Hellion" -19111,0,0,0,0,0,0,0,"The Eye of Hellion" -19112,0,0,0,0,0,0,0,"The Eye of Hellion" -19113,0,0,0,0,0,0,0,"The Eye of Hellion" -19114,0,0,0,0,0,0,0,"The Eye of Hellion" -19115,0,0,0,0,0,0,0,"The Eye of Hellion" -19116,0,0,0,0,0,0,0,"The Eye of Hellion" -19117,0,0,0,0,0,0,0,"The Eye of Hellion" -19118,0,0,0,0,0,0,0,"The Eye of Hellion" -19119,0,0,0,0,0,0,0,"The Eye of Hellion" -19120,0,0,0,0,0,0,0,"The Eye of Hellion" -19121,0,0,0,0,0,0,0,"The Eye of Hellion" -19122,0,0,0,0,0,0,0,"The Eye of Hellion" -19123,0,0,0,0,0,0,0,"The Eye of Hellion" -19124,0,0,0,0,0,0,0,"The Eye of Hellion" -19125,0,0,0,0,0,0,0,"The Eye of Hellion" -19126,0,0,0,0,0,0,0,"The Eye of Hellion" -19127,0,0,0,0,0,0,0,"The Eye of Hellion" -19128,0,0,0,0,0,0,0,"The Eye of Hellion" -19129,0,0,0,0,0,0,0,"The Eye of Hellion" - -50000,0,0,0,0,0,0,0,"Pirate Dagger materials" -50001,0,0,0,0,0,0,0,"Weather Beaten Old Man" -50002,0,0,0,0,0,0,0,"Lost Treasure?" -50003,0,0,0,0,0,0,0,"Lost Treasure?" -50004,0,0,0,0,0,0,0,"The Old Man's Treasure" -50005,0,0,0,0,0,0,0,"The Old Man's Treasure" -50006,0,0,0,0,0,0,0,"The Old Man's Treasure" -50007,0,0,0,0,0,0,0,"The Old Man's Treasure" -50008,0,0,0,0,0,0,0,"The Old Man's Treasure" -50009,0,0,0,0,0,0,0,"The Old Man's Treasure" -50010,0,0,0,0,0,0,0,"A special lock pick" -50011,0,0,0,0,0,0,0,"The special lock pick" -50012,0,0,0,0,0,0,0,"Use the lock pick" -50013,0,0,0,0,0,0,0,"Broken lock pick" -50015,0,0,0,0,0,0,0,"The empty treasure box" -50016,0,0,0,0,0,0,0,"The empty treasure box" -50017,0,0,0,0,0,0,0,"The empty treasure box" -50018,0,0,0,0,0,0,0,"The empty treasure box" -50019,0,0,0,0,0,0,0,"The empty treasure box" -50020,0,0,0,0,0,0,0,"The empty treasure box" -50021,0,0,0,0,0,0,0,"J Roger" -50022,0,0,0,0,0,0,0,"J Roger's key materials" -50023,0,0,0,0,0,0,0,"Conversation with J Roger" -50024,0,0,0,0,0,0,0,"Bury the treasure" -50025,0,0,0,0,0,0,0,"Bury the treasure" -50026,0,0,0,0,0,0,0,"Bury the treasure" -50027,0,0,0,0,0,0,0,"Buried treasure" -50028,0,0,0,0,0,0,0,"Stolen treasure!" -50029,0,0,0,0,0,0,0,"A Pirate's Spirit!" - -//60000,0,0,0,0,0,0,0,"60000" -60001,0,0,0,0,0,0,0,"Monster Extermination" -60002,0,0,0,0,0,0,0,"Monster Extermination" -60003,0,0,0,0,0,0,0,"Monster Extermination" -60004,0,0,0,0,0,0,0,"Monster Extermination" -60005,0,0,0,0,0,0,0,"Monster Extermination" -60006,0,0,0,0,0,0,0,"Monster Extermination" -60007,0,0,0,0,0,0,0,"Endless Tower Effect" -60008,0,0,0,0,0,0,0,"Endless Tower Time Limit" -60009,0,0,0,0,0,0,0,"Orc Hero" -60010,0,0,0,0,0,0,0,"Derik Ver's Request" -60011,0,0,0,0,0,0,0,"Investigation of Byalan" -60012,0,0,0,0,0,0,0,"Investigation of Abyss" -60013,0,0,0,0,0,0,0,"Monster Investigation" -60014,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation" -60015,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation" -60016,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation" -60017,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation" -60018,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation" -60019,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation" -60020,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation" -60021,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation" -60022,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation" -60023,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation" -60024,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation" -60025,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation" -60026,0,0,0,0,0,0,0,"Continuing the Investigation" -60027,0,0,0,0,0,0,0,"Investigating Aldebaran" -60028,0,0,0,0,0,0,0,"Monster Investigation" -60029,0,0,0,0,0,0,0,"Aldebaran Monster Investigation" -60030,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" -60031,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" -60032,0,0,0,0,0,0,0,"Lutie Field Monster Investigation" -60033,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" -60034,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" -60035,0,0,0,0,0,0,0,"Aldebaran Monster Investigation" -60036,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" -60037,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" -60038,0,0,0,0,0,0,0,"Aldebaran Monster Investigation" -60039,0,0,0,0,0,0,0,"Investigation of Glastheim" -60040,0,0,0,0,0,0,0,"Investigation of Glastheim" -60041,0,0,0,0,0,0,0,"Monster Investigation" -60042,0,0,0,0,0,0,0,"Investigation of Glastheim" -60043,0,0,0,0,0,0,0,"Glastheim Monster Investigation" -60044,0,0,0,0,0,0,0,"Glastheim Monster Investigation" -60045,0,0,0,0,0,0,0,"Investigation of Glastheim" -60046,0,0,0,0,0,0,0,"Glastheim Monster Investigation" -60047,0,0,0,0,0,0,0,"Glastheim Monster Investigation" -60048,0,0,0,0,0,0,0,"Investigation of Glastheim" -60049,0,0,0,0,0,0,0,"Glastheim Monster Investigation" -60050,0,0,0,0,0,0,0,"Glastheim Monster Investigation" -60051,0,0,0,0,0,0,0,"Investigation of Glastheim" -60052,0,0,0,0,0,0,0,"Glastheim Monster Investigation" -60053,0,0,0,0,0,0,0,"Glastheim Monster Investigation" -60054,0,0,0,0,0,0,0,"Investigation of Glastheim" -60055,0,0,0,0,0,0,0,"Glastheim Monster Investigation" -60056,0,0,0,0,0,0,0,"Glastheim Monster Investigation" -60057,0,0,0,0,0,0,0,"Glastheim Monster Investigation" -60058,0,0,0,0,0,0,0,"Derik Ver's Brother" -60059,0,0,0,0,0,0,0,"A history lesson" -60060,0,0,0,0,0,0,0,"The Crown of Deceit" -60061,0,0,0,0,0,0,0,"A magic solvent" -60062,0,0,0,0,0,0,0,"Rendering the crown Inert" -60101,0,1019,50,0,0,0,0,"Hunting Peco Pecos" -60102,0,1019,100,0,0,0,0,"Hunting Peco Pecos" -60103,0,1019,150,0,0,0,0,"Hunting Peco Pecos" -60104,0,1127,50,0,0,0,0,"Hunting Hodes" -60105,0,1127,100,0,0,0,0,"Hunting Hodes" -60106,0,1127,150,0,0,0,0,"Hunting Hodes" -60107,0,1007,50,0,0,0,0,"Hunting Fabres" -60108,0,1007,100,0,0,0,0,"Hunting Fabres" -60109,0,1007,150,0,0,0,0,"Hunting Fabres" -60110,0,1008,50,0,0,0,0,"Hunting Pupa" -60111,0,1008,100,0,0,0,0,"Hunting Pupa" -60112,0,1008,150,0,0,0,0,"Hunting Pupa" -60113,0,1104,50,0,0,0,0,"Hunting Cocos" -60114,0,1104,100,0,0,0,0,"Hunting Cocos" -60115,0,1104,150,0,0,0,0,"Hunting Cocos" -60116,0,1103,50,0,0,0,0,"Hunting Caramels" -60117,0,1103,100,0,0,0,0,"Hunting Caramels" -60118,0,1103,150,0,0,0,0,"Hunting Caramels" -60119,0,1271,50,0,0,0,0,"Hunting Alligators" -60120,0,1271,100,0,0,0,0,"Hunting Alligators" -60121,0,1271,150,0,0,0,0,"Hunting Alligators" -60122,0,1018,50,0,0,0,0,"Hunting Creamys" -60123,0,1018,100,0,0,0,0,"Hunting Creamys" -60124,0,1018,150,0,0,0,0,"Hunting Creamys" -60125,0,1378,50,0,0,0,0,"Hunting Demon Pungus" -60126,0,1378,100,0,0,0,0,"Hunting Demon Pungus" -60127,0,1378,150,0,0,0,0,"Hunting Demon Pungus" -60128,0,1110,50,0,0,0,0,"Hunting Dokebi" -60129,0,1110,100,0,0,0,0,"Hunting Dokebi" -60130,0,1110,150,0,0,0,0,"Hunting Dokebi" -60131,0,1493,50,0,0,0,0,"Hunting Dryads" -60132,0,1493,100,0,0,0,0,"Hunting Dryads" -60133,0,1493,150,0,0,0,0,"Hunting Dryads" -60134,0,1119,50,0,0,0,0,"Hunting Frilldora" -60135,0,1119,100,0,0,0,0,"Hunting Frilldora" -60136,0,1119,150,0,0,0,0,"Hunting Frilldora" -60137,0,1372,50,0,0,0,0,"Hunting Goats" -60138,0,1372,100,0,0,0,0,"Hunting Goats" -60139,0,1372,150,0,0,0,0,"Hunting Goats" -60140,0,1040,50,0,0,0,0,"Hunting Golems" -60141,0,1040,100,0,0,0,0,"Hunting Golems" -60142,0,1040,150,0,0,0,0,"Hunting Golems" -60143,0,1586,50,0,0,0,0,"Hunting Leaf Cats" -60144,0,1586,100,0,0,0,0,"Hunting Leaf Cats" -60145,0,1586,150,0,0,0,0,"Hunting Leaf Cats" -60146,0,1076,50,0,0,0,0,"Hunting Skeletons" -60147,0,1076,100,0,0,0,0,"Hunting Skeletons" -60148,0,1076,150,0,0,0,0,"Hunting Skeletons" -60149,0,1026,50,0,0,0,0,"Hunting Munaks" -60150,0,1026,100,0,0,0,0,"Hunting Munaks" -60151,0,1026,150,0,0,0,0,"Hunting Munaks" -60152,0,1170,50,0,0,0,0,"Hunting Sohees" -60153,0,1170,100,0,0,0,0,"Hunting Sohees" -60154,0,1170,150,0,0,0,0,"Hunting Sohees" -60155,0,1403,50,0,0,0,0,"Hunting Firelock Soldiers" -60156,0,1403,100,0,0,0,0,"Hunting Firelock Soldiers" -60157,0,1403,150,0,0,0,0,"Hunting Firelock Soldiers" -60158,0,1405,50,0,0,0,0,"Hunting Tengus" -60159,0,1405,100,0,0,0,0,"Hunting Tengus" -60160,0,1405,150,0,0,0,0,"Hunting Tengus" -60161,0,1675,25,0,0,0,0,"Hunting Venatu" -60162,0,1675,50,0,0,0,0,"Hunting Venatu" -60163,0,1675,75,0,0,0,0,"Hunting Venatu" -60164,0,1668,50,0,0,0,0,"Hunting Archdam" -60165,0,1668,100,0,0,0,0,"Hunting Archdam" -60166,0,1668,150,0,0,0,0,"Hunting Archdam" -60167,0,1776,50,0,0,0,0,"Hunting Siromas" -60168,0,1776,100,0,0,0,0,"Hunting Siromas" -60169,0,1776,150,0,0,0,0,"Hunting Siroma" -60170,0,1777,50,0,0,0,0,"Hunting Ice Titans" -60171,0,1777,100,0,0,0,0,"Hunting Ice Titans" -60172,0,1777,150,0,0,0,0,"Hunting Ice Titans" -60173,0,1506,50,0,0,0,0,"Hunting Disguises" -60174,0,1506,100,0,0,0,0,"Hunting Disguises" -60175,0,1506,150,0,0,0,0,"Hunting Disguises" -60176,0,1505,50,0,0,0,0,"Hunting Loli Ruri" -60177,0,1505,100,0,0,0,0,"Hunting Loli Ruri" -60178,0,1505,150,0,0,0,0,"Hunting Loli Ruri" -60179,0,1139,50,0,0,0,0,"Hunting Mantis" -60180,0,1139,100,0,0,0,0,"Hunting Mantis" -60181,0,1139,150,0,0,0,0,"Hunting Mantis" -60182,0,1514,50,0,0,0,0,"Hunting Dancing Dragons" -60183,0,1514,100,0,0,0,0,"Hunting Dancing Dragons" -60184,0,1514,150,0,0,0,0,"Hunting Dancing Dragons" -60185,0,1870,20,0,0,0,0,"Hunting Necromancers" -60186,0,1870,40,0,0,0,0,"Hunting Necromancers" -60187,0,1870,60,0,0,0,0,"Hunting Necromancers" -60188,0,1365,50,0,0,0,0,"Hunting Apocalypse" -60189,0,1365,100,0,0,0,0,"Hunting Apocalypse" -60190,0,1365,150,0,0,0,0,"Hunting Apocalypse" - -60200,604800,0,0,0,0,0,0,"Endless Tower Effect" -60201,14400,0,0,0,0,0,0,"Endless Tower Time Limit" -60301,0,1155,100,0,0,0,0,"Dragon Hunting" -60302,0,1155,200,0,0,0,0,"Dragon Hunting" -60303,0,1714,100,0,0,0,0,"Dragon Hunting" -60304,0,1714,200,0,0,0,0,"Dragon Hunting" -60305,0,1717,100,0,0,0,0,"Dragon Hunting" -60306,0,1717,200,0,0,0,0,"Dragon Hunting" -60307,0,1713,100,0,0,0,0,"Dragon Hunting" -60308,0,1713,200,0,0,0,0,"Dragon Hunting" -60309,0,1716,100,0,0,0,0,"Dragon Hunting" -60310,0,1716,200,0,0,0,0,"Dragon Hunting" - -// iRO expanded upon the log entries of this quest. -60351,0,0,0,0,0,0,0,"Bathroom Ghost" -60352,0,0,0,0,0,0,0,"Bathroom Ghost" -60353,0,0,0,0,0,0,0,"Bathroom Ghost" -60354,0,0,0,0,0,0,0,"Bathroom Ghost" -60355,0,0,0,0,0,0,0,"Bathroom Ghost" - -62238,3600,0,0,0,0,0,0,"Midgardian Mercenary timer" diff --git a/db/re/item_combo_db.txt b/db/re/item_combo_db.txt index 5e09bb9138..477132586d 100644 --- a/db/re/item_combo_db.txt +++ b/db/re/item_combo_db.txt @@ -95,8 +95,12 @@ 2183:15068,{ bonus2 bSubEle,Ele_Neutral,5; } 2183:15068:18776:20710:22015,{ bonus bMaxHP,900; bonus bMaxSP,100; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,30; } 2183:22015,{ bonus bAllStats,2; } +2198:1649,{ .@r_2198 = getequiprefinerycnt(EQI_HAND_L); .@r_1649 = getequiprefinerycnt(EQI_HAND_R); if (.@r_2198 > 9) { bonus bMatk,15 * .@r_1649; } if (.@r_1649 >= 10) { bonus bMatk,50; bonus bVariableCastrate,-10; } } 2241:5136,{ bonus bMaxHP,700; bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"AL_INCAGI",10,30,1; } 2268:18573,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if(.@r > 6) { bonus bMaxHPrate,((.@r-5)/2)*2; bonus bHit,(.@r-5)/2; } } +2268:19082,{ bonus bDelayrate,-5; } +//Mechanical Plant Hat:19082,{ bonus2 bSkillAtk,GN_SPORE_EXPLOSION,getequiprefinerycnt(EQI_HEAD_???)*5; } +//2268:Mechanical Plant Hat:19082,{ bonus2 bSkillUseSP,GN_SPORE_EXPLOSION,20; } 2269:5781,{ bonus bInt,1; bonus bMaxSP,30; } 2269:5786,{ bonus2 bAddClass,Class_All,1; } //2269:5768,{ bonus bInt,1; if(getequiprefinerycnt(EQI_HEAD_TOP) > 6) bonus bMaxSPrate,getequiprefinerycnt(EQI_HEAD_TOP)-6; } @@ -127,7 +131,7 @@ 2374:2729,{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; } 2375:2729,{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; } 2376:2435:2538,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player,200; bonus bVit,3; bonus bMaxHPRate,12; bonus bHealpower2,10; bonus bAddItemHealRate,10; autobonus2 "{ bonus2 bHPRegenRate,600,1000; }",5,10000,BF_WEAPON,"{ specialeffect2 EF_HEAL; }"; } -2377:2435:2538,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player,200; bonus bStr,3; bonus bMaxHPRate,12; bonus2 bSkillAtk,"MC_MAMMONITE",20; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bSkillHeal2,"AM_POTIONPITCHER",10; bonus2 bSkillHeal2,"AL_HEAL",10; bonus bUnbreakableArmor,0; } +2377:2435:2538,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player,200; bonus bStr,3; bonus bMaxHPRate,12; bonus2 bSkillAtk,"MC_MAMMONITE",20; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bSkillHeal2,"AM_POTIONPITCHER",10; bonus2 bSkillHeal2,"AL_HEAL",10; bonus bUnbreakableArmor,1; } 2378:2435:2538,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player,200; bonus bAgi,3; bonus bMaxHPRate,12; bonus bCritical,5; bonus bAspdRate,5; autobonus "{ bonus2 bHPRegenRate,300,1000; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_HEAL; }"; } 2379:2436:2539,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player,200; bonus bInt,3; bonus bMaxHPRate,12; bonus2 bResEff,Eff_Stun,2000; autobonus2 "{ bonus bDefEle,Ele_Ghost; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_ENERGYCOAT; }"; } 2380:2436:2539,{ bonus2 bSubRace,RC_All,-200; bonus2 bSubRace,RC_DemiHuman,200; bonus2 bSubRace,RC_Player,200; bonus bInt,3; bonus bMaxHPRate,12; bonus2 bVariableCastrate,"AL_HOLYLIGHT",-50; bonus bHealPower,6; autobonus2 "{ bonus bDefEle,Ele_Ghost; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_ENERGYCOAT; }"; } @@ -166,12 +170,18 @@ 2483:2586:15046,{ bonus bVit,5; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player,15; } 2484:2586:15047,{ bonus bDex,5; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player,15; } 2485:2587:15048,{ bonus bInt,5; bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player,15; } +2507:15146,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus bMaxSPrate,10+.@r; bonus bFlee,10+.@r; } +2509:15146,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus bMaxHPrate,10+.@r; bonus bMatkRate,2+.@r; } 2518:2648:2649:5126,{ bonus bInt,5; bonus bMdef,11; bonus bMaxSPrate,20; bonus bNoCastCancel,0; bonus bVariableCastrate,25; } 2519:2650:2651:5127,{ bonus bStr,2; bonus bLuk,9; bonus bCritical,13; bonus bBaseAtk,18; bonus bFlee2,13; } +2519:15147,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,15; bonus2 bIgnoreDefRaceRate,RC_Demon,15; bonus2 bIgnoreDefRaceRate,RC_Undead,15; bonus bLuk,3+.@r; bonus bCritical,10+.@r; } +2524:15147,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,15; bonus2 bIgnoreDefRaceRate,RC_Demon,15; bonus2 bIgnoreDefRaceRate,RC_Undead,15; bonus bMaxHPrate,10+.@r; bonus bAtkRate,2+.@r; } 2527:5467:13001,{ bonus2 bAddRace,RC_Dragon,25; } 2527:5467:13030,{ bonus2 bAddRace,RC_Dragon,25; } 2527:13001,{ bonus2 bAddRace,RC_Dragon,5; } 2527:13030,{ bonus2 bAddRace,RC_Dragon,5; } +2597:28342,{ bonus bCritAtkRate,5; bonus bCritical,10; .@r = getequiprefinerycnt(EQI_COSTUME_HEAD_TOP); if (.@r > 7) bonus bCritAtkRate,4; else if (.@r > 5) bonus bCritAtkRate,3; } +//2598:Ramor Shield,{ .@r = getequiprefinerycnt(EQI_GARMENT); bonus2 bSubRace,RC_Undead,.@r; bonus2 bSubRace,RC_DemiHuman,.@r; } 2607:2677,{ bonus2 bSkillAtk,"AL_HEAL",50; bonus2 bSkillAtk,"PR_MAGNUS",30; bonus bSPrecovRate,9; } 2607:2711,{ bonus2 bSkillAtk,"AL_HEAL",50; bonus2 bSkillAtk,"PR_MAGNUS",30; bonus bSPrecovRate,9; } 2607:2786,{ bonus2 bSkillAtk,"AL_HEAL",50; bonus2 bSkillAtk,"PR_MAGNUS",30; bonus bSPrecovRate,9; } @@ -219,7 +229,7 @@ 2826:2827:5577,{ autobonus "{ bonus bAspdRate,2; }",50,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bMaxHP,BaseLevel*15; bonus bMaxSP,(BaseLevel*12)/10; bonus2 bAddClass,Class_All,3; } 2855:5360,{ bonus bCritAtkRate,10; if( getequiprefinerycnt(EQI_HEAD_TOP)>5 ) bonus bCritical,50; } 2957:2958,{ bonus4 bAutoSpell,"MO_EXTREMITYFIST",1,3,1; bonus3 bAutoSpell,"PR_LEXAETERNA",1,20; bonus3 bAutoSpell,"AS_SONICBLOW",5,50; bonus3 bAutoSpell,"MO_INVESTIGATE",5,20; bonus3 bAutoSpell,"ASC_METEORASSAULT",2,50; } -2959:18756,{ .@r = 3+(3*getequiprefinerycnt(EQI_HEAD_TOP)); autobonus "{ /* Active_Montransform ATROCE, SetDisappearSPAmount COMBIITEM_Shiba_Set 1 5 */ bonus bBaseAtk,30; }",.@r,5000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; autobonus2 "{ /* Active_Montransform ATROCE, SetDisappearSPAmount COMBIITEM_Shiba_Set 1 5 */ bonus bBaseAtk,30; }",.@r,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; } +2959:18756,{ .@r = 3+(3*getequiprefinerycnt(EQI_HEAD_TOP)); autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,30; }",.@r,5000,BF_WEAPON,"{ transform 1785,5000; specialeffect2 EF_POTION_BERSERK; }"; autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,30; }",.@r,5000,BF_WEAPON,"{ transform 1785,5000; specialeffect2 EF_POTION_BERSERK; }"; } 2966:2967:13092,{ bonus bBaseAtk,-(getequiprefinerycnt(EQI_HAND_R)*10); } 2966:2967:16026,{ bonus bBaseAtk,-(getequiprefinerycnt(EQI_HAND_R)*5); } 2966:2967:18821,{ bonus2 bAddClass,Class_All, -(getequiprefinerycnt(EQI_HEAD_TOP)/2); } @@ -267,20 +277,23 @@ 4168:4169,{ bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bVariableCastrate,-10; } 4169:4488,{ if(getequiprefinerycnt(EQI_SHOES) >= 15) { bonus bMaxHPrate,15; bonus bMaxSPrate,15; } else { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } } 4169:4488,{ if(getequiprefinerycnt(EQI_SHOES) >= 15) { bonus bMaxHPrate,15; bonus bMaxSPrate,15; } else { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } } -4172:4210:4230:4257:4272,{ bonus bAgi,5; bonus bStr,5; bonus bAspdRate,5; bonus bSpeedRate,25; bonus2 bSPDrainValue,1,0; if(BaseClass==Job_Thief) bonus bNoGemStone,0; } -4178:4199:4234:4252:4297,{ bonus bAgi,5; bonus bDex,3; bonus bLongAtkRate,20; bonus bPerfectHitAddRate,20; if(BaseClass==Job_Archer) { bonus2 bExpAddRace,RC_Brute,5; bonus2 bWeaponComaRace,RC_Brute,100; } } +4172:4210:4230:4257:4272,{ bonus bAgi,5; bonus bStr,5; bonus bAspdRate,5; bonus bSpeedRate,25; bonus bSPDrainValue,1; if(BaseClass==Job_Thief) bonus bNoGemStone,0; } +4178:4199:4234:4252:4297,{ bonus bAgi,5; bonus bDex,3; bonus bLongAtkRate,20; bonus bPerfectHitAddRate,20; if(BaseClass==Job_Archer) { bonus2 bExpAddRace,RC_Brute,5; bonus2 bComaRace,RC_Brute,100; } } 4178:4234:4252:4297:4381,{ bonus bDex,5; bonus2 bSkillAtk,"CG_ARROWVULCAN",5; bonus2 bSkillAtk,"DC_THROWARROW",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; if(BaseJob==Job_Bard||BaseJob==Job_Dancer) bonus3 bAutoSpellWhenHit,"CG_TAROTCARD",2,50; } 4185:4217:4280:4293:4312,{ bonus bVit,10; bonus bVariableCastrate,-10; bonus bUseSPRate,-10; if(BaseClass==Job_Acolyte) { bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,30; bonus2 bSubRace,RC_Demon,30; } } 4185:4293:4312:4332,{ bonus bStr,3; bonus bMaxSP,80; bonus bBaseAtk,25; bonus3 bAutoSpell,"AL_CRUCIS",5,10; bonus2 bSkillAtk,"MO_EXTREMITYFIST",10; if(BaseJob==Job_Monk) { bonus bUseSPrate,-10; bonus bNoCastCancel,0; } } -4186:4206:4233:4281:4321,{ bonus bLuk,10; bonus2 bSPDrainValue,2,0; bonus2 bSkillAtk,42,20; if(BaseClass==Job_Merchant) { bonus2 bAddMonsterDropItem,617,5; bonus bMagicDamageReturn,20; } } +4186:4206:4233:4281:4321,{ bonus bLuk,10; bonus bSPDrainValue,2; bonus2 bSkillAtk,42,20; if(BaseClass==Job_Merchant) { bonus2 bAddMonsterDropItem,617,5; bonus bMagicDamageReturn,20; } } 4191:4208:4258:4309:4325:4327,{ bonus bMaxHP,500; bonus bDef,5; bonus bMdef,5; bonus2 bSkillAtk,14,10; bonus2 bSkillAtk,19,10; bonus2 bSkillAtk,20,10; if(BaseClass==Job_Mage) { bonus bMatkRate,3; bonus bVariableCastrate,-15; } } 4193:4294,{ bonus bMaxHP,300; bonus bMaxSP,60; } +4207:18865,{ bonus2 bAddSize,Size_All,5; bonus2 bMagicAddSize,Size_All,5; } 4208:4258:4325:4327:4382,{ bonus bInt,3; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",10; bonus2 bSkillAtk,"MG_THUNDERSTORM",10; if(BaseJob==Job_Sage) { bonus bMagicDamageReturn,20; bonus2 bAddMonsterDropItem,716,100; bonus2 bAddMonsterDropItem,715,100; bonus bVariableCastrate,-20; } } 4218:4269,{ bonus bHPrecovRate,30; bonus bSPrecovRate,30; bonus bVit,4; bonus bInt,4; } 4220:4246:4311:4319:4331,{ bonus bStr,10; bonus bMaxHPrate,20; bonus bHPrecovRate,50; bonus3 bAutoSpell,"BS_WEAPONPERFECT",1,3; bonus2 bAddMonsterDropItem,501,500; if(BaseClass==Job_Swordman) bonus2 bAddItemGroupHealRate,IG_Potion,50; } 4229:4244:4299:4313,{ bonus bDef,3; bonus bMdef,3; } 4237:4238,{ bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",5,20; } 4247:18554,{ bonus2 bAddEle,Ele_Water,10; } +4250:18865,{ bonus2 bAddSize,Size_All,5; bonus2 bMagicAddSize,Size_All,5; } +4254:18865,{ bonus2 bAddSize,Size_All,5; bonus2 bMagicAddSize,Size_All,5; } 4268:4277,{ bonus bBaseAtk,20; bonus bLuk,3; } 4273:18554,{ bonus2 bAddEle,Ele_Water,10; } 4311:4319:4331:4371,{ bonus bInt,1; bonus bStr,1; bonus bDef,2; bonus bSPrecovRate,10; bonus2 bSkillAtk,"PA_SHIELDCHAIN",10; bonus2 bSkillAtk,"PA_SACRIFICE",10; bonus bVariableCastrate,-10; if(BaseJob==Job_Crusader) bonus bDefEle,Ele_Holy; } @@ -293,6 +306,7 @@ 4627:4628,{ bonus2 bSubRace,RC_Formless,5; bonus2 bSubRace,RC_Demon,5; bonus2 bIgnoreDefRaceRate,RC_Formless,50; bonus2 bIgnoreDefRaceRate,RC_Demon,50;} 4629:4630,{ bonus3 bAutoSpell,677,2,2; bonus2 bSubEle,Ele_Neutral,5; } 4631:4632,{ bonus5 bAutoSpell,85,1,1,BF_SHORT,0; } +4635:4636,{ bonus2 bResEff,Eff_Burning,10000; } 5040:5442,{ bonus bAspdRate,3; bonus bVariableCastrate,3; } 5040:18673,{ bonus bSPrecovRate,3; } 5041:18538,{ bonus2 bSubRace,RC_Angel,9; } @@ -317,28 +331,64 @@ 5475:18656,{ bonus bBaseAtk,30; bonus bMatk,30; bonus2 bAddMonsterDropItem,529,400; bonus2 bAddMonsterDropItem,530,400; bonus2 bAddMonsterDropItem,538,400; bonus2 bAddMonsterDropItem,12192,400;} 5498:5521,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if(.@r>=7) bonus bCritAtkRate,10; if(.@r>=9) bonus bAspd,1; } 5548:5766,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bBaseAtk,(.@r>10?10:.@r); bonus bMatk,(.@r>10?10:.@r); } +5920:1659,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillUseSP,"AL_HEAL",6*.@r; bonus2 bSkillUseSP,"AB_CHEAL",10*.@r; bonus2 bSkillUseSP,"AB_HIGHNESSHEAL",14*.@r; } +5920:18542,{ bonus bHealPower,2*getequiprefinerycnt(EQI_HEAD_TOP); } +5966:2198,{ .@r = getequiprefinerycnt(EQI_HAND_L); if (.@r > 7) bonus2 bSkillCooldown,"WL_COMET",-20000+(.@r > 9 ? -20000 : 0); } +5967:4152,{ bonus2 bAddItemGroupHealRate,IG_Juice,1000; } +5967:4163,{ bonus bAspdRate,3; bonus bAspd,1; bonus bNoWeaponDamage,5; if (getequiprefinerycnt(EQI_HAND_R) > 10 && getiteminfo(getequipid(EQI_HAND_R),11) == 11) bonus bAspd,1; } +5967:4015,{ bonus2 bSubEle,Ele_All,10; } +5968:1647,{ if (BaseClass == Job_Acolyte) { bonus bHealPower,getequiprefinerycnt(EQI_HAND_R)*4; } } //9024:18832,{ bonus3 bAutoSpell,"BS_ADRENALINE",2,(GetPetRelationship >= 3)?15:10; } 13027:15044,{ .@r = getequiprefinerycnt(EQI_ARMOR)?getequiprefinerycnt(EQI_ARMOR):1; bonus3 bAddMonsterDropItem,929,RC_DemiHuman,70*.@r; bonus3 bAddMonsterDropItem,970,RC_DemiHuman,50*.@r; bonus3 bAddMonsterDropItem,929,RC_Player,70*.@r; bonus3 bAddMonsterDropItem,970,RC_Player,50*.@r; bonus3 bAddMonsterDropItem,929,RC_Brute,70*.@r; bonus3 bAddMonsterDropItem,970,RC_Brute,50*.@r; } 13034:13035,{ bonus bMaxSP,20; bonus bMaxHPRate,5; bonus bHit,10; bonus2 bAddSize,Size_Large,30; autobonus "{ bonus bAspdRate,100; }",1,7000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; } 15041:18659,{ bonus bInt,3; bonus bStr,3; bonus bMdef,10; bonus bDefEle,Ele_Fire; bonus2 bAddEle,Ele_Earth,10; } +15067:2950:20709:22012,{ bonus2 bExpAddRace,RC_All,30; } 15068:20710,{ bonus bAgi,5; bonus bFlee,10; } 15088:18816:18818,{ bonus bMatk,BaseLevel/3; bonus2 bExpAddClass,Class_All,5; } 15088:18817:18819,{ bonus bBaseAtk,BaseLevel/3; bonus2 bExpAddClass,Class_All,5; } +15090:18820:20721:22033,{ bonus2 bSubEle,Ele_Neutral,15; bonus bMaxHPrate,25; bonus bMaxSPrate,25; bonus bMatkRate,10; bonus3 bAutoSpellWhenHit,"WL_DRAINLIFE",3,1; } 15116:20743:22046,{ bonus bMaxSPrate,25; bonus bMaxSPrate,25; bonus bSpeedAddRate,10; } +15123:1287,{ if (getequiprefinerycnt(EQI_HAND_R) >= 7) { autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",1000,3000,BF_SHORT,BF_NORMAL; } /* Confirm: Success rate */ } 15138:19026,{ bonus bUnbreakableArmor,1; bonus2 bSubRace,RC_Fish,(10+getequiprefinerycnt(EQI_ARMOR)); } 18507:18539,{ bonus bUseSPrate,-3; } 18559:18560,{ bonus bCritAtkRate,5; } 18776:20710,{ bonus bBaseAtk,10; } 18776:22015,{ bonus bMatk,20; } +18937:2659,{ bonus bInt,8; bonus bMaxSPrate,5;} +18937:2660,{ bonus bInt,8; bonus bBaseAtk,20;} +18937:2661,{ bonus bInt,8; bonus bFlee,15;} +18937:2662,{ bonus bInt,8; bonus bHit,10;} 18997:28326:28327,{ bonus bSpeedRate,10; bonus bBaseAtk,50; bonus bMatk,50; if(getequiprefinerycnt(EQI_HEAD_TOP)>=9){ bonus bMaxHPrate,10; bonus bMaxSPrate,50; } } +19019:1730,{ bonus bLongAtkRate,45; } +19019:1731,{ bonus bLongAtkRate,45; } +19019:1732,{ bonus bLongAtkRate,45; } +19019:1733,{ bonus bLongAtkRate,45; } +19020:1617,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bMatk,.@r; if (.@r >= 10) { autobonus "{ bonus bVariableCastrate,-50; }",100,5000,BF_MAGIC; /* Confirm: Success rate? */ } } +19020:1618,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bMatk,.@r; if (.@r >= 10) { autobonus "{ bonus bVariableCastrate,-50; }",100,5000,BF_MAGIC; /* Confirm: Success rate? */ } } +19020:1619,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bMatk,.@r; if (.@r >= 10) { autobonus "{ bonus bVariableCastrate,-50; }",100,5000,BF_MAGIC; /* Confirm: Success rate? */ } } +19020:1620,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus bMatk,.@r; if (.@r >= 10) { autobonus "{ bonus bVariableCastrate,-50; }",100,5000,BF_MAGIC; /* Confirm: Success rate? */ } } +19021:2160,{ bonus2 bSubSize,Size_Large,5+(getequiprefinerycnt(EQI_HAND_L)*2); } +19021:1387,{ bonus2 bSkillAtk,"WS_CARTTERMINATION",15+(getequiprefinerycnt(EQI_HAND_R))*5; } +19021:1490,{ bonus2 bSkillAtk,"LK_SPIRALPIERCE",getequiprefinerycnt(EQI_HAND_R)*5; .@lv = getskilllv("LK_SPIRALPIERCE"); bonus4 bAutoSpellOnSkill,"LK_JOINTBEAT","LK_SPIRALPIERCE",(.@lv ? .@lv : 1),50+(getskilllv("LK_JOINTBEAT")*10); /* Confirm: Success rate */ } +19024:5170,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if (.@r >= 7) bonus bAspdRate,5; if (.@r >= 9) bonus bMaxHPRate,5; } 19026:15138,{ bonus2 bSubRace,RC_Fish,(10+getequiprefinerycnt(EQI_ARMOR)); bonus bUnbreakableArmor,1; } -19026:20756,{ set .@c, getequiprefinerycnt(EQI_GARMENT); bonus2 bSPGainRace,RC_Fish,10; bonus3 bAddMonsterDropItem,551,RC_Fish,(5+.@c); bonus2 bAddItemHealRate,551,5; bonus bHPrecovRate,(5+.@c); } -19026:22059,{ bonus2 bCriticalAddRace,RC_Fish,(10+getequiprefinerycnt(EQI_SHOES)); } +19026:20756,{ .@r = getequiprefinerycnt(EQI_GARMENT); bonus2 bSPGainRace,RC_Fish,10; bonus3 bAddMonsterDropItem,551,RC_Fish,(5+.@r); bonus2 bAddItemHealRate,551,5; bonus bHPrecovRate,(5+.@r); } 19026:20756:22059:15138,{ bonus bMaxHP,1000; bonus bMaxSP,100; bonus2 bExpAddRace,RC_Fish,20; bonus2 bMagicAddRace,RC_Fish,50; bonus2 bSubEle,Ele_Water,50; } +19026:22059,{ bonus2 bCriticalAddRace,RC_Fish,(10+getequiprefinerycnt(EQI_SHOES)); } 19038:19039,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP)+getequiprefinerycnt(EQI_HEAD_MID); if((.@r==7)||(.@r==8)){ bonus bCritical,12; bonus bHit,12; } if(.@r>=9){ bonus bMaxHP,1200; bonus bMaxSP,120; } } +19048:1730:1752,{ bonus bLongAtkRate,20; bonus2 bSubEle,Ele_Fire,-10; if (getequiprefinerycnt(EQI_HAND_R) >= 10) bonus bAspd,1; } +19048:1731:1754,{ bonus bLongAtkRate,20; bonus2 bSubEle,Ele_Fire,-10; if (getequiprefinerycnt(EQI_HAND_R) >= 10) bonus2 bResEff,Eff_Freeze,-1000; /* Confirm: Resistance reduction */ } +19048:1732:1756,{ bonus bLongAtkRate,20; bonus2 bSubEle,Ele_Fire,-10; if (getequiprefinerycnt(EQI_HAND_R) >= 10) bonus2 bResEff,Eff_Stone,-1000; /* Confirm: Resistance reduction */ } +19048:1733:1755,{ bonus bLongAtkRate,20; bonus2 bSubEle,Ele_Fire,-10; /* if (getequiprefinerycnt(EQI_HAND_R) >= 10) TO DO: Disable autocast Wind Blade */ } 20135:20136,{ bonus bAllStats,12; } -20756:19026,{ bonus2 bSPGainRace,RC_Fish,10; bonus bHPrecovRate,(getequiprefinerycnt(EQI_GARMENT)*5); bonus3 bAddMonsterDropItem,551,RC_Fish,(1+getequiprefinerycnt(EQI_GARMENT)); bonus2 bAddItemHealRate,551,5; } -22059:19026,{ bonus2 bCriticalAddRace,RC_Fish,(10+getequiprefinerycnt(EQI_SHOES)); } +21012:4388,{ bonus5 bAutoSpell,"MG_SOULSTRIKE",5,10+(getequiprefinerycnt(EQI_HAND_R)*10),BF_NORMAL|BF_WEAPON,1; /* Confirm: Success rate */ } +21012:4335,{ bonus5 bAutoSpell,"WZ_EARTHSPIKE",5,10+(getequiprefinerycnt(EQI_HAND_R)*10),BF_NORMAL|BF_WEAPON,1; /* Confirm: Success rate */ } +21012:4345,{ bonus5 bAutoSpell,"MG_LIGHTNINGBOLT",5,10+(getequiprefinerycnt(EQI_HAND_R)*10),BF_NORMAL|BF_WEAPON,1; /* Confirm: Success rate */ } +21012:4350,{ bonus5 bAutoSpell,"MG_COLDBOLT",5,10+(getequiprefinerycnt(EQI_HAND_R)*10),BF_NORMAL|BF_WEAPON,1; /* Confirm: Success rate */ } +21012:4380,{ bonus5 bAutoSpell,"MG_FIREBOLT",5,10+(getequiprefinerycnt(EQI_HAND_R)*10),BF_NORMAL|BF_WEAPON,1; /* Confirm: Success rate */ } +21013:4072,{ bonus2 bSubSize,Size_All,15; } +22064:2124,{ bonus bAspd,getequiprefinerycnt(EQI_HAND_L)/3; } +22064:2702,{ if (readparam(bAgi) > 120) bonus bAspd,2; /* Confirm: Bonus value */ } 24012:24013:24014:24015:24016:24017,{ bonus bAllStats,9; } 24018:24019:24020,{ if(getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L) + getequiprefinerycnt(EQI_SHADOW_WEAPON) >= 23) { bonus bAtkRate,1; } } 24021:24022:24023,{ if(getequiprefinerycnt(EQI_SHADOW_ACC_R) + getequiprefinerycnt(EQI_SHADOW_ACC_L) + getequiprefinerycnt(EQI_SHADOW_WEAPON) >= 23) { bonus bMatkRate,1; } } @@ -366,8 +416,8 @@ 24072:24075,{ bonus bMaxHPrate,1; bonus bMaxSPrate,1; } 24073:24076,{ bonus bMaxHPrate,1; bonus bMaxSPrate,1; } 24074:24077,{ bonus bMaxHPrate,1; bonus bMaxSPrate,1; } -24078:24079:24080,{ bonus3 bSPDrainRate,10,1+(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)/10),0; } -24081:24082:24083,{ bonus3 bHPDrainRateRace,11,40,2+(getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_SHOES)/5); } +24078:24079:24080,{ bonus2 bSPDrainRate,10,1+(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)/10); } +24081:24082:24083,{ bonus2 bHPDrainRate,40,2+(getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_SHOES)/5); } 24084:24085:24086:24087:24088:24089,{ bonus bAllStats,1; .@r = getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); if (.@r >= 45) { bonus bNoGemStone,1; } bonus bUseSPrate,100-.@r; } 24090:24091:24092,{ bonus bDef,5; if (getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES) >= 20) bonus2 bResEff,Eff_Stone,100; } 24090:24093:24094,{ bonus bDef,5; if (getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_SHOES) >= 20) bonus2 bResEff,Eff_Sleep,100; } @@ -403,8 +453,7 @@ 24168:24169:24177,{ bonus bMatk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) bonus bIgnoreMDefRace,RC_Formless; } 24168:24169:24178,{ bonus bMatk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) bonus bIgnoreMDefRace,RC_Undead; } 24168:24169:24179,{ bonus bMatk,5; if(getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=25) bonus bIgnoreMDefRace,RC_Plant; } -28326:28327,{ bonus bInt,8; bonus bStr,8; } -24180:24181:24182:24183:24184:24185,{ .@refine = getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); bonus bAllStats,1; if(.@refine>=45) { bonus bMaxHPrate,(.@refine-60); sc_start4 SC_ENDURE,1,10,0,0,1;} } +24180:24181:24182:24183:24184:24185,{ .@r = getequiprefinerycnt(EQI_SHADOW_ARMOR)+getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); bonus bAllStats,1; if(.@r>=45) { bonus bMaxHPrate,(.@r-60); sc_start4 SC_ENDURE,1,10,0,0,1;} } 24186:24198,{ bonus2 bSubEle,Ele_Neutral,2; } 24187:24199,{ bonus2 bSubEle,Ele_Dark,2; } 24188:24200,{ bonus2 bSubEle,Ele_Water,2; } @@ -421,7 +470,19 @@ 24212:24213,{ bonus2 bExpAddRace,RC_All,((getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_SHIELD))>=15?10:5); } 24214:24215,{ bonus2 bExpAddRace,RC_All,((getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_SHIELD))>=15?4:2); } 24217:24218,{ if(getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=15) bonus bAspd,1; } -//24223:Enhanced Force Shadow Earring:Enhanced Force Shadow Pendant,{ .@refine = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); if(.@refine)>=25 {bonus bAtkRate,2;} else if(.@refine)>=20 {bonus bAtkRate,1;} bonus bAtkRate,1; } -24224:24225:24226,{ .@refine = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); if(.@refine)>=25 {bonus bAtkRate,2;} else if(.@refine)>=20 {bonus bAtkRate,1;} bonus bAtk2,10; } -//24227:Enhanced Soul Earring:Enhanced Soul Pendant,{ .@refine = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); if(.@refine)>=25 {bonus bMatkRate,2;} else if(.@refine)>=20 {bonus bMatkRate,1;} bonus bMatkRate,1; } -24228:24229:24230,{ .@refine = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); if(.@refine)>=25 {bonus bMatkRate,2;} else if(.@refine)>=20 {bonus bMatkRate,1;} bonus bMatk,10; } +//24223:Enhanced Force Shadow Earring:Enhanced Force Shadow Pendant,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); if(.@r)>=25 {bonus bAtkRate,2;} else if(.@r)>=20 {bonus bAtkRate,1;} bonus bAtkRate,1; } +24224:24225:24226,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); if(.@r)>=25 {bonus bAtkRate,2;} else if(.@r)>=20 {bonus bAtkRate,1;} bonus bAtk2,10; } +//24227:Enhanced Soul Earring:Enhanced Soul Pendant,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); if(.@r)>=25 {bonus bMatkRate,2;} else if(.@r)>=20 {bonus bMatkRate,1;} bonus bMatkRate,1; } +24228:24229:24230,{ .@r = getequiprefinerycnt(EQI_SHADOW_WEAPON)+getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L); if(.@r)>=25 {bonus bMatkRate,2;} else if(.@r)>=20 {bonus bMatkRate,1;} bonus bMatk,10; } +24231:24232,{ bonus bFlee,5; if (getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_SHIELD)>=15) { bonus bAspd,1; } } +24234:24235,{ bonus bBaseAtk,5; if (getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=15) { bonus2 bAddSize,Size_Large,2; bonus2 bMagicAddSize,Size_Large,2; } } +24236:24237,{ bonus bBaseAtk,5; if (getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=15) { bonus2 bAddSize,Size_Medium,2; bonus2 bMagicAddSize,Size_Medium,2; } } +24238:24239,{ bonus bBaseAtk,5; if (getequiprefinerycnt(EQI_SHADOW_ACC_R)+getequiprefinerycnt(EQI_SHADOW_ACC_L)>=15) { bonus2 bAddSize,Size_Small,2; bonus2 bMagicAddSize,Size_Small,2; } } +24243:24244:24245,{ bonus bDelayrate,(getequiprefinerycnt(EQI_SHADOW_SHOES)+getequiprefinerycnt(EQI_SHADOW_SHIELD)+getequiprefinerycnt(EQI_SHADOW_ARMOR)>=25?-5:-1); } +28315:28317,{ bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; } +28316:28318,{ bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; } +28326:28327,{ bonus bInt,8; bonus bStr,8; } +28372:1433,{ .@r = getequiprefinerycnt(EQI_HAND_R)/2*7; bonus2 bSkillAtk,"LG_CANNONSPEAR",.@r; bonus2 bSkillAtk,"LG_BANISHINGPOINT",.@r; } +28372:2153,{ .@r = getequiprefinerycnt(EQI_HAND_R)/6*8; bonus2 bSkillAtk,"LG_SHIELDPRESS",.@r; } +28372:18823,{ bonus2 bSkillAtk,"CR_GRANDCROSS",BaseLevel; bonus2 bVariableCastrate,"CR_GRANDCROSS",-BaseLevel*2; bonus2 bSkillAtk,"CR_GRANDCROSS",BaseLevel/30; bonus2 bSkillUseSP,"CR_GRANDCROSS",-(BaseLevel/30)*10; } +28602:2677,{ bonus2 bVariableCastrate,"PR_MAGNUS",-25; bonus bHealPower,10; bonus bAddItemHealRate,10; autobonus2 "{ bonus bIgnoreMDefRace,RC_All; }",getequiprefinerycnt(EQI_HAND_R)*20,2000,BF_SHORT|BF_NORMAL; /* Confirm: Success rate and duration */ } diff --git a/db/re/item_db.txt b/db/re/item_db.txt index d3528e2a05..3f6a6f7af3 100644 --- a/db/re/item_db.txt +++ b/db/re/item_db.txt @@ -102,12 +102,13 @@ 597,Lovely_Choco_Tart,Lovely Choco-Tart,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(10,400),0; },{},{} 598,Light_Red_Pot,Light Red Potion,0,50,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{} 599,Light_Orange_Pot,Light Orange Potion,0,200,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; },{},{} +//=================================================================== // Usable Items //=================================================================== 601,Wing_Of_Fly,Fly Wing,11,60,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_TELEPORT",1; },{},{} 602,Wing_Of_Butterfly,Butterfly Wing,11,300,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_TELEPORT",3; },{},{} 603,Old_Blue_Box,Old Blue Box,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_BlueBox,1); },{},{} -604,Branch_Of_Dead_Tree,Dead Branch,2,50,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ monster "this",-1,-1,"--ja--",-1,1,""; },{},{} +604,Branch_Of_Dead_Tree,Dead Branch,2,50,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ monster "this",-1,-1,"--ja--",-1-MOBG_Branch_Of_Dead_Tree,1,""; },{},{} 605,Anodyne,Anodyne,11,2000,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "SM_ENDURE",1; },{},{} 606,Aloebera,Aloevera,11,1500,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "SM_SELFPROVOKE",1; },{},{} 607,Yggdrasilberry,Yggdrasil Berry,0,5000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 100,100; },{},{} @@ -162,14 +163,14 @@ 665,Gift_Box_2,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_GiftBox_2,1); },{},{} 666,Gift_Box_3,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_GiftBox_3,1); },{},{} 667,Gift_Box_4,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_GiftBox_4,1); },{},{} -668,Handsei,Red Envelope,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ set Zeny,Zeny+rand(1000,10000); },{},{} +668,Handsei,Red Envelope,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ Zeny += rand(1000,10000); },{},{} 669,Rice_Cake_Soup,Tempting Rice-Cake Soup,0,500,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal -100,-100; },{},{} 670,Gold_Coin_Moneybag,Bag of Gold Coins,3,100000,,400,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -671,Gold_Coin,Gold Coin,3,10000,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*goldpoint++; (For Roulette game)*/ },{},{} +671,Gold_Coin,Gold Coin,2,10000,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ RouletteGold++; },{},{} 672,Copper_Coin_Moneybag,Bag of Bronze Coins,3,1000,,400,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -673,Copper_Coin,Bronze Coin,3,100,,40,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +673,Copper_Coin,Bronze Coin,2,100,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ RouletteBronze++; },{},{} 674,Mithril_Coin,Mithril Coin,3,5000,,40,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -675,Silver_Coin,Silver Coin,3,5000,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*silverpoint++; (For Roulette game)*/ },{},{} +675,Silver_Coin,Silver Coin,2,5000,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ RouletteSilver++; },{},{} 676,Silver_Coin_Moneybag,Bag of Silver Coins,3,50000,,400,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 677,White_Gold_Coin,Platinum Coin,3,2000,,40,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 678,Poison_Bottle,Poison Bottle,2,5000,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ if(Class == Job_Assassin_Cross || Class == Job_Guillotine_Cross || Class == Job_Guillotine_Cross_T) { sc_start SC_DPOISON,60000,0; sc_start SC_ASPDPOTION3,60000,9; } else percentheal -100,-100; },{},{} @@ -195,6 +196,7 @@ 698,Fire_Scroll_3_1,Level 1 Fire Wall,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_FIREWALL",1; },{},{} 699,Fire_Scroll_3_5,Level 5 Fire Wall,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_FIREWALL",5; },{},{} 700,Cold_Scroll_2_1,Level 1 Frost Diver,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_FROSTDIVER",1; },{},{} +//=================================================================== // Etc Items //=================================================================== 701,Ora_Ora,Ora Ora,3,55000,,200,,,,,,,,,,,,,{},{},{} @@ -449,9 +451,9 @@ 1097,Worn_Out_Page,Worn Out Page,3,948,,10,,,,,,,,,,,,,{},{},{} 1098,Manacles,Manacles,3,658,,10,,,,,,,,,,,,,{},{},{} 1099,Worn_Out_Prison_Uniform,Worn-out Prison Uniform,3,680,,10,,,,,,,,,,,,,{},{},{} -// Weapons //=================================================================== // 1-Handed Swords +//=================================================================== 1101,Sword,Sword,5,100,,500,25,,1,3,0x000654E3,63,2,2,1,2,1,2,{},{},{} 1102,Sword_,Sword,5,100,,500,25,,1,4,0x000654E3,63,2,2,1,2,1,2,{},{},{} 1103,Sword__,Sword,5,100,,500,25,,1,0,0x000654E3,63,2,2,1,2,1,2,{},{},{} @@ -475,7 +477,7 @@ 1121,Tsurugi__,Tsurugi,5,51000,,1200,130,,1,0,0x000654E2,63,2,2,3,27,1,2,{},{},{} 1122,Ring_Pommel_Saber,Ring Pommel Saber,5,24000,,900,100,,1,2,0x000654E2,63,2,2,2,14,1,2,{},{},{} 1123,Haedonggum,Haedonggum,5,50000,,900,120,,1,1,0x000654E2,63,2,2,3,27,1,2,{ bonus bInt,3; },{},{} -1124,Orcish_Sword,Orcish Sword,5,20,,800,90,,1,0,0x000654E3,63,2,2,3,5,1,2,{ bonus bUnbreakableWeapon,0; },{},{} +1124,Orcish_Sword,Orcish Sword,5,20,,800,90,,1,0,0x000654E3,63,2,2,3,5,1,2,{ bonus bUnbreakableWeapon,1; },{},{} 1125,Ring_Pommel_Saber_,Ring Pommel Saber,5,24000,,900,100,,1,3,0x000654E2,63,2,2,2,14,1,2,{},{},{} 1126,Saber,Saber,5,49000,,1000,115,,1,2,0x000654E2,63,2,2,3,27,1,2,{},{},{} 1127,Saber_,Saber,5,49000,,1000,115,,1,3,0x000654E2,63,2,2,3,27,1,2,{},{},{} @@ -483,7 +485,7 @@ 1129,Flamberge,Flamberge,5,60000,,1500,150,,1,0,0x00004080,63,2,2,3,27,1,2,{},{},{} 1130,Nagan,Nagan,5,20,,500,120,,1,0,0x000654E2,63,2,2,4,40,1,2,{ skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{} 1131,Ice_Falchon,Ice Falchion,5,20,,600,100,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; bonus2 bAddEff2,Eff_Freeze,10; skill "MG_COLDBOLT",3; bonus3 bAutoSpell,"MG_COLDBOLT",3,100; },{},{} -1132,Edge,Edge,5,20,,700,115,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus2 bAddEff,Eff_Curse,30; bonus2 bWeaponComaClass,Class_Normal,10; },{},{} +1132,Edge,Edge,5,20,,700,115,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus2 bAddEff,Eff_Curse,30; bonus2 bComaClass,Class_Normal,10; },{},{} 1133,Fire_Brand,Fireblend,5,20,,500,100,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100; },{},{} 1134,Scissores_Sword,Caesar's Sword,5,20,,700,140,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus2 bAddRace,RC_Plant,25; bonus bIgnoreDefRace,RC_Plant; },{},{} 1135,Cutlas,Cutlus,5,20,,900,150,,1,0,0x000654E2,63,2,2,4,40,1,2,{ skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; },{},{} @@ -492,16 +494,18 @@ 1138,Mysteltainn_,Mysteltainn,5,20,,1000,170,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEle,Ele_Ghost,15; bonus3 bAutoSpell,"MG_STONECURSE",3,100; bonus2 bAddEff,Eff_Stone,10; bonus bDex,3; },{},{} 1139,Tale_Fing_,Tirfing,5,20,,1000,200,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Dark; bonus2 bHPLossRate,35,10000; },{},{} 1140,Byeorrun_Gum,Byeollungum,5,20,,900,150,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2; },{},{} -1141,Immaterial_Sword,Immaterial Sword,5,20,,900,140,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Ghost; bonus2 bSPVanishRate,30,30; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon,0; },{},{} +1141,Immaterial_Sword,Immaterial Sword,5,20,,900,140,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Ghost; bonus2 bSPVanishRate,30,30; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon,1; },{},{} 1142,Jewel_Sword,Jeweled Sword,5,20,,2200,104,,1,0,0x000654E2,63,2,2,3,68,1,2,{ bonus2 bAddMonsterDropItemGroup,IG_Jewel,100; },{},{} 1143,Gaia_Sword,Gaia Sword,5,20,,2500,140,,1,0,0x000654E2,63,2,2,3,74,1,2,{ bonus2 bAddMonsterDropItemGroup,IG_Ore,30; },{},{} 1144,Sasimi,Sashimi,5,20,,1400,75,,1,0,0x000654E2,63,2,2,3,48,1,2,{ bonus bAtkEle,Ele_Wind; bonus3 bAddMonsterDropItem,544,RC_Fish,4000; },{},{} 1145,Holy_Avenger,Holy Avenger,5,450000,,1350,125,,1,0,0x00004000,63,2,2,3,75,1,2,{ bonus bAtkEle,Ele_Holy; bonus bVit,2; },{},{} 1146,Town_Sword,Town Sword,5,42000,,800,100,,1,1,0x00000001,63,2,2,3,30,1,2,{},{},{} 1147,Town_Sword_,Town Sword,5,42000,,800,100,,1,2,0x00000001,63,2,2,3,30,1,2,{},{},{} -1148,Star_Dust_Blade,Star Dust Blade,5,20,,1000,140,,1,1,0x00000001,63,2,2,4,45,1,2,{ bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon,0; },{},{} +1148,Star_Dust_Blade,Star Dust Blade,5,20,,1000,140,,1,1,0x00000001,63,2,2,4,45,1,2,{ bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon,1; },{},{} 1149,Flamberge_,Flamberge,5,60000,,1500,150,,1,2,0x00004080,63,2,2,3,27,1,2,{},{},{} +//=================================================================== // 2-Handed Swords +//=================================================================== 1151,Slayer,Slayer,5,15000,,1300,90,,1,2,0x00004082,63,2,34,2,18,1,3,{},{},{} 1152,Slayer_,Slayer,5,15000,,1300,90,,1,3,0x00004082,63,2,34,2,18,1,3,{},{},{} 1153,Slayer__,Slayer,5,15000,,1300,90,,1,0,0x00004082,63,2,34,2,18,1,3,{},{},{} @@ -511,18 +515,18 @@ 1157,Two_Hand_Sword,Two-Handed Sword,5,60000,,2200,160,,1,1,0x00004082,63,2,34,3,33,1,3,{},{},{} 1158,Two_Hand_Sword_,Two-Handed Sword,5,60000,,2200,160,,1,2,0x00004082,63,2,34,3,33,1,3,{},{},{} 1159,Two_Hand_Sword__,Two-Handed Sword,5,60000,,2200,160,,1,0,0x00004082,63,2,34,3,33,1,3,{},{},{} -1160,Broad_Sword,Broad Sword,5,65000,,2000,140,,1,1,0x00004082,63,2,34,3,33,1,3,{ bonus bDef,5; bonus bUnbreakableWeapon,0; },{},{} -1161,Balmung,Balmung,5,20,,1000,250,,1,0,0xFFFFFFFF,63,2,34,4,48,1,3,{ bonus bUnbreakableWeapon,0; bonus bAtkEle,Ele_Holy; },{},{} -1162,Broad_Sword_,Broad Sword,5,65000,,2000,140,,1,2,0x00004082,63,2,34,3,33,1,3,{ bonus bDef,5; bonus bUnbreakableWeapon,0; },{},{} +1160,Broad_Sword,Broad Sword,5,65000,,2000,140,,1,1,0x00004082,63,2,34,3,33,1,3,{ bonus bDef,5; bonus bUnbreakableWeapon,1; },{},{} +1161,Balmung,Balmung,5,20,,1000,250,,1,0,0xFFFFFFFF,63,2,34,4,48,1,3,{ bonus bUnbreakableWeapon,1; bonus bAtkEle,Ele_Holy; },{},{} +1162,Broad_Sword_,Broad Sword,5,65000,,2000,140,,1,2,0x00004082,63,2,34,3,33,1,3,{ bonus bDef,5; bonus bUnbreakableWeapon,1; },{},{} 1163,Claymore,Claymore,5,74000,,2500,180,,1,0,0x00004080,63,2,34,3,33,1,3,{},{},{} 1164,Muramasa,Muramasa,5,20,,1000,155,,1,0,0x00004082,63,2,34,4,48,1,3,{ bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10; },{},{} 1165,Masamune,Masamune,5,20,,1000,200,,1,0,0x00004082,63,2,34,4,48,1,3,{ bonus bFlee,30; bonus bStr,-5; bonus bAspd,2; bonus bDefRate,-67; bonus bDef2Rate,-67; },{},{} 1166,Dragon_Slayer,Dragon Slayer,5,20,,1300,150,,1,0,0x00004082,63,2,34,4,48,1,3,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15; },{},{} 1167,Schweizersabel,Schweizersabel,5,20,,1600,160,,1,0,0x00004082,63,2,34,4,48,1,3,{ bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; },{},{} -1168,Zweihander,Zweihander,5,20,,2200,200,,1,0,0x00004082,63,2,34,4,48,1,3,{ bonus bUnbreakableWeapon,0; },{},{} +1168,Zweihander,Zweihander,5,20,,2200,200,,1,0,0x00004082,63,2,34,4,48,1,3,{ bonus bUnbreakableWeapon,1; },{},{} 1169,Executioner_,Executioner,5,20,,2200,155,,1,0,0x00004082,63,2,34,4,48,1,3,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player,-10; bonus bAtkEle,Ele_Dark; },{},{} 1170,Katzbalger,Katzbalger,5,20,,2000,175,,1,0,0x00004082,63,2,34,4,48,1,3,{ bonus bVit,5; bonus bDef,10; },{},{} -1171,Zweihander_,Zweihander,5,20,,2200,200,,1,2,0x00004082,63,2,34,4,48,1,3,{ bonus bUnbreakableWeapon,0; },{},{} +1171,Zweihander_,Zweihander,5,20,,2200,200,,1,2,0x00004082,63,2,34,4,48,1,3,{ bonus bUnbreakableWeapon,1; },{},{} 1172,Claymore_,Claymore,5,74000,,2500,180,,1,2,0x00004080,63,2,34,3,33,1,3,{},{},{} 1173,Muramasa_C,Muramasa,5,1,,0,204,,1,0,0x00004082,63,2,34,4,1,0,3,{ bonus bCritical,30; bonus bAspdRate,8; },{},{} 1174,Executioner_C,Executioner,5,2,,0,190,,1,0,0x00004082,63,2,34,4,0,0,3,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player,-10; bonus bAtkEle,Ele_Dark; },{},{} @@ -534,11 +538,11 @@ 1180,Dragon_Slayer_,Dragon Slayer,5,20,,1300,150,,1,2,0x00004082,63,2,34,4,48,1,3,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15; },{},{} 1181,Tae_Goo_Lyeon,Tae Goo Lyeon,5,20,,2000,250,,1,2,0x00004082,18,2,34,4,90,1,3,{ bonus bFlee2,10; if(JobLevel>=70) autobonus "{ bonus bBaseAtk,50; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; if(getrefine()>8) { bonus bVariableCastrate,-20; bonus bDelayRate,-20; } },{},{} 1182,Bloody_Eater,Bloody Eater,5,20,,1200,200,,1,2,0x00004082,18,2,34,4,50,1,3,{ bonus bAtkEle,Ele_Ghost; autobonus "{ bonus bCritical,100; bonus bBaseAtk,50; }",1,5000,0,"{ specialeffect2 EF_FIRESPLASHHIT; }"; bonus bHPGainValue,100; },{},{} -1183,BF_Two_Handed_Sword1,Brave Assaulter's Katzbalger,5,20,,0,200,,1,0,0x00004082,63,2,34,3,80,1,3,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; },{},{} -1184,BF_Two_Handed_Sword2,Valorous Assaulter's Katzbalger,5,20,,0,200,,1,0,0x00004082,63,2,34,3,80,1,3,{ bonus bCritical,20; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus bCritAtkRate,20; bonus bUnbreakableWeapon,0; },{},{} +1183,BF_Two_Handed_Sword1,Brave Assaulter's Katzbalger,5,20,,0,200,,1,0,0x00004082,63,2,34,3,80,1,3,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; },{},{} +1184,BF_Two_Handed_Sword2,Valorous Assaulter's Katzbalger,5,20,,0,200,,1,0,0x00004082,63,2,34,3,80,1,3,{ bonus bCritical,20; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus bCritAtkRate,20; bonus bUnbreakableWeapon,1; },{},{} 1185,Violet_Fear,Violet Fear,5,20,,2200,275,,1,2,0x00004082,18,2,34,4,80,1,3,{ bonus3 bAutoSpell,"WZ_METEOR",3,30; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,50; autobonus "{ bonus bIgnoreDefClass,Class_Normal; specialeffect2 EF_ENHANCE; }",50,5000; },{},{} -1186,Death_Guidance,Death Guidance,5,20,,2000,200,,1,2,0x00004082,18,2,34,4,70,1,3,{ bonus bStr,5; bonus bAgi,2; bonus bFlee2,20; bonus3 bAutoSpell,"NPC_HELLPOWER",1,10; bonus4 bAutoSpell,"NPC_HELLPOWER",1,10,0; if( getrefine()>8 ) bonus3 bAutoSpell,"NPC_VAMPIRE_GIFT",2,20; else bonus3 bAutoSpell,"NPC_VAMPIRE_GIFT",1,20; },{},{} -1187,Krieger_Twohand_Sword1,Glorious Claymore,5,20,,0,220,,1,0,0x00004082,63,2,34,4,80,1,3,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-3,1); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-3,1); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus3 bAutoSpell,"LK_CONCENTRATION",getskilllv("LK_CONCENTRATION")>1?getskilllv("LK_CONCENTRATION"):1,30; bonus3 bAutoSpell,"LK_AURABLADE",getskilllv("LK_AURABLADE")>1?getskilllv("LK_AURABLADE"):1,30; } },{},{} +1186,Death_Guidance,Death Guidance,5,20,,2000,200,,1,2,0x00004082,18,2,34,4,70,1,3,{ bonus bStr,5; bonus bAgi,2; bonus bFlee2,20; bonus3 bAutoSpell,"NPC_HELLPOWER",1,10; bonus4 bAutoSpell,"NPC_HELLPOWER",1,10,0; bonus3 bAutoSpell,"NPC_VAMPIRE_GIFT",(getrefine()>8?2:1),20; },{},{} +1187,Krieger_Twohand_Sword1,Glorious Claymore,5,20,,0,220,,1,0,0x00004082,63,2,34,4,80,1,3,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-3,1); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-3,1); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus3 bAutoSpell,"LK_CONCENTRATION",getskilllv("LK_CONCENTRATION")>1?getskilllv("LK_CONCENTRATION"):1,30; bonus3 bAutoSpell,"LK_AURABLADE",getskilllv("LK_AURABLADE")>1?getskilllv("LK_AURABLADE"):1,30; } },{},{} 1188,Veteran_Sword,Veteran Sword,5,10000,,2000,180,,1,1,0x00004082,63,2,34,4,80,1,3,{ if(getskilllv("SM_BASH")==10) { bonus2 bSkillAtk,"SM_BASH",50; } if(getskilllv("KN_BOWLINGBASH")==10) { bonus2 bSkillAtk,"KN_BOWLINGBASH",50; } bonus bStr,1; bonus bDex,1; },{},{} 1189,Krasnaya,Krasnaya,5,20,,3800,200,,2,3,0x00004082,18,2,34,2,50,1,3,{ if(readparam(bStr)>=95) { bonus bBaseAtk,20; } },{},{} 1190,Claymore_C,Claymore,5,0,,0,220,,1,0,0x00004080,63,2,34,3,1,0,3,{ bonus2 bAddSize,Size_All,40; },{},{} @@ -547,11 +551,13 @@ 1193,P_Slayer2,Eden Slayer II,5,0,,0,185,,1,0,0x00004082,63,2,34,2,40,0,3,{},{},{} 1194,F_Executioner_C,Executioner,5,2,,0,190,,1,0,0x00004082,63,2,34,4,0,0,3,{ bonus bAtkEle,Ele_Dark; },{},{} 1195,E_Executioner_C,Executioner,5,2,,0,190,,1,0,0x00004082,63,2,34,4,0,0,3,{ bonus bAtkEle,Ele_Dark; },{},{} -1196,Chrome_Twohand_Sword,Chrome Two-Handed Sword,5,20,,400,280,,1,0,0x00004082,63,2,34,3,110,1,3,{ bonus bUnbreakableWeapon,0; bonus bAgi,3; bonus bMaxHPrate,-10; },{},{} +1196,Chrome_Twohand_Sword,Chrome Two-Handed Sword,5,20,,400,280,,1,0,0x00004082,63,2,34,3,110,1,3,{ bonus bUnbreakableWeapon,1; bonus bAgi,3; bonus bMaxHPrate,-10; },{},{} 1197,P_Slayer3,Eden Slayer III,5,0,,0,200,,1,0,0x00004082,63,2,34,3,60,0,3,{},{},{} -1198,Hairtail,Cutlass,5,0,,0,220,,3,0,0x00004082,63,2,34,1,50,0,3,{ bonus bUnbreakableWeapon,0; bonus bCritical,20; bonus bCritAtkRate,50; if(BaseLevel>99) { bonus bBaseAtk,50; } },{},{} +1198,Hairtail,Cutlass,5,0,,0,220,,3,0,0x00004082,63,2,34,1,50,0,3,{ bonus bUnbreakableWeapon,1; bonus bCritical,20; bonus bCritAtkRate,50; if(BaseLevel>99) { bonus bBaseAtk,50; } },{},{} 1199,Ebony_Toe_Nail,Ebony Toe Nail,5,56000,,1000,250:150,,1,0,0x00004082,63,2,34,4,120,1,3,{},{},{} +//=================================================================== // Daggers +//=================================================================== 1201,Knife,Knife,5,50,,400,17,,1,3,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{} 1202,Knife_,Knife,5,50,,400,17,,1,4,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{} 1203,Knife__,Knife,5,50,,400,17,,1,0,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{} @@ -573,11 +579,11 @@ 1219,Gladius,Gladius,5,43000,,700,105,,1,2,0x028F5EEE,63,2,2,3,24,1,1,{},{},{} 1220,Gladius_,Gladius,5,43000,,700,105,,1,3,0x028F5EEE,63,2,2,3,24,1,1,{},{},{} 1221,Gladius__,Gladius,5,43000,,700,105,,1,0,0x028F5EEE,63,2,2,3,24,1,1,{},{},{} -1222,Damascus,Damascus,5,49000,,800,118,,1,1,0x028F5EEE,63,2,2,3,24,1,1,{ bonus bUnbreakableWeapon,0; },{},{} +1222,Damascus,Damascus,5,49000,,800,118,,1,1,0x028F5EEE,63,2,2,3,24,1,1,{ bonus bUnbreakableWeapon,1; },{},{} 1223,Forturn_Sword,Fortune Sword,5,20,,500,90,,1,0,0x028F5EEE,63,2,2,4,24,1,1,{ bonus bLuk,5; bonus bFlee2,20; },{},{} 1224,Sword_Breaker,Swordbreaker,5,20,,1000,70,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bBreakWeaponRate,500; },{},{} 1225,Mail_Breaker,Mailbreaker,5,20,,1000,70,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bBreakArmorRate,500; },{},{} -1226,Damascus_,Damascus,5,49000,,800,118,,1,2,0x028F5EEE,63,2,2,3,24,1,1,{ bonus bUnbreakableWeapon,0; },{},{} +1226,Damascus_,Damascus,5,49000,,800,118,,1,2,0x028F5EEE,63,2,2,3,24,1,1,{ bonus bUnbreakableWeapon,1; },{},{} 1227,Weeder_Knife,Weeder Knife,5,20,,400,80,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bIgnoreDefRace,RC_Plant; bonus2 bAddRace,RC_Plant,15; bonus2 bSubRace,RC_Plant,15; },{},{} 1228,Combat_Knife,Combat Knife,5,20,,400,80,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus2 bSubRace,RC_Demon,-10; },{},{} 1229,Mama's_Knife,Kitchen Knife,5,20,,500,75,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bCritical,30; bonus3 bAddMonsterDropItem,517,RC_Brute,5000; },{},{} @@ -587,7 +593,7 @@ 1233,Exercise,Exorciser,5,20,,700,90,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bIgnoreDefRace,RC_Demon; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player,-10; },{},{} 1234,Moonlight_Sword,Moonlight Dagger,5,20,,700,50,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bMaxSPrate,10; bonus bSPDrainValue,3; },{},{} 1235,Azoth,Azoth,5,20,,700,110,,1,0,0x00040000,63,2,2,4,36,1,1,{ bonus bClassChange,300; },{},{} -1236,Sucsamad,Sucsamad,5,20,,800,140,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon,0; },{},{} +1236,Sucsamad,Sucsamad,5,20,,800,140,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon,1; },{},{} 1237,Grimtooth_,Grimtooth,5,20,,800,180,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bFlee,10; bonus bFlee2,5; bonus bDefRate,-50; bonus bDef2Rate,-50; },{},{} 1238,Zeny_Knife,Zeny Knife,5,20,,1200,64,,1,0,0x028F5EEE,63,2,2,3,70,1,1,{ bonus2 bGetZenyNum,100,40; },{},{} 1239,Poison_Knife,Poison Knife,5,20,,800,64,,1,0,0x028F5EEE,63,2,2,3,65,1,1,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000; },{},{} @@ -601,7 +607,9 @@ 1247,Kindling_Dagger,Kindle Dagger,5,10000,,600,39,,1,0,0x3E9F7EEF,63,2,2,1,1,1,1,{ bonus bAtkEle,Ele_Fire; },{},{} 1248,Obsidian_Dagger,Obsidian Dagger,5,10000,,600,39,,1,0,0x3E9F7EEF,63,2,2,1,1,1,1,{ bonus bAtkEle,Ele_Earth; },{},{} 1249,Fisherman's_Dagger,Fisherman's Dagger,5,10000,,600,39,,1,0,0x3E9F7EEF,63,2,2,1,1,1,1,{ bonus bAtkEle,Ele_Water; },{},{} +//=================================================================== // Katars +//=================================================================== 1250,Jur,Jur,5,19500,,800,125,,1,2,0x00001000,63,2,34,2,18,1,16,{},{},{} 1251,Jur_,Jur,5,19500,,800,125,,1,3,0x00001000,63,2,34,2,18,1,16,{},{},{} 1252,Katar,Katar,5,41000,,1200,148,,1,1,0x00001000,63,2,34,3,33,1,16,{ bonus bDex,1; },{},{} @@ -615,30 +623,30 @@ 1260,Ghoul_Leg,Sharpened Legbone of Ghoul,5,52500,,1700,150,,1,0,0x00001000,63,2,34,3,65,1,16,{ bonus bAtkEle,Ele_Undead; },{},{} 1261,Infiltrator,Infiltrator,5,57000,,1500,140,,1,0,0x00001000,63,2,34,4,75,1,16,{ bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; },{},{} 1262,Nail_Of_Loki,Loki's Nail,5,20,,1200,115,,1,0,0x00001000,63,2,34,3,55,1,16,{ bonus2 bAddEff,Eff_Bleeding,300; },{},{} -1263,Unholy_Touch,Unholy Touch,5,20,,1250,151,,1,0,0x00001000,63,2,34,4,70,1,16,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,200; bonus bCritical,-1; bonus bUnbreakableWeapon,0; },{},{} +1263,Unholy_Touch,Unholy Touch,5,20,,1250,151,,1,0,0x00001000,63,2,34,4,70,1,16,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,200; bonus bCritical,-1; bonus bUnbreakableWeapon,1; },{},{} 1264,Various_Jur,Specialty Jur,5,20,,800,90,,1,4,0x00001000,63,2,34,1,1,1,16,{ bonus2 bAddEff2,Eff_Bleeding,10; },{},{} 1265,Bloody_Roar,Bloody Roar,5,20,,1000,120,,1,0,0x00001000,63,2,34,4,75,1,16,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus bFlee,-160; bonus bFlee2,-160; bonus bHPrecovRate,-100; bonus bSPrecovRate,-100; },{},{} 1266,Infiltrator_,Infiltrator,5,57000,,1500,140,,1,1,0x00001000,63,2,34,4,75,1,16,{ bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; },{},{} 1267,Infiltrator_C,Infiltrator,5,1,,0,189,,1,0,0x00001000,63,2,34,4,1,0,16,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; bonus bAspdRate,5; },{},{} -1268,Wild_Beast_Claw,Wild Beast Claw,5,20,,1450,160,,1,1,0x00001000,18,2,34,4,55,1,16,{ if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_CRITICALWOUND",2,100; } else bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; },{},{} +1268,Wild_Beast_Claw,Wild Beast Claw,5,20,,1450,160,,1,1,0x00001000,18,2,34,4,55,1,16,{ bonus3 bAutoSpell,"NPC_CRITICALWOUND",(getrefine()>=9?2:1),100; },{},{} 1269,Inverse_Scale,Inverse Scale,5,20,,1500,140,,1,0,0x00001000,18,2,34,4,55,1,16,{ bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; },{},{} 1270,Drill_Katar,Drill Katar,5,20,,1400,110,,1,1,0x00001000,18,2,34,4,55,1,16,{ bonus bHit,30; bonus3 bAutoSpell,"ST_FULLSTRIP",1,150; },{},{} -1271,Blood_Tears,Blood Tears,5,20,,1700,120,,1,2,0x00001000,18,2,34,4,55,1,16,{ if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_WIDEBLEEDING",2,30; } else bonus3 bAutoSpell,"NPC_WIDEBLEEDING",1,30; },{},{} +1271,Blood_Tears,Blood Tears,5,20,,1700,120,,1,2,0x00001000,18,2,34,4,55,1,16,{ bonus3 bAutoSpell,"NPC_WIDEBLEEDING",(getrefine()>=9?2:1),30; },{},{} 1272,Scratcher,Scratcher,5,20,,0,120,,1,0,0x00001000,63,2,34,1,0,0,16,{ bonus2 bAddClass,Class_All,50; },{},{} 1273,Bloody_Roar_C,Refined Bloody Roar,5,1,,0,148,,1,0,0x00001000,63,2,34,4,0,0,16,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus bFlee,-160; bonus bFlee2,-160; },{},{} -1274,Unholy_Touch_C,Refined Unholy Touch,5,1,,0,179,,1,0,0x00001000,63,2,34,4,0,0,16,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,5000; bonus bCritical,-1; bonus bUnbreakableWeapon,0; },{},{} +1274,Unholy_Touch_C,Refined Unholy Touch,5,1,,0,179,,1,0,0x00001000,63,2,34,4,0,0,16,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,5000; bonus bCritical,-1; bonus bUnbreakableWeapon,1; },{},{} 1275,Katar_Of_Cold_Icicle_,Katar of Frozen Icicle,5,45000,,1200,105,,1,3,0x00001000,63,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; },{},{} 1276,Katar_Of_Thornbush_,Katar of Quaking,5,45000,,1200,105,,1,3,0x00001000,63,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500; },{},{} 1277,Katar_Of_Raging_Blaze_,Katar of Raging Blaze,5,45000,,1200,105,,1,3,0x00001000,63,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500; },{},{} 1278,Katar_Of_Piercing_Wind_,Katar of Piercing Wind,5,45000,,1200,105,,1,3,0x00001000,63,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500; },{},{} -1279,BF_Katar1,Brave Carnage Katar,5,20,,0,130,,1,0,0x00001000,63,2,34,3,80,1,16,{ bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; },{},{} -1280,BF_Katar2,Valorous Carnage Katar,5,20,,0,130,,1,0,0x00001000,63,2,34,3,80,1,16,{ bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus bCritAtkRate,20; bonus bAspdRate,5; bonus bUnbreakableWeapon,0; },{},{} -1281,Krieger_Katar1,Glorious Bloody Roar,5,20,,0,140,,1,0,0x00001000,63,2,34,4,80,1,16,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} -1282,Krieger_Katar2,Glorious Jamadhar,5,20,,0,140,,1,0,0x00001000,63,2,34,4,80,1,16,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player,5; } if(.@r>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} +1279,BF_Katar1,Brave Carnage Katar,5,20,,0,130,,1,0,0x00001000,63,2,34,3,80,1,16,{ bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; },{},{} +1280,BF_Katar2,Valorous Carnage Katar,5,20,,0,130,,1,0,0x00001000,63,2,34,3,80,1,16,{ bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus bCritAtkRate,20; bonus bAspdRate,5; bonus bUnbreakableWeapon,1; },{},{} +1281,Krieger_Katar1,Glorious Bloody Roar,5,20,,0,140,,1,0,0x00001000,63,2,34,4,80,1,16,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} +1282,Krieger_Katar2,Glorious Jamadhar,5,20,,0,140,,1,0,0x00001000,63,2,34,4,80,1,16,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player,5; } if(.@r>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} 1283,Katar_Of_Speed,Katar Of Speed,5,20,,0,175,,1,0,0x00001000,63,2,34,4,0,0,16,{ bonus2 bSkillAtk,"AS_SONICBLOW",25; bonus bAspdRate,3; },{},{} -1284,Krishna,Krishna,5,20,,1200,120,,1,2,0x00001000,18,2,34,3,50,1,16,{ bonus2 bSkillAtk,"AS_GRIMTOOTH",10; if(getskilllv("AS_SONICBLOW")) { bonus3 bAutoSpell,"AS_SONICBLOW",getskilllv("AS_SONICBLOW"),5; }else{ bonus3 bAutoSpell,"AS_SONICBLOW",1,5; } },{},{} +1284,Krishna,Krishna,5,20,,1200,120,,1,2,0x00001000,18,2,34,3,50,1,16,{ bonus2 bSkillAtk,"AS_GRIMTOOTH",10; .@i = getskilllv("AS_SONICBLOW"); bonus3 bAutoSpell,"AS_SONICBLOW",(.@i?.@i:1),5; },{},{} 1285,Cakram,Chakram,5,20,,1000,130,,1,2,0x00001000,18,2,34,3,50,1,16,{ if(getskilllv("AS_KATAR")==10) { bonus bHit,10; } bonus2 bSkillAtk,"ASC_METEORASSAULT",20; },{},{} -1286,Jamadhar_C,Jamadhar,5,0,,0,200,,1,0,0x00001000,63,2,34,3,1,0,16,{ bonus bUnbreakableWeapon,0; bonus2 bAddSize,Size_All,40; },{},{} +1286,Jamadhar_C,Jamadhar,5,0,,0,200,,1,0,0x00001000,63,2,34,3,1,0,16,{ bonus bUnbreakableWeapon,1; bonus2 bAddSize,Size_All,40; },{},{} 1287,Durga,Durga,5,20,,1200,190,,1,1,0x00001000,63,2,34,3,100,1,16,{},{},{} 1288,Bloody_Fear_C,Bloody Fear,5,1,,0,145,,1,0,0x00001000,63,2,34,4,1,0,16,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bAddEff,Eff_Bleeding,100; },{},{} 1289,P_Katar1,Eden Katar I,5,0,,0,155,,1,0,0x00001000,63,2,34,3,60,0,16,{},{},{} @@ -647,11 +655,13 @@ 1292,Upg_Katar,Upg Katar,5,20,,1000,80,,1,1,0x00001000,63,2,34,3,1,1,16,{ .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bCritAtkRate,(.@r*2); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); },{},{} 1293,Velum_Jamadhar,Vellum Jamadhar,5,20,,1200,170,,1,0,0x00001000,63,2,34,4,95,1,16,{ bonus4 bSetDefRace,RC_Player,10000,5000,1; bonus4 bSetMDefRace,RC_Player,10000,5000,1; bonus bAspdRate,getrefine(); },{},{} 1294,Velum_Scare,Vellum Scale,5,20,,1200,50,,1,0,0x00001000,63,2,34,4,95,1,16,{ bonus3 bSPVanishRaceRate,RC_Player,10000,10; },{},{} -1295,Blood_Tears_,Blood Tears,5,20,,1700,120,,1,1,0x00001000,18,2,34,4,55,1,16,{},{},{} -1296,Metal_Katar,Metal Katar,5,20,,0,75,,1,1,0x00001000,63,2,34,3,1,1,16,{ .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bCritAtkRate,.@r; set .@i,((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} -// +1295,Blood_Tears_,Blood Tears,5,20,,1700,120,,1,3,0x00001000,18,2,34,4,55,1,16,{},{},{} +1296,Metal_Katar,Metal Katar,5,20,,0,75,,1,1,0x00001000,63,2,34,3,1,1,16,{ .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bCritAtkRate,.@r; .@i = ((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} 1298,Shiver_Katar,Katar Of Horror,5,60000,,2700,110,,1,2,0x00001000,63,2,34,4,105,1,16,{},{},{} +1299,TE_Woe_Katar,TE Woe Katar,5,0,,0,120,,1,0,0x00001000,63,2,34,3,40,1,16,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Bleeding,3000; },{},{} +//=================================================================== // 1-Handed Axes +//=================================================================== 1301,Axe,Axe,5,500,,800,38,,1,3,0x000654E3,63,2,2,1,3,1,6,{},{},{} 1302,Axe_,Axe,5,500,,800,38,,1,4,0x000654E3,63,2,2,1,3,1,6,{},{},{} 1303,Axe__,Axe,5,500,,800,38,,1,0,0x000654E3,63,2,2,1,3,1,6,{},{},{} @@ -661,17 +671,21 @@ 1307,Windhawk,Windhawk,5,18000,,1500,115,,1,0,0x000654E2,63,2,2,2,14,1,6,{ bonus bAtkEle,Ele_Wind; bonus bAspdRate,5; },{},{} 1308,Golden_Axe,Golden Axe,5,20,,3000,170,,1,0,0x00000001,63,2,2,4,45,1,6,{},{},{} 1309,Orcish_Axe_,Orcish Axe,5,20,,1500,75,,1,4,0x000654E3,63,2,2,3,3,1,6,{},{},{} -1310,Krieger_Onehand_Axe1,Glorious Cleaver,5,20,,0,130,,1,0,0x000444A2,63,2,2,4,80,1,6,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; bonus bAspdRate,5; } if(.@r>8) { bonus bAspdRate,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; } },{},{} -1311,Vecer_Axe,Vecer Axe,5,20,,1500,140,,1,2,0x000444A2,18,2,2,3,50,1,6,{ if(readparam(bLuk)>=90) { bonus bBaseAtk,20; } if(readparam(bDex)>=90) { bonus bCritical,5; } if(readparam(bDex)>=90||readparam(bLuk)>=90) { bonus2 bSkillAtk,"MC_MAMMONITE",15; } },{},{} +1310,Krieger_Onehand_Axe1,Glorious Cleaver,5,20,,0,130,,1,0,0x000444A2,63,2,2,4,80,1,6,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; bonus bAspdRate,5; } if(.@r>8) { bonus bAspdRate,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; } },{},{} +1311,Vecer_Axe,Vecer Axe,5,20,,1500,140,,1,2,0x000444A2,18,2,2,3,50,1,6,{ if(readparam(bLuk)>=90) { bonus bBaseAtk,20; } if(readparam(bDex)>=90) { bonus bCritical,5; } if(readparam(bDex)>=90&&readparam(bLuk)>=90) { bonus2 bSkillAtk,"MC_MAMMONITE",15; } },{},{} 1312,Orcish_Axe_C,Orcish Axe,5,0,,0,110,,1,0,0x000654E3,63,2,2,3,1,0,6,{ bonus2 bAddSize,Size_All,70; },{},{} 1313,Tourist_Axe,Tourist Axe,5,0,,500,77,,1,0,0x000654E3,63,2,2,1,1,0,6,{ bonus bStr,2; },{},{} 1314,F_Tomahawk_C,Tomahawk,5,2,,0,200,,1,0,0x000444A2,63,2,34,4,0,0,7,{ bonus bAtkEle,Ele_Wind; },{},{} 1315,F_Right_Epsilon_C,Light Epsilon,5,1,,0,229,,1,0,0x000444A2,63,2,34,4,1,0,7,{ bonus bAtkEle,Ele_Holy; bonus bStr,10; },{},{} 1316,Adventure_Axe,Adventure Axe,5,0,,0,100,,1,0,0x00040420,63,2,2,1,1,0,6,{},{},{} 1317,Academy_Axe,Academy Axe,5,0,,1600,130,,1,1,0x00040420,63,2,2,1,1,1,6,{},{},{} -1318,Dofle_Axe,Deflation Axe,5,50000,,1800,180,,1,2,0x000654E2,63,2,2,4,105,1,6,{ bonus bUnbreakableWeapon,0; },{},{} -1322,Blue_Axe,Blue Axe,5,10,,1800,180,,1,3,0xFFFFFFFF,63,2,2,1,1,1,6,{ bonus bStr,5; bonus bVit,5; },{},{} +1318,Dofle_Axe,Deflation Axe,5,50000,,1800,180,,1,2,0x000654E2,63,2,2,4,105,1,6,{ bonus bUnbreakableWeapon,1; },{},{} +1319,TE_Woe_Axe,TE Woe Axe,5,0,,0,100,,1,0,0x000654E3,63,2,2,3,40,1,6,{ bonus bUnbreakableWeapon,1; bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Freeze,3000; },{},{} +1322,Blue_Axe,Blue Axe,5,10,,1800,180,,1,1,0xFFFFFFFF,63,2,2,1,1,1,6,{ bonus bStr,5; bonus bVit,5; },{},{} +1323,Ru_Gold_Axe,Ru Gold Axe,5,0,,1800,180,,1,2,0x00040000,56,2,2,3,120,1,6,{ bonus bStr,8; bonus bInt,8; },{},{} +//=================================================================== // 2-Handed Axes +//=================================================================== 1351,Battle_Axe,Battle Axe,5,5400,,1500,80,,1,3,0x000444A2,63,2,34,1,3,1,7,{},{},{} 1352,Battle_Axe_,Battle Axe,5,5400,,1500,80,,1,4,0x000444A2,63,2,34,1,3,1,7,{},{},{} 1353,Battle_Axe__,Battle Axe,5,5400,,1500,80,,1,0,0x000444A2,63,2,34,1,3,1,7,{},{},{} @@ -686,11 +700,11 @@ 1362,Two_Handed_Axe__,Two-Handed Axe,5,55000,,2500,185,,1,0,0x000444A2,63,2,34,3,30,1,7,{},{},{} 1363,Brood_Axe,Bloody Axe,5,20,,4000,170,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus bStr,10; bonus bSpeedRate,25; },{},{} 1364,Great_Axe,Great Axe,5,20,,1800,187,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,1500; },{},{} -1365,Sabbath,Sabbath,5,20,,2300,120,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Dark; bonus2 bWeaponComaRace,RC_Demon,50; bonus2 bCriticalAddRace,RC_Undead,50; },{},{} +1365,Sabbath,Sabbath,5,20,,2300,120,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Dark; bonus2 bComaRace,RC_Demon,50; bonus2 bCriticalAddRace,RC_Undead,50; },{},{} 1366,Right_Epsilon,Light Epsilon,5,20,,2300,180,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3; },{},{} -1367,Slaughter,Slaughter,5,20,,2500,120,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Earth; bonus bIgnoreDefRace,RC_Brute; bonus2 bWeaponComaRace,RC_Brute,40; },{},{} +1367,Slaughter,Slaughter,5,20,,2500,120,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Earth; bonus bIgnoreDefRace,RC_Brute; bonus2 bComaRace,RC_Brute,40; },{},{} 1368,Tomahawk,Tomahawk,5,20,,2500,165,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; },{},{} -1369,Guillotine,Guillotine,5,20,,3000,215,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus2 bWeaponComaRace,RC_DemiHuman,30; bonus2 bWeaponComaRace,RC_Player,30; bonus2 bSPGainRaceAttack,RC_DemiHuman,2; bonus2 bSPGainRaceAttack,RC_Player,2; bonus2 bSPGainRace,RC_DemiHuman,20; bonus2 bSPGainRace,RC_Player,20; },{},{} +1369,Guillotine,Guillotine,5,20,,3000,215,,1,0,0x000444A2,63,2,34,4,44,1,7,{ bonus2 bComaRace,RC_DemiHuman,30; bonus2 bComaRace,RC_Player,30; bonus2 bSPDrainValueRace,RC_DemiHuman,2; bonus2 bSPDrainValueRace,RC_Player,2; bonus2 bSPGainRace,RC_DemiHuman,20; bonus2 bSPGainRace,RC_Player,20; },{},{} 1370,Doom_Slayer,Doom Slayer,5,20,,6000,10,,1,0,0x000444A2,63,2,34,4,80,1,7,{ bonus bAspdRate,-40; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,340; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; } },{},{} 1371,Doom_Slayer_,Doom Slayer,5,20,,6000,10,,1,1,0x000444A2,63,2,34,4,80,1,7,{ bonus bAspdRate,-40; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,340; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; } },{},{} 1372,Right_Epsilon_C,Light Epsilon,5,1,,0,229,,1,0,0x000444A2,63,2,34,4,1,0,7,{ bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3; bonus bStr,10; bonus bSpeedRate,25; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10; */},{},{} @@ -700,10 +714,10 @@ 1376,Heart_Breaker,Heart Breaker,5,20,,2000,175,,1,1,0x000444A2,18,2,34,4,70,1,7,{ bonus bCritical,20+getrefine(); bonus bAspdRate,5; if((Class==Job_Whitesmith)||(Class==Job_Creator)||(Class==Job_Mechanic)||(Class==Job_Mechanic_T)||(Class==Job_Genetic)||(Class==Job_Genetic_T)) bonus3 bAutoSpell,"BS_HAMMERFALL",3,30; },{},{} 1377,Hurricane_Fury,Hurricane's Fury,5,20,,3500,332,,1,1,0x000444A2,18,2,34,4,80,1,7,{ .@r = getrefine(); bonus2 bSubSize,Size_Medium,10+.@r; bonus bAspdRate,.@r; bonus3 bAutoSpell,"NPC_PULSESTRIKE",5,20; },{},{} 1378,Great_Axe_C,Refined Great Axe,5,1,,0,215,,1,0,0x000444A2,63,2,34,4,0,0,7,{ bonus bStr,5; bonus bHit,20; bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,2000; },{},{} -1379,BF_Two_Handed_Axe1,Valorous Insane Battle Axe,5,20,,0,200,,1,0,0x000444A2,63,2,34,3,80,1,7,{ bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; },{},{} -1380,BF_Two_Handed_Axe2,Brave Insane Battle Axe,5,20,,0,200,,1,0,0x000444A2,63,2,34,3,80,1,7,{ bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; autobonus "{ bonus bBreakArmorRate,10000; }",20,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon,0; },{},{} +1379,BF_Two_Handed_Axe1,Valorous Insane Battle Axe,5,20,,0,200,,1,0,0x000444A2,63,2,34,3,80,1,7,{ bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; },{},{} +1380,BF_Two_Handed_Axe2,Brave Insane Battle Axe,5,20,,0,200,,1,0,0x000444A2,63,2,34,3,80,1,7,{ bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; autobonus "{ bonus bBreakArmorRate,10000; }",20,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon,1; },{},{} 1381,N_Battle_Axe,Novice Battle Axe,5,0,,0,100,,1,3,0x000444A2,63,2,34,1,3,0,7,{},{},{} -1382,Krieger_Twohand_Axe1,Glorious Two-Handed Axe,5,20,,0,220,,1,0,0x000444A2,63,2,34,4,80,1,7,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-3,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; } if(.@r>8) { bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; bonus4 bAutoSpellOnSkill,"WS_CARTTERMINATION","NPC_CRITICALWOUND",2,200; } },{},{} +1382,Krieger_Twohand_Axe1,Glorious Two-Handed Axe,5,20,,0,220,,1,0,0x000444A2,63,2,34,4,80,1,7,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-3,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; } if(.@r>8) { bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; bonus4 bAutoSpellOnSkill,"WS_CARTTERMINATION","NPC_CRITICALWOUND",2,200; } },{},{} 1383,Holy_Celestial_Axe,Celestial Axe,5,20,,1500,200,,1,0,0x000444A2,63,2,34,4,60,1,7,{ bonus bAtkEle,Ele_Holy; bonus bVit,10; bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,30; },{},{} 1384,Veteran_Axe,Veteran Axe,5,10000,,3000,250,,1,2,0x000444A2,63,2,34,3,80,1,7,{ if(getskilllv("BS_DAGGER")==3) { bonus bBaseAtk,10; } if(getskilllv("BS_SWORD")==3) { bonus bBaseAtk,10; } if(getskilllv("BS_TWOHANDSWORD")==3) { bonus bBaseAtk,10; } if(getskilllv("BS_KNUCKLE")==3) { bonus bBaseAtk,10; } if(getskilllv("BS_SPEAR")==3) { bonus bBaseAtk,10; } if(getskilllv("BS_AXE")==3) { bonus bBaseAtk,10; } if(getskilllv("BS_MACE")==3) { bonus bBaseAtk,10; } bonus bVit,2; },{},{} 1385,Bradium_Stonehammer,Bradium Stone Hammer,5,20,,2700,210,,1,0,0x000444A2,18,2,34,4,75,1,7,{ bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine()); },{},{} @@ -713,14 +727,17 @@ 1389,E_Tomahawk_C,Tomahawk,5,2,,0,200,,1,0,0x000444A2,63,2,34,4,0,0,7,{ bonus bAtkEle,Ele_Wind; },{},{} 1390,E_Right_Epsilon_C,Light Epsilon,5,1,,0,229,,1,0,0x000444A2,63,2,34,4,1,0,7,{ bonus bAtkEle,Ele_Holy; bonus bStr,10; },{},{} 1391,P_Two_Handed_Axe1,Eden Two-Handed Axe I,5,0,,0,195,,1,0,0x000444A2,63,2,34,3,60,0,7,{},{},{} -1392,Ygnus_Stale,Ignus Steel,5,56000,,1900,250,,1,1,0x000444A2,63,2,34,4,95,1,7,{ bonus bAtkEle,Ele_Fire; bonus bUnbreakableWeapon,0; bonus2 bAddEff,Eff_Burning,300; bonus2 bAddEff2,Eff_Burning,300; },{},{} -1393,End_Sektura,End Sectora,5,56000,,1900,250,,1,1,0x000444A2,63,2,34,4,95,1,7,{ bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon,0; bonus2 bAddEff,Eff_Freeze,300; bonus2 bAddEff2,Eff_Freeze,300; },{},{} +1392,Ygnus_Stale,Ignus Steel,5,56000,,1900,250,,1,1,0x000444A2,63,2,34,4,95,1,7,{ bonus bAtkEle,Ele_Fire; bonus bUnbreakableWeapon,1; bonus2 bAddEff,Eff_Burning,300; bonus2 bAddEff2,Eff_Burning,300; },{},{} +1393,End_Sektura,End Sectora,5,56000,,1900,250,,1,1,0x000444A2,63,2,34,4,95,1,7,{ bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon,1; bonus2 bAddEff,Eff_Freeze,300; bonus2 bAddEff2,Eff_Freeze,300; },{},{} 1394,Upg_Two_Handed_Axe,Upg Two Handed Axe,5,20,,2000,110,,1,1,0x000444A2,63,2,34,3,1,1,7,{ bonus bBaseAtk,(getrefine()*14); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); },{},{} -1395,Velum_Buster,Vellum Buster,5,20,,2500,50,,1,0,0x000444A2,63,2,34,4,95,1,7,{ bonus bUnbreakableWeapon,0; bonus3 bSPVanishRaceRate,RC_Player,10000,10; },{},{} -1396,Velum_Guillotine,Vellum Guillotine,5,20,,5500,300,,1,0,0x000444A2,63,2,34,4,95,1,7,{ bonus bUnbreakableWeapon,0; bonus2 bAddRace,RC_Player,40; bonus2 bIgnoreDefRaceRate,RC_Player,30; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",80; bonus2 bSkillAtk,"NC_POWERSWING",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player,60; } },{},{} -1397,Bradium_Stonehammer_,Bradium Stonehammer,5,20,,2700,210,,1,2,0x000444A2,63,2,34,4,75,1,7,{ bonus bUnbreakableWeapon,0; },{},{} -1398,Metal_Two_Handed_Axe,Metal Two Handed Axe,5,20,,0,105,,1,1,0x000444A2,63,2,34,3,1,1,7,{ bonus bUnbreakableWeapon,0; bonus bBaseAtk,(getrefine()*7); set .@i,((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} +1395,Velum_Buster,Vellum Buster,5,20,,2500,50,,1,0,0x000444A2,63,2,34,4,95,1,7,{ bonus bUnbreakableWeapon,1; bonus3 bSPVanishRaceRate,RC_Player,10000,10; },{},{} +1396,Velum_Guillotine,Vellum Guillotine,5,20,,5500,300,,1,0,0x000444A2,63,2,34,4,95,1,7,{ bonus bUnbreakableWeapon,1; bonus2 bAddRace,RC_Player,40; bonus2 bIgnoreDefRaceRate,RC_Player,30; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",80; bonus2 bSkillAtk,"NC_POWERSWING",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player,60; } },{},{} +1397,Bradium_Stonehammer_,Bradium Stonehammer,5,20,,2700,210,,1,2,0x000444A2,63,2,34,4,75,1,7,{ bonus bUnbreakableWeapon,1; },{},{} +1398,Metal_Two_Handed_Axe,Metal Two Handed Axe,5,20,,0,105,,1,1,0x000444A2,63,2,34,3,1,1,7,{ bonus bUnbreakableWeapon,1; bonus bBaseAtk,(getrefine()*7); .@i = ((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} +1399,TE_Woe_Two_Handed_Axe,TE Woe Two Handed Axe,5,0,,0,150,,1,0,0x000444A2,63,2,34,3,40,1,7,{ bonus bUnbreakableWeapon,1; bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Stun,3000; },{},{} +//=================================================================== // 1-Handed Spears +//=================================================================== 1401,Javelin,Javelin,5,150,,700,28,,3,3,0x00004082,63,2,2,1,4,1,4,{},{},{} 1402,Javelin_,Javelin,5,150,,700,28,,3,4,0x00004082,63,2,2,1,4,1,4,{},{},{} 1403,Javelin__,Javelin,5,150,,700,28,,3,0,0x00004082,63,2,2,1,4,1,4,{},{},{} @@ -740,15 +757,15 @@ 1417,Pole_Axe,Pole Axe,5,20,,3800,160,,3,1,0x00004082,63,2,2,3,71,1,4,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{} 1418,Gungnir_,Gungnir,5,20,,500,120,,3,2,0x00004082,63,2,2,4,4,1,4,{ bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30; },{},{} 1419,Pole_Axe_C,Pole Axe,5,1,,4800,195,,3,0,0x00004082,63,2,2,3,1,0,4,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{} -1420,Long_Horn,Long Horn,5,20,,1000,150,,3,1,0x00004082,18,2,2,4,65,1,4,{ bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon,0; },{},{} +1420,Long_Horn,Long Horn,5,20,,1000,150,,3,1,0x00004082,18,2,2,4,65,1,4,{ bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon,1; },{},{} 1421,Battle_Hook,Battle Hook,5,20,,900,140,,3,1,0x00004082,18,2,2,4,65,1,4,{ bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player,20; skill "KN_PIERCE",3; },{},{} 1422,Hunting_Spear,Hunting Spear,5,20,,4200,180,,3,1,0x00004082,18,2,2,4,60,1,4,{ bonus bIgnoreDefRace,RC_Brute; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100; },{},{} 1423,Pole_XO,Pole XO,5,20,,0,120,,3,0,0x00004082,63,2,2,1,0,0,4,{ bonus2 bAddClass,Class_All,50; },{},{} 1424,Skewer_C,Refined Brocca,5,1,,0,149,,3,0,0x00004082,63,2,2,4,0,0,4,{ bonus bIgnoreDefClass,Class_Normal; bonus2 bAddSize,Size_Medium,20; },{},{} -1425,BF_Spear1,Assaulter Spear,5,20,,0,60,,3,0,0x00004082,63,2,2,3,80,1,4,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; if(BaseJob==Job_Crusader) bonus bAspdRate,20; },{},{} -1426,Krieger_Onehand_Spear1,Glorious Spear,5,20,,0,130,,3,0,0x00004082,63,2,2,4,80,1,4,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; bonus bAspdRate,10; } if(.@r>8) { if(BaseJob==Job_Knight) bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; else if(BaseJob==Job_Crusader) bonus3 bAutoSpell,"PA_PRESSURE",5,100; } },{},{} +1425,BF_Spear1,Assaulter Spear,5,20,,0,60,,3,0,0x00004082,63,2,2,3,80,1,4,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; if(BaseJob==Job_Crusader) bonus bAspdRate,20; },{},{} +1426,Krieger_Onehand_Spear1,Glorious Spear,5,20,,0,130,,3,0,0x00004082,63,2,2,4,80,1,4,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; bonus bAspdRate,10; } if(.@r>8) { if(BaseJob==Job_Knight) bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; else if(BaseJob==Job_Crusader) bonus3 bAutoSpell,"PA_PRESSURE",5,100; } },{},{} 1427,Spear_Of_Excellent,Spear Of Excellent,5,20,,0,160,,3,0,0x00004082,63,2,2,3,0,0,4,{ bonus2 bSkillAtk,"SM_MAGNUM",25; bonus bStr,2; },{},{} -1428,Long_Horn_M,Long Horn,5,20,,1000,150,,3,1,0x00004082,18,2,2,4,65,1,4,{ bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon,0; },{},{} +1428,Long_Horn_M,Long Horn,5,20,,1000,150,,3,1,0x00004082,18,2,2,4,65,1,4,{ bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon,1; },{},{} 1429,Hunting_Spear_M,Hunting Spear,5,20,,4200,180,,3,1,0x00004082,18,2,2,4,60,1,4,{ bonus bIgnoreDefRace,RC_Brute; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100; },{},{} 1430,Pike_C,Pike,5,0,,0,74,,3,0,0x00004082,63,2,2,1,1,0,4,{ bonus2 bAddSize,Size_All,70; },{},{} 1431,F_Pole_Axe_C,Pole Axe,5,1,,4800,195,,3,0,0x00004082,63,2,2,3,1,0,4,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{} @@ -757,10 +774,15 @@ 1434,P_Spear1,Eden Spear I,5,0,,0,165,,3,0,0x00004082,63,2,2,3,60,0,4,{},{},{} 1435,Cannon_Spear,Cannon Spear,5,56000,,1600,180,,3,1,0x00004000,63,2,2,4,100,1,4,{ bonus bMaxSP,-100; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; bonus bBaseAtk,(getrefine()/3); },{},{} 1436,Velum_Spear,Vellum Spear,5,20,,850,150,,3,0,0x00004082,63,2,2,4,95,1,4,{ bonus2 bAddRace,RC_Player,60; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",80; bonus2 bSkillAtk,"LG_PINPOINTATTACK",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player,30; } },{},{} +1437,TE_Woe_Pike,TE Woe Pike,5,0,,0,100,,3,0,0x00004082,63,2,2,3,40,1,4,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Curse,3000; },{},{} 1438,Tanos_Spear,Tanos Spear,5,10,,3000,150:100,,,1,0x00004082,63,2,2,4,120,1,4,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bAtkRate,5; bonus2 bHPLossRate,100,10000; },{},{} -1439,Half_BF_Spear1,Half BF Spear1,5,20,,0,60,,3,0,0x00004082,63,2,2,3,80,1,4,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,45; bonus2 bAddRace,RC_Player,45; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon,0; if(BaseJob==Job_Crusader) bonus bAspdRate,20; },{},{} +1439,Half_BF_Spear1,Half BF Spear1,5,20,,0,60,,3,0,0x00004082,63,2,2,3,80,1,4,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,45; bonus2 bAddRace,RC_Player,45; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon,1; if(BaseJob==Job_Crusader) bonus bAspdRate,20; },{},{} 1441,Blue_Spear,Blue Spear,5,10,,1200,180,,3,1,0x00004000,56,2,2,3,100,1,4,{ bonus bDex,5; bonus bInt,5; bonus bMatk,170; },{},{} +1442,Ru_Gold_Spear,Ru Gold Spear,5,0,,1200,180,,3,2,0x00004000,56,2,2,3,120,1,4,{ bonus bStr,8; bonus bAgi,8; },{},{} +1443,Crimson_Spear,Crimson Spear,5,20,,900,90,,3,2,0x00000002,56,2,2,3,70,1,4,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{} +//=================================================================== // 2-Handed Spears +//=================================================================== 1451,Guisarme,Guisarme,5,13000,,1000,84,,3,2,0x00004082,63,2,34,2,18,1,5,{},{},{} 1452,Guisarme_,Guisarme,5,13000,,1000,84,,3,3,0x00004082,63,2,34,2,18,1,5,{},{},{} 1453,Guisarme__,Guisarme,5,13000,,1000,84,,3,0,0x00004082,63,2,34,2,18,1,5,{},{},{} @@ -782,10 +804,14 @@ 1469,Longinus's_Spear,Longinus's Spear,5,20,,2500,180,,3,0,0x00004082,63,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Dark; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus2 bAddRace,RC_Angel,10; },{},{} 1470,Brionac,Brionac,5,20,,3000,190,,3,0,0x00004082,63,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Holy; skill "AL_HEAL",5; bonus3 bAutoSpell,"MG_SOULSTRIKE",3,100; bonus2 bAddClass,Class_Boss,5; },{},{} 1471,Hell_Fire,Hellfire,5,20,,3500,200,,3,0,0x00004082,63,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3; },{},{} +//=================================================================== // 2-Handed Staffs -1472,Staff_Of_Soul,Soul Staff,5,20,,1400,25:200,,1,0,0x00810204,63,2,34,3,73,1,10,{ bonus bInt,5; bonus bAgi,2; },{},{} -1473,Wizardy_Staff,Wizardry Staff,5,20,,2400,120:200,,1,0,0x00810204,63,2,34,4,90,1,10,{ bonus bInt,6; bonus bDex,2; },{},{} +//=================================================================== +1472,Staff_Of_Soul,Soul Staff,5,20,,1400,25:200,,1,0,0x00810204,63,2,34,3,73,1,23,{ bonus bInt,5; bonus bAgi,2; },{},{} +1473,Wizardy_Staff,Wizardry Staff,5,20,,2400,120:200,,1,0,0x00810204,63,2,34,4,90,1,23,{ bonus bInt,6; bonus bDex,2; },{},{} +//=================================================================== // 2-Handed Spears +//=================================================================== 1474,Gae_Bolg,Gae Bolg,5,20,,2000,160,,3,0,0x00004082,63,2,34,4,60,1,5,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10; },{},{} 1475,Horseback_Lance,Equestrian's Spear,5,20,,3700,200,,4,0,0x00004082,63,2,34,4,75,1,5,{},{},{} 1476,Crescent_Scythe_,Crescent Scythe,5,20,,2500,180,,3,1,0x00004082,63,2,34,4,48,1,5,{ bonus bCritical,30; bonus bHit,10; },{},{} @@ -794,21 +820,25 @@ 1479,Spectral_Spear_,Spectral Spear,5,20,,2000,170,,3,1,0x00004082,63,2,34,4,75,1,5,{ bonus2 bAddEle,Ele_Dark,20; bonus2 bAddRace,RC_Demon,20; bonus2 bAddRace,RC_Undead,20; bonus2 bSubEle,Ele_Dark,10; bonus2 bSubRace,RC_Demon,10; bonus2 bSubRace,RC_Undead,10; bonus2 bAddEff2,Eff_Confusion,1000; bonus bHPGainValue,50; },{},{} 1480,Gae_Bolg_,Gae Bolg,5,20,,2000,160,,3,2,0x00004082,63,2,34,4,60,1,5,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10; },{},{} 1481,Zephyrus_,Zephyrus,5,20,,2000,170,,3,3,0x00004082,63,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; },{},{} -1482,BF_Lance1,Assaulter Lance,5,20,,0,160,,3,0,0x00004082,63,2,34,3,80,1,5,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,25; bonus2 bAddRace,RC_Player,25; bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus bUnbreakableWeapon,0; },{},{} +1482,BF_Lance1,Assaulter Lance,5,20,,0,160,,3,0,0x00004082,63,2,34,3,80,1,5,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,25; bonus2 bAddRace,RC_Player,25; bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus bUnbreakableWeapon,1; },{},{} 1483,Ivory_Lance,Ivory Lance,5,20,,1000,160,,3,1,0x00004082,18,2,34,3,50,1,5,{ bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; skill "KN_SPEARSTAB",5; },{},{} 1484,Cardo,Cardo,5,20,,5600,150,,3,1,0x00000080,18,2,34,4,70,1,5,{ bonus bAspdRate,-10; bonus bDef,getrefine()/2; },{},{} 1485,Battle_Fork,Battle Fork,5,20,,700,112,,3,4,0x00004082,18,2,34,2,50,1,5,{},{},{} -1486,Krieger_Twohand_Spear1,Glorious Lance,5,20,,0,220,,3,0,0x00004082,63,2,34,4,80,1,5,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { if(BaseJob==Job_Knight) bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; else if(BaseJob==Job_Crusader) bonus3 bAutoSpell,"PA_PRESSURE",5,200; } },{},{} +1486,Krieger_Twohand_Spear1,Glorious Lance,5,20,,0,220,,3,0,0x00004082,63,2,34,4,80,1,5,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { if(BaseJob==Job_Knight) bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; else if(BaseJob==Job_Crusader) bonus3 bAutoSpell,"PA_PRESSURE",5,200; } },{},{} 1487,Lance_C,Lance,5,0,,0,220,,3,0,0x00004082,63,2,34,3,1,0,5,{ bonus2 bAddSize,Size_All,50; },{},{} 1488,Ahlspiess_C,Ahlspiess,5,20,,0,135,,3,0,0x00004080,63,2,34,4,1,1,5,{ bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus3 bAutoSpell,"KN_PIERCE",5,30; },{},{} -1489,Spearfish_,Marlin,5,0,,0,220,,3,0,0x00004082,18,2,34,1,50,0,5,{ bonus bUnbreakableWeapon,0; bonus3 bAddEffOnSkill,"KN_PIERCE",Eff_Bleeding,1000; bonus3 bAddEffOnSkill,"LK_SPIRALPIERCE",Eff_Bleeding,1000; bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bSkillAtk,"LG_INSPIRATION",50; if(BaseLevel>99) { bonus bBaseAtk,30; } },{},{} +1489,Spearfish_,Marlin,5,0,,0,220,,3,0,0x00004082,18,2,34,1,50,0,5,{ bonus bUnbreakableWeapon,1; bonus3 bAddEffOnSkill,"KN_PIERCE",Eff_Bleeding,1000; bonus3 bAddEffOnSkill,"LK_SPIRALPIERCE",Eff_Bleeding,1000; bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bSkillAtk,"LG_INSPIRATION",50; if(BaseLevel>99) { bonus bBaseAtk,30; } },{},{} 1490,Giant_Lance,Gigantic Lance,5,20,,20000,20,,3,0,0x00000080,63,2,34,4,140,1,5,{ bonus bAspd,-10; bonus2 bSkillCooldown,"LK_SPIRALPIERCE",20000; if(readparam(bStr)>=120){ bonus bBaseAtk,300; } },{},{ heal 0,-600; } 1491,Upg_Lance,Upg Lance,5,20,,1500,105,,3,1,0x00004082,63,2,34,3,1,1,5,{ bonus bBaseAtk,(getrefine()*12); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); },{},{} 1492,Velum_Glaive,Vellum Glaive,5,20,,4500,250,,3,0,0x00004082,63,2,34,4,95,1,5,{ bonus2 bAddRace,RC_Player,80; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bSkillAtk,"KN_SPEARBOOMERANG",50; } if(.@r>=9) { autobonus2 "{ bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; }",100,2000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_REFLECTSHIELD; }"; } },{},{} -1493,Metal_Lance,Metal Lance,5,20,,0,100,,3,1,0x00004082,63,2,34,3,1,1,5,{ bonus bBaseAtk,(getrefine()*6); set .@i,((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} +1493,Metal_Lance,Metal Lance,5,20,,0,100,,3,1,0x00004082,63,2,34,3,1,1,5,{ bonus bBaseAtk,(getrefine()*6); .@i = ((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} 1494,Undine_Spear,Spear Of Odin,5,50000,,3800,190,,3,3,0x00004082,63,2,34,4,105,1,5,{ bonus bAtkEle,Ele_Water; },{},{} -1496,Tanos_Two-Handed_Spear,Tanos Two-Handed Spear,5,10,,3750,250:50,,,1,0x00004082,63,2,34,4,120,1,4,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bAtkRate,5; bonus2 bHPLossRate,100,10000; },{},{} +1495,TE_Woe_Lance,TE Woe Lance,5,0,,0,150,,3,0,0x00004082,63,2,34,3,40,1,5,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Blind,3000; },{},{} +1496,Tanos_Two-Handed_Spear,Tanos Two-Handed Spear,5,10,,3750,250:50,,,1,0x00004082,63,2,34,4,120,1,5,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bAtkRate,5; bonus2 bHPLossRate,100,10000; },{},{} +1498,Crimson_Lance,Crimson Lance,5,20,,1750,175,,1,2,0x00000002,63,2,34,3,70,1,5,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{} +//=================================================================== // Maces +//=================================================================== 1501,Club,Club,5,120,,700,23,,1,3,0x0004C5B3,63,2,2,1,2,1,8,{},{},{} 1502,Club_,Club,5,120,,700,23,,1,4,0x0004C5B3,63,2,2,1,2,1,8,{},{},{} 1503,Club__,Club,5,120,,700,23,,1,0,0x0004C5B3,63,2,2,1,2,1,8,{},{},{} @@ -832,9 +862,9 @@ 1521,Chain__,Chain,5,23000,,800,84,,1,3,0x0004C5B2,63,2,2,2,14,1,8,{},{},{} 1522,Stunner,Stunner,5,60000,,2000,140,,1,0,0x00008110,63,2,2,3,27,1,8,{ bonus2 bAddEff,Eff_Stun,1000; },{},{} 1523,Spike,Spike,5,20,,700,85,,1,0,0x00008110,63,2,2,4,40,1,8,{ bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67; },{},{} -1524,Golden_Mace,Golden Mace,5,20,,800,110,,1,1,0x00008110,63,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon,0; },{},{} +1524,Golden_Mace,Golden Mace,5,20,,800,110,,1,1,0x00008110,63,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon,1; },{},{} 1525,Long_Mace,Long Mace,5,20,,800,135,,3,0,0x00008110,63,2,2,4,40,1,8,{ bonus bLongAtkDef,10; },{},{} -1526,Slash,Slash,5,20,,1000,145,,1,0,0x00008110,63,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,15; bonus2 bWeaponComaRace,RC_Undead,10; bonus2 bExpAddRace,RC_Undead,5; },{},{} +1526,Slash,Slash,5,20,,1000,145,,1,0,0x00008110,63,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,15; bonus2 bComaRace,RC_Undead,10; bonus2 bExpAddRace,RC_Undead,5; },{},{} 1527,Quadrille,Quadrille,5,20,,900,165,,1,0,0x00008110,63,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus2 bAddEle,Ele_Earth,10; },{},{} 1528,Grand_Cross,Grand Cross,5,20,,1500,140,,1,0,0x00008110,63,2,2,4,40,1,8,{ bonus bAtkEle,Ele_Holy; skill "PR_TURNUNDEAD",3; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3; },{},{} 1529,Iron_Driver,Iron Driver,5,20,,3000,155,,2,0,0x00008100,63,2,2,3,78,1,8,{},{},{} @@ -847,18 +877,20 @@ 1536,Good_Morning_Star,Good Morning Star,5,20,,0,120,,1,0,0x0004C5B2,63,2,2,1,0,0,8,{ bonus2 bAddClass,Class_All,50; },{},{} 1537,Quadrille_C,Refined Quadrille,5,1,,0,193,,1,0,0x00008110,63,2,2,4,0,0,8,{ bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bAddRace,RC_Demon,40; bonus2 bAddRace,RC_Undead,40; },{},{} 1538,Spike_,Spike,5,20,,700,85,,1,2,0x00008110,63,2,2,4,40,1,8,{ bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67; },{},{} -1539,Golden_Mace_,Golden Mace,5,20,,800,110,,1,2,0x00008110,63,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon,0; },{},{} +1539,Golden_Mace_,Golden Mace,5,20,,800,110,,1,2,0x00008110,63,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon,1; },{},{} 1540,Grand_Cross_,Grand Cross,5,20,,1500,140,,1,1,0x00008110,63,2,2,4,40,1,8,{ bonus bAtkEle,Ele_Holy; skill "PR_TURNUNDEAD",3; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3; },{},{} 1541,Nemesis,Nemesis,5,20,,900,120,,1,0,0x00008110,63,2,2,4,60,1,8,{ bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; bonus3 bAutoSpell,"AL_CRUCIS",1+getrefine(),100; autobonus "{ bonus bBaseAtk,50; }",10,20000,BF_WEAPON,"{ specialeffect2 EF_BLOODDRAIN; }"; },{},{} -1542,BF_Morning_Star1,Valorous Battlefield Morning Star,5,20,,0,105,,1,0,0x0004C5B3,63,2,2,3,80,1,8,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; },{},{} -1543,BF_Morning_Star2,Brave Battlefield Morning Star,5,20,,0,105,,1,0,0x0004C5B3,63,2,2,3,80,1,8,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus bUnbreakableWeapon,0; autobonus "{ bonus2 bAddEff,Eff_Stun,5000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} +1542,BF_Morning_Star1,Valorous Battlefield Morning Star,5,20,,0,105,,1,0,0x0004C5B3,63,2,2,3,80,1,8,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; },{},{} +1543,BF_Morning_Star2,Brave Battlefield Morning Star,5,20,,0,105,,1,0,0x0004C5B3,63,2,2,3,80,1,8,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus bUnbreakableWeapon,1; autobonus "{ bonus2 bAddEff,Eff_Stun,5000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} 1544,Lunakaligo,Lunakaligo,5,20,,700,110,,1,3,0x00008110,18,2,2,3,50,1,8,{ if(readparam(bStr)>=77) { bonus bAspdRate,4; bonus2 bAddEff,Eff_Stun,1500; bonus3 bAddMonsterDropItem,12065,RC_Plant,500; bonus3 bAddMonsterDropItem,12043,RC_Brute,500; bonus3 bAddMonsterDropItem,12069,RC_Fish,500; } },{},{} 1545,N_Mace,Novice Mace,5,0,,0,57,,1,3,0x0004C5B3,63,2,2,1,2,0,8,{},{},{} -1546,Krieger_Onehand_Mace1,Glorious Morning Star,5,20,,0,130,,1,0,0x0004C5B3,63,2,2,4,80,1,8,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; bonus bAspdRate,5; } if(.@r>8) { bonus2 bAddEff,Eff_Stun,2000; bonus bAspdRate,5; } },{},{} +1546,Krieger_Onehand_Mace1,Glorious Morning Star,5,20,,0,130,,1,0,0x0004C5B3,63,2,2,4,80,1,8,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; bonus bAspdRate,5; } if(.@r>8) { bonus2 bAddEff,Eff_Stun,2000; bonus bAspdRate,5; } },{},{} 1547,Mace_Of_Madness,Mace Of Madness,5,20,,0,150,,1,0,0x0004C5B2,63,2,2,3,0,0,8,{ bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; bonus bStr,2; },{},{} 1548,Veteran_Hammer,Veteran Hammer,5,10000,,1800,160,,1,2,0x00008110,63,2,2,3,80,1,8,{ bonus bHealPower,getskilllv("AL_DP"); bonus bCritical,getskilllv("PR_MACEMASTERY")*2; bonus bInt,1; bonus bLuk,1; },{},{} 1549,Pilebuncker,Pile Bunker,5,10000,,3500,450,,1,0,0x00000400,56,2,2,3,99,1,8,{},{},{} +//=================================================================== // Books +//=================================================================== 1550,Book,Book,5,30000,,600,85,,1,3,0x00410100,63,2,2,2,14,1,15,{},{},{} 1551,Bible,Bible,5,60000,,1000,115,,1,2,0x00410100,63,2,2,3,27,1,15,{ bonus bInt,2; },{},{} 1552,Tablet,Tablet,5,51000,,800,125,,1,1,0x00410100,63,2,2,3,27,1,15,{},{},{} @@ -874,7 +906,7 @@ 1562,Bible_Of_Battlefield,Battlefield Textbook,5,20,,700,110,,1,1,0x00410100,63,2,2,4,80,0,15,{ bonus bInt,3; bonus3 bAutoSpell,"AL_BLESSING",3+(getskilllv("AL_BLESSING")>3)*(getskilllv("AL_BLESSING")-3),20; },{},{} 1563,Diary_Of_Great_Sage_C,Sage's Diary,5,1,,0,135,,1,0,0x00410100,63,2,2,3,1,0,15,{ bonus bMatk,140; bonus bAspdRate,5; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/ },{},{} 1564,Encyclopedia,Encyclopedia,5,20,,2000,110:100,,1,2,0x00410100,63,2,2,3,70,1,15,{ bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); },{},{} -1565,Death_Note,Ledger of Death,5,20,,1000,137:100,,1,2,0x00410100,63,2,2,4,85,1,15,{ bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bWeaponComaRace,RC_DemiHuman,10; bonus2 bWeaponComaRace,RC_Player,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; },{},{} +1565,Death_Note,Ledger of Death,5,20,,1000,137:100,,1,2,0x00410100,63,2,2,4,85,1,15,{ bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; },{},{} 1566,Diary_Of_Great_Basil,Diary Of Great Basil,5,20,,0,120:125,,1,0,0x00410100,63,2,2,1,0,0,15,{ bonus2 bAddClass,Class_All,50; },{},{} 1567,Hardback_C,Refined Hardcover Book,5,1,,0,168:100,,1,0,0x00410100,63,2,2,4,0,0,15,{ bonus bStr,5; bonus bDex,2; bonus bMatkRate,20; },{},{} 1568,Book_Of_Billows_,Book of Billows,5,35000,,750,90,,1,3,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Water; },{},{} @@ -883,27 +915,30 @@ 1571,Book_Of_Gust_Of_Wind_,Book of Gust of Wind,5,35000,,750,90,,1,3,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Wind; },{},{} 1572,Principles_Of_Magic,Principles of Magic,5,20,,300,60:160,,1,2,0x00410100,63,2,2,3,60,1,15,{ bonus bInt,3; bonus bSPrecovRate,5; },{},{} 1573,Ancient_Magic,Ancient Magic,5,20,,700,30:140,,1,2,0x00410100,63,2,2,3,70,1,15,{},{},{} -1574,BF_Book1,Brave Battle Strategy Book,5,20,,0,90:125,,1,0,0x00410100,63,2,2,3,80,1,15,{ bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; },{},{} -1575,BF_Book2,Valorous Battle Strategy Book,5,20,,0,90:125,,1,0,0x00410100,63,2,2,3,80,1,15,{ bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player,25; bonus bUnbreakableWeapon,0; },{},{} -1576,Krieger_Book1,Glorious Tablet,5,20,,0,90:115,,1,0,0x00410100,63,2,2,4,80,1,15,{ bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; },{},{} -1577,Krieger_Book2,Glorious Apocalypse,5,20,,0,90:115,,1,0,0x00410100,63,2,2,4,80,1,15,{ bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; if(.@r>8) { bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; } },{},{} +1574,BF_Book1,Brave Battle Strategy Book,5,20,,0,90:125,,1,0,0x00410100,63,2,2,3,80,1,15,{ bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; },{},{} +1575,BF_Book2,Valorous Battle Strategy Book,5,20,,0,90:125,,1,0,0x00410100,63,2,2,3,80,1,15,{ bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player,25; bonus bUnbreakableWeapon,1; },{},{} +1576,Krieger_Book1,Glorious Tablet,5,20,,0,90:115,,1,0,0x00410100,63,2,2,4,80,1,15,{ bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; },{},{} +1577,Krieger_Book2,Glorious Apocalypse,5,20,,0,90:115,,1,0,0x00410100,63,2,2,4,80,1,15,{ bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player,25; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; if(.@r>8) { bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; } },{},{} 1578,Book_Of_Prayer,Book Of Prayer,5,20,,0,140,,1,0,0x00410100,63,2,2,3,0,0,15,{ bonus bVit,2; bonus bMdef,2; bonus bMaxSPrate,10; },{},{} -1579,Death_Note_M,Book of the Dead,5,20,,1000,137,,1,2,0x00410100,63,2,2,4,85,1,15,{ bonus bMatkRate,15; bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bWeaponComaRace,RC_DemiHuman,10; bonus2 bWeaponComaRace,RC_Player,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; },{},{} +1579,Death_Note_M,Book of the Dead,5,20,,1000,137,,1,2,0x00410100,63,2,2,4,85,1,15,{ bonus bMatkRate,15; bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; },{},{} 1580,Encyclopedia_C,Giant Encyclopedia,5,0,,0,145:100,,1,0,0x00410100,63,2,2,3,0,0,15,{ bonus bMatkRate,15; bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); bonus2 bAddSize,Size_All,40; },{},{} 1581,F_Diary_Of_Great_Sage_C,Diary Of Great Sage,5,1,,0,135,,1,2,0x00410100,63,2,2,3,1,0,15,{},{},{} 1582,E_Diary_Of_Great_Sage_C,Diary Of Great Sage,5,1,,0,135,,1,2,0x00410100,63,2,2,3,1,0,15,{},{},{} 1583,P_Book1,Eden Book I,5,0,,0,135:110,,1,0,0x00410100,63,2,2,3,60,0,15,{},{},{} -1584,Chilly_Spell_Book,Cold Magic Book,5,56000,,1000,100:160,,1,2,0x00010000,63,2,2,4,100,1,15,{ bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon,0; bonus bDex,1; .@r = getrefine(); bonus2 bSkillAtk,"MG_COLDBOLT",(.@r*3); bonus2 bSkillAtk,"SO_DIAMONDDUST",(.@r*3); bonus2 bSkillUseSP,"MG_COLDBOLT",-(.@r*5); bonus2 bSkillUseSP,"SO_DIAMONDDUST",-(.@r*5); },{},{} +1584,Chilly_Spell_Book,Cold Magic Book,5,56000,,1000,100:160,,1,2,0x00010000,63,2,2,4,100,1,15,{ bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon,1; bonus bDex,1; .@r = getrefine(); bonus2 bSkillAtk,"MG_COLDBOLT",(.@r*3); bonus2 bSkillAtk,"SO_DIAMONDDUST",(.@r*3); bonus2 bSkillUseSP,"MG_COLDBOLT",-(.@r*5); bonus2 bSkillUseSP,"SO_DIAMONDDUST",-(.@r*5); },{},{} 1585,Upg_Book,Upg Book,5,20,,600,45:20,,1,1,0x00410100,63,2,2,3,1,1,15,{ .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bMatk,(((BaseLevel-70)/10)*5); },{},{} 1586,Velum_Bible,Vellum Bible,5,20,,600,110:125,,1,0,0x00410100,63,2,2,4,95,1,15,{ if(BaseLevel>104) { bonus bHealPower,(BaseLevel/5)-20; if(getrefine()>=6) { bonus2 bSkillCooldown,"AB_LAUDAAGNUS",-3000; bonus2 bSkillCooldown,"AB_LAUDARAMUS",-3000; bonus2 bSkillCooldown,"AB_CLEARANCE",-10000; bonus2 bSkillUseSP,"AB_LAUDAAGNUS",-60; bonus2 bSkillUseSP,"AB_LAUDARAMUS",-60; bonus2 bSkillUseSP,"AB_CLEARANCE",-60; } } },{},{} 1587,Velum_Encyclopedia,Vellum Great Encyclopedia,5,20,,1000,130,,1,0,0x00410100,63,2,2,4,95,1,15,{ .@r = getrefine(); bonus2 bAddRace,RC_Player,80+.@r; bonus2 bIgnoreDefRaceRate,RC_Player,30; if(.@r>8) { autobonus "{ bonus bBaseAtk,200; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; } },{},{} -1588,Metal_Book,Metal Book,5,20,,0,45:10,,1,1,0x00410100,63,2,2,3,1,1,15,{ .@r = getrefine(); bonus bUnbreakableWeapon,0; bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); set .@i,((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} -1590,Snake_Encyclopedia,Daizenshu Dakatsu,5,60000,,1500,10:110,,1,2,0x00410100,63,2,2,4,105,1,15,{ bonus bUnbreakableWeapon,0; },{},{} -1596,Earth_Pedigree_Book,Earth Pedigree Book,5,10,,400,90:130,,,0,0x050100,63,2,2,,27,1,15,{ .@r = getrefine(); bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5+.@r; bonus2 bSkillAtk,"WZ_EARTHSPIKE",5+.@r; bonus bUnbreakableWeapon,0; },{},{} -1597,Half_BF_Book2,Half BF Book2,5,20,,0,90:125,,1,0,0x00410100,63,2,2,3,80,1,15,{ bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreMdefRaceRate,RC_Player,10; bonus bUnbreakableWeapon,0; },{},{} +1588,Metal_Book,Metal Book,5,20,,0,45:10,,1,1,0x00410100,63,2,2,3,1,1,15,{ .@r = getrefine(); bonus bUnbreakableWeapon,1; bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = ((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} +1590,Snake_Encyclopedia,Daizenshu Dakatsu,5,60000,,1500,10:110,,1,2,0x00410100,63,2,2,4,105,1,15,{ bonus bUnbreakableWeapon,1; },{},{} +1591,TE_Woe_Book,TE Woe Book,5,0,,0,120,,1,0,0x00410100,63,2,2,3,40,1,15,{ bonus2 bAddRace,RC_Player,40; bonus2 bMagicAddRace,RC_Player,5; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5; },{},{} +1596,Earth_Pedigree_Book,Earth Pedigree Book,5,10,,400,90:130,,,2,0x050100,63,2,2,,27,1,15,{ .@r = getrefine(); bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5+.@r; bonus2 bSkillAtk,"WZ_EARTHSPIKE",5+.@r; bonus bUnbreakableWeapon,1; },{},{} +1597,Half_BF_Book2,Half BF Book2,5,20,,0,90:125,,1,0,0x00410100,63,2,2,3,80,1,15,{ bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreMdefRaceRate,RC_Player,10; bonus bUnbreakableWeapon,1; },{},{} // GM Weapon 1599,Angra_Manyu,Angra Manyu,5,1,,10,10000:10000,,2,0,0xFFFFFFFF,63,2,2,1,1,1,8,{ bonus bAllStats,50; bonus bBaseAtk,3300; bonus bMatkRate,200; bonus2 bHPDrainRate,1000,100; bonus2 bSPDrainRate,1000,20; bonus bHealPower,200; bonus2 bAddClass,Class_All,100; skill "WZ_STORMGUST",10; Skill "WZ_METEOR",10; Skill "WZ_VERMILION",10; skill "GM_SANDMAN",1; bonus bVariableCastrate,-100; bonus bFixedCastrate,-100; },{},{} -// Staffs +//=================================================================== +// 1-Handed Staffs +//=================================================================== 1601,Rod,Rod,5,50,,400,15:30,,1,3,0x00818315,63,2,2,1,1,1,10,{},{},{} 1602,Rod_,Rod,5,50,,400,15:30,,1,4,0x00818315,63,2,2,1,1,1,10,{},{},{} 1603,Rod__,Rod,5,50,,400,15:30,,1,0,0x00818315,63,2,2,1,1,1,10,{},{},{} @@ -935,16 +970,16 @@ 1629,Walking_Stick,Gentleman's Staff,5,20,,500,40:125,,1,1,0x00818314,63,2,2,4,50,1,10,{ bonus bDex,1; },{},{} 1630,Release_Of_Wish,Release of Wish,5,20,,500,30:125,,1,0,0x00810204,63,2,2,3,50,1,10,{ bonus bInt,3; bonus bHealPower,5; autobonus "{ bonus2 bSPRegenRate,100,2000; bonus2 bHPRegenRate,50,2000; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_HEAL; }"; },{},{} 1631,Holy_Stick,Holy Stick,5,20,,500,50:140,,1,1,0x00008100,63,2,2,4,70,1,10,{ bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus2 bVariableCastrate,"AL_HOLYLIGHT",-25; bonus2 bVariableCastrate,"PR_TURNUNDEAD",-25; bonus2 bVariableCastrate,"PR_MAGNUS",-25; },{},{} -1632,BF_Staff1,Warlock's Magic Wand,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bInt,4; bonus bDex,3; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player,25; bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; bonus bUnbreakableWeapon,0; },{},{} -1633,BF_Staff2,Warlock's Battle Wand,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bInt,3; bonus bDex,3; bonus bMatkRate,15; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player,15; bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; bonus bUnbreakableWeapon,0; },{},{} -1634,BF_Staff3,Strong Recovery Wand,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bMatkRate,15; bonus bHealPower,14; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon,0; },{},{} -1635,BF_Staff4,Speedy Recovery Wand,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bInt,3; bonus bDex,2; bonus bMatkRate,15; bonus bDelayRate,-15; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon,0; },{},{} +1632,BF_Staff1,Warlock's Magic Wand,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bInt,4; bonus bDex,3; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player,25; bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; bonus bUnbreakableWeapon,1; },{},{} +1633,BF_Staff2,Warlock's Battle Wand,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bInt,3; bonus bDex,3; bonus bMatkRate,15; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player,15; bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; bonus bUnbreakableWeapon,1; },{},{} +1634,BF_Staff3,Strong Recovery Wand,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bMatkRate,15; bonus bHealPower,14; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon,1; },{},{} +1635,BF_Staff4,Speedy Recovery Wand,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bInt,3; bonus bDex,2; bonus bMatkRate,15; bonus bDelayRate,-15; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon,1; },{},{} 1636,Thorn_Staff,Thorn Staff of Darkness,5,20,,700,60:160,,1,0,0x00018314,18,2,2,4,75,1,10,{ bonus bInt,3; bonus bDex,3; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@r; bonus bDelayRate,-(.@r*3/2); },{},{} -1637,Eraser,Eraser,5,20,,500,80:170,,1,0,0x00018314,18,2,2,4,70,1,10,{ bonus bInt,3; bonus bDex,2; bonus bSPrecovRate,8; if( getrefine() > 9 ) bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",3,5,BF_MAGIC,0; else bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",1,5,BF_MAGIC,0; },{},{} +1637,Eraser,Eraser,5,20,,500,80:170,,1,0,0x00018314,18,2,2,4,70,1,10,{ bonus bInt,3; bonus bDex,2; bonus bSPrecovRate,8; bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",(getrefine()>9?3:1),5,BF_MAGIC,0; },{},{} 1638,Healing_Staff_C,Staff Of Healing,5,20,,0,10:125,,1,0,0x00008110,63,2,2,3,1,0,10,{ bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2); },{},{} 1639,N_Rod,Novice Rod,5,0,,0,15:32,,1,3,0x00818315,63,2,2,1,1,0,10,{ bonus bMatkRate,16; },{},{} -1640,Krieger_Onehand_Staff1,Glorious Arc Wand,5,20,,0,70:135,,1,0,0x00818314,63,2,2,4,80,1,10,{ bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player,15; .@r = getrefine(); bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((.@r > 5) ? 5 : 0); bonus2 bIgnoreMdefRaceRate,RC_Player,25 + ((.@r > 5) ? 5 : 0); bonus bUnbreakableWeapon,0; if(.@r > 8) { bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; } },{},{} -1641,Krieger_Onehand_Staff2,Glorious Cure Wand,5,20,,0,70:135,,1,0,0x00818314,63,2,2,4,80,1,10,{ bonus bHealPower,14; bonus bDelayRate,-10; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r > 5) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player,5; bonus bHealPower,5+(((.@r>14)?14:.@r)-5)*2; } if(.@r > 8) bonus5 bAutoSpellOnSkill,"AL_HEAL","AL_HEAL",10,100,1; if(.@r > 9) { bonus bHealPower,10; } },{},{} +1640,Krieger_Onehand_Staff1,Glorious Arc Wand,5,20,,0,70:135,,1,0,0x00818314,63,2,2,4,80,1,10,{ bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player,15; .@r = getrefine(); bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((.@r > 5) ? 5 : 0); bonus2 bIgnoreMdefRaceRate,RC_Player,25 + ((.@r > 5) ? 5 : 0); bonus bUnbreakableWeapon,1; if(.@r > 8) { bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; } },{},{} +1641,Krieger_Onehand_Staff2,Glorious Cure Wand,5,20,,0,70:135,,1,0,0x00818314,63,2,2,4,80,1,10,{ bonus bHealPower,14; bonus bDelayRate,-10; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r > 5) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player,5; bonus bHealPower,5+(((.@r>14)?14:.@r)-5)*2; } if(.@r > 8) bonus5 bAutoSpellOnSkill,"AL_HEAL","AL_HEAL",10,100,1; if(.@r > 9) { bonus bHealPower,10; } },{},{} 1642,Staff_Of_Darkness,Staff Of Darkness,5,20,,0,100:120,,1,0,0x00818314,63,2,2,2,0,0,10,{ bonus bVariableCastrate,-5; bonus bMatkRate,15; bonus bInt,2; },{},{} 1643,Dead_Tree_Cane,Dead Tree Cane,5,20,,100,100:155,,1,0,0x00818314,63,2,2,4,70,1,10,{ bonus bInt,4; .@r = getrefine(); if (.@r>5) { bonus bInt,.@r-5; bonus bMaxHP,-200; bonus bMaxSP,-100; } },{},{} 1644,Piercing_Staff_M,Staff of Piercing,5,20,,500,80:145,,1,0,0x00018314,18,2,2,3,70,1,10,{ bonus bInt,4; bonus bMatkRate,15; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; },{},{} @@ -958,23 +993,29 @@ 1652,Tourist_Staff,Tourist Staff,5,0,,500,35:0,,1,0,0x00818315,63,2,2,1,1,0,10,{ bonus bInt,2; bonus bAgi,1; },{},{} 1653,Staff_Of_Healing_C,Staff of Healing,5,20,,0,10:100,,1,0,0x00008110,63,2,2,3,1,0,10,{ bonus bAtkEle,Ele_Holy; },{},{} 1654,Mental_Stick,Mental Stick,5,20,,500,40:170,,1,1,0x00818315,63,2,2,3,102,1,10,{ .@r = getrefine(); if(.@r>5) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",(.@r-5)*2; bonus bMaxHPrate,-(.@r-5)*2; } bonus2 bSkillVariableCast,"SO_PSYCHIC_WAVE",-3000; bonus2 bSkillUseSP,"SO_PSYCHIC_WAVE",-60; },{},{ itemheal 0,-100; } -1655,Adventure_Staff,Adventure Staff,5,0,,0,60,,1,0,0x00810204,63,2,2,1,1,0,10,{ bonus bUnbreakableWeapon,0; },{},{} -1656,Academy_Wand,Academy Wand,5,0,,600,60,,1,1,0x00810204,63,2,2,1,1,1,10,{ bonus bUnbreakableWeapon,0; },{},{} +1655,Adventure_Staff,Adventure Staff,5,0,,0,60,,1,0,0x00810204,63,2,2,1,1,0,10,{ bonus bUnbreakableWeapon,1; },{},{} +1656,Academy_Wand,Academy Wand,5,0,,600,60,,1,1,0x00810204,63,2,2,1,1,1,10,{ bonus bUnbreakableWeapon,1; },{},{} 1657,Wand_Of_Affection,Wand Of Affection,5,20,,500,30:160,,1,2,0x00000100,63,2,2,3,100,1,10,{ bonus bInt,2; bonus bAtkEle,Ele_Holy; bonus bHealPower,10; },{},{} 1658,P_Staff3,Eden Staff III,5,0,,0,60:170,,1,0,0x00818314,63,2,2,3,60,0,10,{ bonus bInt,4; },{},{} -1659,Recovery_Light,Light of Recovery,5,56000,,400,30:160,,1,1,0x00000100,63,2,2,4,110,1,10,{ bonus bAtkEle,Ele_Holy; bonus bUnbreakableWeapon,0; .@r = getrefine(); bonus bHealPower,(.@r*6); bonus2 bSkillUseSP,"AL_HEAL",-(.@r*10); bonus2 bSkillUseSP,"AB_CHEAL",-(.@r*12); bonus2 bSkillUseSP,"AB_HIGHNESSHEAL",-(.@r*14); },{},{} +1659,Recovery_Light,Light of Recovery,5,56000,,400,30:160,,1,1,0x00000100,63,2,2,4,110,1,10,{ bonus bAtkEle,Ele_Holy; bonus bUnbreakableWeapon,1; .@r = getrefine(); bonus bHealPower,(.@r*6); bonus2 bSkillUseSP,"AL_HEAL",-(.@r*10); bonus2 bSkillUseSP,"AB_CHEAL",-(.@r*12); bonus2 bSkillUseSP,"AB_HIGHNESSHEAL",-(.@r*14); },{},{} 1660,Wand_Of_Affection2,Empowered Wand Of Affection,5,20,,500,30:180,,1,1,0x00000100,63,2,2,3,130,1,10,{ bonus bAtkEle,Ele_Holy; bonus bInt,4; bonus bHealPower,20; },{},{} -1661,Mental_Destroyer,Mental Destroyer,5,20,,1400,100:50,,1,0,0x00000200,63,2,2,4,95,1,10,{ bonus bInt,10; bonus bUnbreakableWeapon,0; bonus bUseSPrate,100; bonus bMdef,20; bonus2 bSPVanishRate,10000,5; if(getrefine()>5) { bonus2 bSPVanishRate,10000,5; } },{},{} +1661,Mental_Destroyer,Mental Destroyer,5,20,,1400,100:50,,1,0,0x00000200,63,2,2,4,95,1,10,{ bonus bInt,10; bonus bUnbreakableWeapon,1; bonus bUseSPrate,100; bonus bMdef,20; bonus2 bSPVanishRate,10000,5; if(getrefine()>5) { bonus2 bSPVanishRate,10000,5; } },{},{} 1664,Thorn_Staff_of_Darkness,Thorn Staff of Darkness,5,10,,700,60:160,,,1,0x14,50,2,2,4,75,1,8,{ bonus bInt,3; bonus bDex,3; bonus bVariableCastrate,-getrefine(); bonus bAtkEle,Ele_Dark; },{},{} +1667,TE_Woe_Staff,TE Woe Staff,5,0,,0,50,,1,0,0x00818315,63,2,2,3,40,1,10,{ bonus2 bMagicAddRace,RC_Player,10; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5; },{},{} 1668,Sword_Stick,Sword Stick,5,10,,500,120:150,,,2,0x800200,63,2,2,4,80,1,8,{ bonus bAspdRate,10; },{},{} 1669,Tanos_Staff,Tanos Staff,5,10,,1000,100:200,,,1,0x00818314,63,2,2,4,120,1,10,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bAtkRate,5; bonus2 bHPLossRate,100,10000; },{},{} -1670,RWC_Memory_Staff,RWC Memory Staff,5,20,,500,25:30,,1,1,0x00818315,63,2,2,3,1,1,10,{ bonus bUnbreakableWeapon,0; .@r = getrefine(); bonus bMatk,30*(.@r/3); if(.@r>=7){ set .@i,1; bonus4 bAutoSpell,"HW_MAGICPOWER",1,10,0; } if (.@r>=4){ set .@rate,5*(.@i+1); bonus2 bMagicAddClass,Class_All,.@rate; } },{},{} +1670,RWC_Memory_Staff,RWC Memory Staff,5,20,,500,25:30,,1,1,0x00818315,63,2,2,3,1,1,10,{ .@r = getrefine(); bonus bMatk,30*(.@r/3); if(.@r>=6) bonus2 bMagicAddClass,Class_All,(.@r>=9?10:5); if(.@r>=9) bonus4 bAutoSpell,"HW_MAGICPOWER",1,10,0; },{},{} 1671,Devil_Won_Staff,Devil Won Staff,5,10,,800,30:155,,,1,0x00818315,63,2,2,3,100,1,10,{ bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; bonus bMatkRate,10; },{},{} -1673,Half_BF_Staff4,Half BF Staff4,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bInt,3; bonus bDex,2; bonus bDelayRate,-10; bonus2 bSPLossRate,5,12000; bonus bUnbreakableWeapon,0; },{},{} -1674,Half_BF_Staff2,Half BF Staff2,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bInt,3; bonus bDex,3; bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Player,10; bonus3 bAddEff,Eff_Stun,200,ATF_SKILL; bonus bUnbreakableWeapon,0; },{},{} -1676,Baculum_Daemonicum,Baculum Daemonicum,5,20,,1200,60:150,,1,2,0x00818315,63,2,2,4,80,1,10,{ bonus bAtkEle,Ele_Dark; bonus bUnbreakableWeapon,0; bonus bVariableCastrate,-10; if (BaseLevel > 99){ bonus bMatk,30; } if(getrefine() > 8){ bonus2 bResEff,Eff_Blind,3000; bonus bUseSPrate,-10; } },{},{} +1673,Half_BF_Staff4,Half BF Staff4,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bInt,3; bonus bDex,2; bonus bDelayRate,-10; bonus2 bSPLossRate,5,12000; bonus bUnbreakableWeapon,1; },{},{} +1674,Half_BF_Staff2,Half BF Staff2,5,20,,0,70:125,,1,0,0x00818314,63,2,2,3,80,1,10,{ bonus bInt,3; bonus bDex,3; bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Player,10; bonus3 bAddEff,Eff_Stun,200,ATF_SKILL; bonus bUnbreakableWeapon,1; },{},{} +1676,Baculum_Daemonicum,Baculum Daemonicum,5,20,,1200,60:150,,1,2,0x00818315,63,2,2,4,80,1,10,{ bonus bAtkEle,Ele_Dark; bonus bUnbreakableWeapon,1; bonus bVariableCastrate,-10; if (BaseLevel > 99){ bonus bMatk,30; } if(getrefine() > 8){ bonus2 bResEff,Eff_Blind,3000; bonus bUseSPrate,-10; } },{},{} 1677,Blue_Wand,Blue Wand,5,10,,0,50,,1,1,0x00000200,56,2,2,3,100,1,10,{ bonus bStr,5; bonus bInt,5; },{},{} +1678,Ru_Gold_Wand,Ru Gold Wand,5,0,,0,50,,1,2,0x00000200,56,2,2,3,120,1,10,{ bonus bDex,8; bonus bInt,8; },{},{} +1680,Crimson_One-Handed_Staff,Crimson One-Handed Staff,5,10,,600,60,,1,2,0x00800015,63,2,2,3,70,1,10,{ .@r = getrefine(); bonus bInt,4; bonus bMatk,70+((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon,1; },{},{} +1682,Shadow_Staff,Shadow Staff,5,0,,600,70:130,,1,2,0x00000200,56,2,2,4,90,1,10,{ .@r = getrefine(); bonus2 bSkillAtk,"WL_HELLINFERNO",(getskilllv("WL_HELLINFERNO") >= 5 ? 100 : 0) + (.@r*10); bonus2 bIgnoreMdefRaceRate,RC_All,5; autobonus "{ bonus2 bVariableCastrate,\"WL_HELLINFERNO\",-30; }",.@r*20,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER }"; },{},{} +//=================================================================== // Bows +//=================================================================== 1701,Bow,Bow,5,1000,,500,15,,5,3,0x000A0848,63,2,34,1,4,1,11,{},{},{} 1702,Bow_,Bow,5,1000,,500,15,,5,4,0x000A0848,63,2,34,1,4,1,11,{},{},{} 1703,Bow__,Bow,5,1000,,0,15,,5,0,0x000A0848,63,2,34,1,4,1,11,{ bonus2 bAddDamageClass,1002,500; bonus2 bAddDamageClass,1113,500; bonus2 bAddDamageClass,1031,500; bonus2 bAddDamageClass,1242,500; },{},{} @@ -1011,19 +1052,21 @@ 1735,Kkakkung,Kkakkung,5,20,,0,120,,5,0,0x000A0848,63,2,34,1,1,0,11,{ bonus2 bAddClass,Class_All,50; },{},{} 1736,Double_Bound,Double Bound,5,20,,900,70,,5,3,0x00000800,18,2,34,3,70,1,11,{ bonus3 bAutoSpell,"AC_DOUBLE",GetSkillLv("AC_DOUBLE"),10; },{},{} 1737,Ixion_Wing,Ixion Wings,5,20,,300,135,,5,1,0x00000800,18,2,34,4,70,1,11,{ autobonus "{ bonus bAspdRate,7; }",10+(getrefine()*2),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; bonus2 bAddSkillBlow,"AC_CHARGEARROW",3; },{},{} -1738,BF_Bow1,Valorous Battle CrossBow,5,20,,0,100,,5,0,0x000A0848,63,2,34,3,80,1,11,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; },{},{} -1739,BF_Bow2,Brave Battle CrossBow,5,20,,0,100,,5,0,0x000A0848,63,2,34,3,80,1,11,{ bonus bDex,2; bonus bInt,10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus bUnbreakableWeapon,0; },{},{} +1738,BF_Bow1,Valorous Battle CrossBow,5,20,,0,100,,5,0,0x000A0848,63,2,34,3,80,1,11,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; },{},{} +1739,BF_Bow2,Brave Battle CrossBow,5,20,,0,100,,5,0,0x000A0848,63,2,34,3,80,1,11,{ bonus bDex,2; bonus bInt,10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus bUnbreakableWeapon,1; },{},{} 1740,Nepenthes_Bow,Nepenthes Bow,5,20,,1000,105,,5,2,0x00000800,18,2,34,4,60,1,11,{ bonus4 bAutoSpellOnSkill,"AC_DOUBLE","AC_CHARGEARROW",1,20; },{},{} 1741,Cursed_Lyre,Cursed Lyre,5,20,,1250,125,,5,1,0x00080808,18,2,34,4,80,1,11,{ bonus bLuk,-2; bonus2 bAddEff,Eff_Curse,400; },{},{} 1742,N_Composite_Bow,Novice Composite Bow,5,1,,0,49,,5,3,0x000A0848,63,2,34,1,4,0,11,{},{},{} -1743,Krieger_Bow1,Glorious Hunter Bow,5,0,,0,100,,5,0,0x001A0848,63,2,34,4,80,1,11,{ bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; .@r = getrefine(); bonus bCritAtkRate,.@r * 2; bonus bUnbreakableWeapon,0; if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) bonus2 bSkillAtk,"AC_DOUBLE",20; },{},{} +1743,Krieger_Bow1,Glorious Hunter Bow,5,0,,0,100,,5,0,0x001A0848,63,2,34,4,80,1,11,{ bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; .@r = getrefine(); bonus bCritAtkRate,.@r * 2; bonus bUnbreakableWeapon,1; if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) bonus2 bSkillAtk,"AC_DOUBLE",20; },{},{} 1744,Bow_Of_Evil,Bow Of Evil,5,20,,0,170,,5,0,0x000A0848,63,2,34,4,1,0,11,{ bonus2 bSkillAtk,"AC_DOUBLE",25; bonus bDex,2; },{},{} 1745,Falken_Blitz,Falken Blitz,5,20,,1000,100,,5,2,0x00080808,18,2,34,3,50,1,11,{ bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; bonus2 bSkillAtk,"AC_DOUBLE",10; bonus2 bSkillAtk,"AC_CHARGEARROW",10; },{},{} 1746,Elven_Bow,Elven Bow,5,20,,1500,160,,5,1,0x00080800,63,2,34,3,100,1,11,{ bonus bDex,2; },{},{} 1747,P_Bow1,Eden Bow I,5,0,,0,82,,5,0,0x000A0848,63,2,34,2,26,0,11,{},{},{} 1748,P_Bow2,Eden Bow II,5,0,,0,120,,5,0,0x000A0848,63,2,34,2,40,0,11,{},{},{} 1749,Tourist_Bow,Tourist Bow,5,0,,500,40,,5,0,0x000A0848,63,2,34,1,1,0,11,{ bonus bDex,2; },{},{} +//=================================================================== // Arrows +//=================================================================== 1750,Arrow,Arrow,10,1,,1,25,,,,0x000A1848,63,2,32768,,1,,1,{},{},{} 1751,Silver_Arrow,Silver Arrow,10,3,,2,30,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Holy; },{},{} 1752,Fire_Arrow,Fire Arrow,10,3,,2,30,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Fire; },{},{} @@ -1051,7 +1094,9 @@ 1774,Hunting_Arrow,Hunting Arrow,10,5,,1,35,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bLongAtkRate,50; },{},{} 1775,Siege_Arrow_S,Siege Arrow S,10,10,,1,45,,,,0x000A1848,63,2,32768,,130,,1,{},{},{} 1776,Siege_Arrow_A,Siege Arrow A,10,10,,1,30,,,,0x000A1848,63,2,32768,,95,,1,{},{},{} +//=================================================================== // Knuckles +//=================================================================== 1801,Waghnakh,Waghnak,5,8000,,400,30,,1,3,0x00008100,63,2,2,1,1,1,12,{},{},{} 1802,Waghnakh_,Waghnak,5,8000,,400,30,,1,4,0x00008100,63,2,2,1,1,1,12,{},{},{} 1803,Knuckle_Duster,Knuckle Dusters,5,25000,,450,50,,1,2,0x00008100,63,2,2,2,12,1,12,{},{},{} @@ -1074,21 +1119,25 @@ 1820,Electric_Fist,Electric Fist,5,20,,650,80,,1,3,0x00008100,63,2,2,3,75,1,12,{ bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",5,10; },{},{} 1821,Seismic_Fist,Seismic Fist,5,20,,650,80,,1,3,0x00008100,63,2,2,3,75,1,12,{ bonus3 bAutoSpell,"SA_SEISMICWEAPON",5,10; },{},{} 1822,Combo_Battle_Glove,Combo Battle Glove,5,20,,500,30,,1,4,0x00008100,63,2,2,3,60,1,12,{ bonus2 bSkillAtk,"MO_TRIPLEATTACK",15; bonus2 bSkillAtk,"MO_CHAINCOMBO",15; bonus2 bSkillAtk,"MO_COMBOFINISH",20; },{},{} -1823,BF_Knuckle1,Valorous Battle Fist,5,20,,0,30,,1,0,0x00008100,63,2,2,3,80,1,12,{ bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon,0; },{},{} -1824,BF_Knuckle2,Brave Battle Fist,5,20,,0,30,,1,0,0x00008100,63,2,2,3,80,1,12,{ bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-25; autobonus "{ bonus2 bVariableCastrate,\"MO_EXTREMITYFIST\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }"; bonus bUnbreakableWeapon,0; },{},{} +1823,BF_Knuckle1,Valorous Battle Fist,5,20,,0,30,,1,0,0x00008100,63,2,2,3,80,1,12,{ bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon,1; },{},{} +1824,BF_Knuckle2,Brave Battle Fist,5,20,,0,30,,1,0,0x00008100,63,2,2,3,80,1,12,{ bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-25; autobonus "{ bonus2 bVariableCastrate,\"MO_EXTREMITYFIST\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }"; bonus bUnbreakableWeapon,1; },{},{} 1825,Horn_Of_Hilthrion,Horn of Hillslion,5,20,,600,95,,1,3,0x00008000,18,2,2,3,60,1,12,{ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"CH_PALMSTRIKE","MO_INVESTIGATE",1,100; bonus3 bAutoSpell,"MO_CALLSPIRITS",5,100; },{},{} -1826,Krieger_Knuckle1,Glorious Claw,5,20,,0,30,,1,0,0x00008100,63,2,2,4,80,1,12,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus3 bAutoSpell,"MO_INVESTIGATE",5,(.@r*10-50); bonus3 bAutoSpell,"AL_DECAGI",1,(.@r*10-50); } },{},{} -1827,Krieger_Knuckle2,Glorious Fist,5,20,,0,30,,1,0,0x00008100,63,2,2,4,80,1,12,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-100; bonus2 bFixedCastrate,"MO_EXTREMITYFIST",-100; bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; } },{},{} +1826,Krieger_Knuckle1,Glorious Claw,5,20,,0,30,,1,0,0x00008100,63,2,2,4,80,1,12,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus3 bAutoSpell,"MO_INVESTIGATE",5,(.@r*10-50); bonus3 bAutoSpell,"AL_DECAGI",1,(.@r*10-50); } },{},{} +1827,Krieger_Knuckle2,Glorious Fist,5,20,,0,30,,1,0,0x00008100,63,2,2,4,80,1,12,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-100; bonus2 bFixedCastrate,"MO_EXTREMITYFIST",-100; bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; } },{},{} 1828,Monk_Knuckle,Monk Knuckle,5,20,,0,150,,1,0,0x00008100,63,2,2,4,0,0,12,{ bonus bInt,2; bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25; },{},{} 1829,Fist_C,Fist,5,0,,0,150,,1,0,0x00008100,63,2,2,3,1,0,12,{ bonus2 bAddSize,Size_All,40; },{},{} 1830,Sura_Rampage,Sura Rampage,5,20,,500,142,,1,1,0x00008100,63,2,2,3,102,1,12,{ bonus2 bSkillAtk,"SR_EARTHSHAKER",20; bonus2 bSkillAtk,"SR_SKYNETBLOW",20; bonus bUseSPrate,5; .@r = getrefine(); if(.@r>6) { bonus bUseSPrate,-1*(.@r-6); } },{},{} 1831,P_Knuckle1,Eden Knuckle I,5,0,,0,120,,1,0,0x00008100,63,2,2,3,60,0,12,{},{},{} 1832,Velum_Claw,Vellum Claw,5,20,,650,160,,1,0,0x00008100,63,2,2,4,95,1,12,{ bonus2 bAddRace,RC_Player,100; .@r = getrefine(); if(.@r>7) { bonus2 bAddRace,RC_Player,20; } if(.@r>9) { bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-100; bonus2 bFixedCastrate,"MO_EXTREMITYFIST",-100; bonus4 bAutoSpellOnSkill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,10000; bonus2 bHPLossRate,500,3000; } },{},{} 1833,Claw_Of_Flash,Claw of Flash,5,60000,,400,140,,1,2,0x00008100,63,2,2,4,105,1,12,{},{},{} +1834,TE_Woe_Fist,TE Woe Fist,5,0,,0,150,,1,0,0x00008100,63,2,2,3,40,1,12,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Freeze,3000; },{},{} 1836,Tanos_Knuckles,Tanos Knuckles,5,10,,600,160:100,,,1,0x00008100,63,2,2,4,120,1,12,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bAtkRate,5; bonus2 bHPLossRate,100,10000; },{},{} -1837,Iron_nail,Iron nail,5,10,,1500,100,,,0,0x00008100,63,2,2,3,50,1,12,{ bonus bAspdRate,-5; bonus bAspdRate,((getrefine()+1)/2); },{},{} -1838,Half_BF_Knuckle1,Half BF Knuckle1,5,20,,0,30,,1,0,0x00008100,63,2,2,3,80,1,12,{ bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon,0; },{},{} +1837,Iron_nail,Iron Nail,5,10,,1500,100,,,1,0x00008100,63,2,2,3,50,1,12,{ bonus bAspdRate,-5; bonus bAspdRate,((getrefine()+1)/2); },{},{} +1838,Half_BF_Knuckle1,Half BF Knuckle1,5,20,,0,30,,1,0,0x00008100,63,2,2,3,80,1,12,{ bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon,1; },{},{} +1839,Crimson_Knuckles,Crimson Knuckles,5,20,,1000,100,,1,2,0x00008100,63,2,2,3,70,1,12,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon,1; },{},{} +//=================================================================== // Instruments +//=================================================================== 1901,Violin,Violin,5,4000,,700,50,,1,3,0x00080000,63,1,2,1,2,1,13,{},{},{} 1902,Violin_,Violin,5,4000,,700,50,,1,4,0x00080000,63,1,2,1,2,1,13,{},{},{} 1903,Mandolin,Mandolin,5,18000,,400,90,,1,2,0x00080000,63,1,2,2,14,1,13,{},{},{} @@ -1101,7 +1150,7 @@ 1910,Harp_,Harp,5,62000,,900,114,,1,2,0x00080000,63,1,2,3,27,1,13,{ bonus bInt,2; },{},{} 1911,Guh_Moon_Goh,Gumoongoh,5,54000,,1300,126,,1,1,0x00080000,63,1,2,3,27,1,13,{},{},{} 1912,Guh_Moon_Goh_,Gumoongoh,5,54000,,1300,126,,1,2,0x00080000,63,1,2,3,27,1,13,{},{},{} -1913,Electronic_Guitar,Electric Guitar,5,20,,1800,110,,1,0,0x00080000,63,1,2,4,70,1,13,{ skill "WZ_JUPITEL",1; bonus3 bAutoSpell,"WZ_JUPITEL",1,100; bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,1; bonus bUnbreakableWeapon,0; },{},{} +1913,Electronic_Guitar,Electric Guitar,5,20,,1800,110,,1,0,0x00080000,63,1,2,4,70,1,13,{ skill "WZ_JUPITEL",1; bonus3 bAutoSpell,"WZ_JUPITEL",1,100; bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,1; bonus bUnbreakableWeapon,1; },{},{} 1914,Guitar_Of_Passion,Burning Passion Guitar,5,20,,900,110,,1,0,0x00080000,63,1,2,3,27,1,13,{ bonus bAtkEle,Ele_Fire; },{},{} 1915,Guitar_Of_Blue_Solo,Loner's Guitar,5,20,,900,110,,1,0,0x00080000,63,1,2,3,27,1,13,{ bonus bAtkEle,Ele_Water; },{},{} 1916,Guitar_Of_Vast_Land,Green Acre Guitar,5,20,,900,110,,1,0,0x00080000,63,1,2,3,27,1,13,{ bonus bAtkEle,Ele_Earth; },{},{} @@ -1111,21 +1160,27 @@ 1920,Berserk_Guitar,Berserk Guitar,5,20,,1800,10,,1,0,0x00080000,18,1,2,4,70,1,13,{ bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex); },{},{} 1921,Guh_Moon_Gom,Gun Moon Gom,5,20,,0,120,,1,0,0x00080000,63,1,2,1,0,0,13,{ bonus2 bAddClass,Class_All,50; },{},{} 1922,Oriental_Lute_,Oriental Lute,5,20,,1200,150,,1,2,0x00080000,63,1,2,4,65,1,13,{ bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; },{},{} -1923,BF_Instrument1,Valorous Battlefield Guitar,5,20,,0,50,,1,0,0x00080000,63,1,2,3,80,1,13,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; },{},{} -1924,BF_Instrument2,Brave Battlefield Guitar,5,20,,0,50,,1,0,0x00080000,63,1,2,3,80,1,13,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon,0; },{},{} +1923,BF_Instrument1,Valorous Battlefield Guitar,5,20,,0,50,,1,0,0x00080000,63,1,2,3,80,1,13,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; },{},{} +1924,BF_Instrument2,Brave Battlefield Guitar,5,20,,0,50,,1,0,0x00080000,63,1,2,3,80,1,13,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon,1; },{},{} 1925,Cello,Cello,5,20,,700,110,,1,3,0x00080000,18,1,2,3,70,1,13,{ bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"BA_MUSICALSTRIKE",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; },{},{} -1926,Harp_Of_Nepenthes,Harp of Nepenthes,5,20,,1000,120,,1,2,0x00080000,18,1,2,4,60,1,13,{ bonus bInt,2; if( getrefine()>9 ) { bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,2000; } else { bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,1000; } },{},{} -1927,Krieger_Instrument1,Glorious Guitar,5,20,,0,50,,1,0,0x00080000,63,1,2,4,80,1,13,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; },{},{} +1926,Harp_Of_Nepenthes,Harp of Nepenthes,5,20,,1000,120,,1,2,0x00080000,18,1,2,4,60,1,13,{ bonus bInt,2; bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,(getrefine()>=9?2000:1000); },{},{} +1927,Krieger_Instrument1,Glorious Guitar,5,20,,0,50,,1,0,0x00080000,63,1,2,4,80,1,13,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; },{},{} 1928,Berserk_Guitar_I,Spirited Guitar,5,0,,0,40,,1,0,0x00080000,18,1,2,4,0,0,13,{ bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex); },{},{} 1929,Guitar_C,Guitar,5,0,,0,177,,1,0,0x00080000,63,1,2,3,1,0,13,{ bonus2 bAddSize,Size_All,40; },{},{} 1930,Green_Whistle,Green Whistle,5,20,,800,170:50,,1,1,0x00080000,63,1,2,3,102,1,13,{ .@r = getrefine(); if(.@r>5) { bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",(.@r-5)*4; bonus2 bSkillUseSP,"WM_LULLABY_DEEPSLEEP",(.@r-5)*4; } bonus2 bSkillVariableCast,"MI_RUSH_WINDMILL",-2000; bonus2 bSkillVariableCast,"WM_LULLABY_DEEPSLEEP",-2000; },{},{} 1931,P_Guitar1,Eden Guitar I,5,0,,0,125,,1,0,0x00080000,63,1,2,3,60,0,13,{},{},{} +1932,TE_Woe_Guitar,TE Woe Guitar,5,0,,0,100,,1,0,0x00080000,63,1,2,3,40,1,13,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Poison,3000; },{},{} 1933,Tanos_Violin,Tanos Violin,5,10,,2000,200:130,,,1,0x00080000,63,1,2,4,120,1,13,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bLongAtkRate,20; bonus2 bHPLossRate,100,10000; },{},{} 1934,Contrabass,Contrabass,5,20,,250,180:120,,1,2,0x00080000,63,1,2,3,130,1,13,{ bonus2 bSkillCooldown,"WM_RANDOMIZESPELL",-20; },{},{} 1935,Ozs_New_Ukulele,Oz's New Ukulele,5,20,,2000,160,,1,2,0x00080000,63,1,2,4,130,1,13,{ bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",-20; },{},{} 1936,Blue_Violin,Blue Violin,5,10,,1500,180,,2,1,0x00080000,63,1,2,3,100,1,13,{ bonus bDex,5; bonus bVit,5; },{},{} +1937,Ru_Gold_Violin,Ru Gold Violin,5,0,,1500,180,,1,2,0x00080000,56,2,2,3,120,1,13,{ bonus bDex,8; bonus bVit,8; },{},{} 1938,Infinity_Violin,Infinity Violin,5,10,,500,150,,2,1,0x00080000,63,1,2,4,100,1,13,{},{},{} +1939,Crimson_Violin,Crimson Violin,5,20,,800,80,,2,2,0x00080000,63,1,2,3,70,1,13,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{} +1940,Trumpet_Shell,Trumpet Shell,5,0,,600,125,,1,1,0x00080000,56,1,2,4,130,1,13,{ .@r = getrefine(); bonus bDex,.@r; bonus bInt,.@r; .@per = ((.@r > 9) ? 40 : ((.@r > 7) ? 20 : ((.@r > 5) ? 10 : 0))); bonus2 bSkillAtk,"WM_REVERBERATION",.@per; bonus2 bVariableCastrate,"WM_REVERBERATION",-.@per; },{},{} +//=================================================================== // Whips +//=================================================================== 1950,Rope,Rope,5,2500,,400,45,,2,3,0x00080000,63,0,2,1,3,1,14,{},{},{} 1951,Rope_,Rope,5,2500,,400,45,,2,4,0x00080000,63,0,2,1,3,1,14,{},{},{} 1952,Line,Whip,5,12000,,300,80,,2,2,0x00080000,63,0,2,2,16,1,14,{},{},{} @@ -1153,26 +1208,30 @@ 1974,Carrot_Whip,Carrot Whip,5,20,,1300,185,,2,0,0x00080000,18,0,2,4,70,1,14,{ .@r = getrefine(); if(.@r>0) bonus3 bAutoSpell,"AL_INCAGI",(.@r>10?10:.@r),10; },{},{} 1975,Queen_Is_Whip,Queen Is Whip,5,20,,0,120,,2,0,0x00080000,63,0,2,1,0,0,14,{ bonus2 bAddClass,Class_All,50; },{},{} 1976,Queen's_Whip_,Queen's Whip,5,20,,1100,150,,2,2,0x00080000,63,0,2,4,65,1,14,{ bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10; },{},{} -1977,BF_Whip1,Valorous Battle Lariat,5,20,,0,50,,2,0,0x00080000,63,0,2,3,80,1,14,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; },{},{} -1978,BF_Whip2,Brave Battle Lariat,5,20,,0,50,,2,0,0x00080000,63,0,2,3,80,1,14,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon,0; },{},{} -1979,Stem_Of_Nepenthes,Stem of Nepenthes,5,20,,1000,120,,2,2,0x00080000,18,0,2,4,60,1,14,{ bonus bInt,2; if( getrefine()>=9 ) { bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,2000; } else { bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,1000; } },{},{} +1977,BF_Whip1,Valorous Battle Lariat,5,20,,0,50,,2,0,0x00080000,63,0,2,3,80,1,14,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; },{},{} +1978,BF_Whip2,Brave Battle Lariat,5,20,,0,50,,2,0,0x00080000,63,0,2,3,80,1,14,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon,1; },{},{} +1979,Stem_Of_Nepenthes,Stem of Nepenthes,5,20,,1000,120,,2,2,0x00080000,18,0,2,4,60,1,14,{ bonus bInt,2; bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,(getrefine()>=9?2000:1000); },{},{} 1980,Whip_Of_Balance,Whip of Balance,5,20,,700,110,,2,3,0x00080000,18,0,2,3,70,1,14,{ bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"DC_THROWARROW",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; },{},{} -1981,Krieger_Whip1,Glorious Lariat,5,20,,0,50,,2,0,0x00080000,63,0,2,4,80,1,14,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; },{},{} +1981,Krieger_Whip1,Glorious Lariat,5,20,,0,50,,2,0,0x00080000,63,0,2,4,80,1,14,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; },{},{} 1982,Phenomena_Whip,Phenomena Whip,5,20,,0,160,,2,0,0x00080000,63,0,2,4,0,0,14,{ bonus bDex,2; bonus2 bSkillAtk,"DC_THROWARROW",25; },{},{} 1983,Rante_C,Rante Whip,5,0,,0,170,,2,0,0x00080000,63,0,2,3,1,0,14,{ bonus2 bAddSize,Size_All,40; },{},{} 1984,Stem_Whip,Stem Whip,5,20,,800,170:50,,1,1,0x00080000,63,0,2,3,102,1,14,{ .@r = getrefine(); if(.@r>5) { bonus2 bSkillUseSP,"WA_SWING_DANCE",(.@r-5)*4; bonus2 bSkillUseSP,"WM_LULLABY_DEEPSLEEP",(.@r-5)*4; } bonus2 bSkillVariableCast,"WA_SWING_DANCE",-2000; bonus2 bSkillVariableCast,"WM_LULLABY_DEEPSLEEP",-2000; },{},{} 1985,Rosebine,Rosebine,5,20,,1000,100:130,,1,0,0x00080000,63,0,2,4,110,1,14,{ bonus bInt,2; bonus bAgi,-2; bonus3 bAutoSpell,"WM_VOICEOFSIREN",1,20; },{},{} 1986,P_Tail1,Eden Tail I,5,0,,0,125,,2,0,0x00080000,63,0,2,3,60,0,14,{},{},{} +1987,TE_Woe_Rope,TE Woe Rope,5,0,,0,100,,2,0,0x00080000,63,0,2,3,40,1,14,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Blind,3000; },{},{} 1988,Tanos_Whip_Sword,Tanos Whip Sword,5,10,,2200,200:130,,,1,0x00080000,63,0,2,4,120,1,14,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bLongAtkRate,20; bonus2 bHPLossRate,100,10000; },{},{} -// 1989,Rhythmic_Gymnastics_Ribbon,Rhythmic Gymnastics Ribbon,5,20,,300,150:120,,2,2,0x00080000,63,0,2,3,130,1,13,{ bonus bAspdRate,20; },{},{} 1990,Bloody_Floral_Decoration_Microphone,Bloody Floral Decoration Microphone,5,20,,1000,160,,2,2,0x00080000,63,0,2,4,130,1,13,{ bonus2 bSkillUseSP,"CG_MOONLIT",-20; },{},{} 1991,Blue_Whip,Blue Whip,5,10,,1500,180,,2,1,0x00080000,63,0,2,3,100,1,14,{ bonus bDex,5; bonus bVit,5; },{},{} +1992,Ru_Gold_Whip,Ru Gold Whip,5,0,,1500,180,,2,2,0x00080000,56,2,2,3,120,1,14,{ bonus bDex,8; bonus bVit,8; },{},{} 1994,Infinity_Whip,Infinity Whip,5,10,,500,150,,2,1,0x00080000,63,0,2,4,100,1,14,{},{},{} +1995,Crimson_Whip,Crimson Whip,5,20,,800,80,,2,2,0x00080000,63,0,2,3,70,1,14,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{} +//=================================================================== // Additional 2-Handed Staffs +//=================================================================== 2000,Destruction_Rod,Staff of Destruction,5,20,,2500,130:280,,1,1,0x00000200,18,2,34,4,80,1,23,{ .@r = getrefine; bonus bMatkRate,.@r/2; bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(.@r*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(.@r*20); bonus2 bVariableCastrate,"HW_MAGICPOWER",-50; },{},{} 2001,Divine_Cross,Divine Cross,5,20,,1500,120:210,,1,0,0x00008100,63,2,34,4,70,1,23,{ bonus bAtkEle,Ele_Holy; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15; },{},{} -2002,Krieger_Twohand_Staff1,Glorious Destruction Staff,5,20,,0,70:210,,1,0,0x00018314,63,2,34,4,80,1,23,{ .@r = getrefine(); bonus bMatkRate,.@r; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player,25; bonus bUnbreakableWeapon,0; if(.@r>5) { bonus2 bMagicAddRace,RC_DemiHuman,(((.@r>14)?14:.@r)-5)*2; bonus2 bMagicAddRace,RC_Player,(((.@r>14)?14:.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(((.@r>14)?14:.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_Player,5+(((.@r>14)?14:.@r)-5)*2; } if(.@r>8) { bonus5 bAutoSpellOnSkill,"WZ_STORMGUST","MG_SAFETYWALL",10,200,1; bonus5 bAutoSpellOnSkill,"WZ_METEOR","MG_SAFETYWALL",10,200,1; bonus5 bAutoSpellOnSkill,"WZ_VERMILION","MG_SAFETYWALL",10,200,1; } },{},{} +2002,Krieger_Twohand_Staff1,Glorious Destruction Staff,5,20,,0,70:210,,1,0,0x00018314,63,2,34,4,80,1,23,{ .@r = getrefine(); bonus bMatkRate,.@r; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player,25; bonus bUnbreakableWeapon,1; if(.@r>5) { bonus2 bMagicAddRace,RC_DemiHuman,(((.@r>14)?14:.@r)-5)*2; bonus2 bMagicAddRace,RC_Player,(((.@r>14)?14:.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(((.@r>14)?14:.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_Player,5+(((.@r>14)?14:.@r)-5)*2; } if(.@r>8) { bonus5 bAutoSpellOnSkill,"WZ_STORMGUST","MG_SAFETYWALL",10,200,1; bonus5 bAutoSpellOnSkill,"WZ_METEOR","MG_SAFETYWALL",10,200,1; bonus5 bAutoSpellOnSkill,"WZ_VERMILION","MG_SAFETYWALL",10,200,1; } },{},{} 2003,Destruction_Rod_M,Staff of Destruction,5,20,,2500,130:280,,1,1,0x00000200,18,2,34,4,80,1,23,{ .@r = getrefine(); bonus bMatkRate,.@r/2; bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(.@r*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(.@r*20); bonus2 bVariableCastrate,"HW_MAGICPOWER",-50; },{},{} 2004,Kronos,Kronos,5,20,,1000,30:240,,1,0,0x00010204,18,2,34,4,50,1,23,{ .@r = getrefine(); bonus bInt,3+(.@r/2); bonus bMaxHP,300+(50*.@r/2); autobonus "{ bonus bMatkRate,12; bonus buseSPRate,20; }",1,5000,BF_MAGIC,"{ specialeffect2 EF_ENHANCE; }"; },{},{} 2005,Dea_Staff,Dea Staff,5,20,,1000,30:220,,1,1,0x00008110,18,2,34,3,50,1,23,{ bonus bAtkEle,Ele_Holy; bonus bMatkRate,getrefine()/2; bonus bInt,6; bonus bVit,2; autobonus3 "{ }",20,1000,"AL_HEAL","{ specialeffect2 EF_MAGICALATTHIT; heal 0,200; }"; },{},{} @@ -1181,17 +1240,22 @@ 2008,Aqua_Staff,Aqua Staff,5,20,,900,30:230,,1,2,0x00000200,63,2,34,4,100,1,23,{ bonus bAtkEle,Ele_Water; bonus bInt,3; bonus2 bSkillAtk,"MG_COLDBOLT",12; bonus2 bSkillAtk,"MG_FROSTDIVER",12; },{},{} 2009,Crimson_Staff,Crimson Staff,5,20,,900,30:230,,1,2,0x00000200,63,2,34,4,100,1,23,{ bonus bAtkEle,Ele_Fire; bonus bInt,3; bonus2 bSkillAtk,"MG_FIREBOLT",10; bonus2 bSkillAtk,"MG_FIREBALL",10; },{},{} 2010,Forest_Staff,Forest Staff,5,20,,900,30:230,,1,2,0x00000200,63,2,34,4,100,1,23,{ bonus bAtkEle,Ele_Earth; bonus bInt,3; bonus2 bSkillAtk,"WZ_EARTHSPIKE",10; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",10; },{},{} -2011,Golden_Rod_Staff2,Empowered Golden Rod Staff,5,20,,900,30:270,,1,1,0x00000200,63,2,34,4,130,1,10,{ bonus bAtkEle,Ele_Wind; bonus bInt,5; bonus2 bSkillAtk,"WZ_JUPITEL",30; },{},{} -2012,Aqua_Staff2,Empowered Aqua Staff,5,20,,900,30:270,,1,1,0x00000200,63,2,34,4,130,1,10,{ bonus bAtkEle,Ele_Water; bonus bInt,5; bonus2 bSkillAtk,"MG_COLDBOLT",30; bonus2 bSkillAtk,"MG_FROSTDIVER",30; },{},{} -2013,Crimson_Staff2,Empowered Crimson Staff,5,20,,900,30:270,,1,1,0x00000200,63,2,34,4,130,1,10,{ bonus bAtkEle,Ele_Fire; bonus bInt,5; bonus2 bSkillAtk,"MG_FIREBOLT",30; bonus2 bSkillAtk,"MG_FIREBALL",30; },{},{} -2014,Forest_Staff2,Empowered Forest Staff,5,20,,900,30:270,,1,1,0x00000200,63,2,34,4,130,1,10,{ bonus bAtkEle,Ele_Earth; bonus bInt,5; bonus2 bSkillAtk,"WZ_EARTHSPIKE",30; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",30; },{},{} -2015,Upg_Staff,Upg Staff,5,20,,1000,50:70,,1,1,0x00818314,63,2,34,3,1,1,10,{ .@r = getrefine(); bonus bMatk,(.@r*10); bonus bHealPower,.@r; if(BaseJob==Job_Wizard) bonus bMatk,30; else if(BaseJob==Job_Sage) bonus bMatk,20; if(BaseLevel>70) bonus bMatk,(((BaseLevel-70)/10)*10); },{},{} -2016,Velum_Arc_Wand,Vellum Arc Wand,5,20,,800,110:220,,1,0,0x00818314,63,2,34,4,95,1,10,{ bonus bUnbreakableWeapon,0; bonus2 bMagicAddRace,RC_Player,25; bonus2 bIgnoreMdefRaceRate,RC_Player,25; .@r = getrefine(); if(.@r>5) { bonus2 bMagicAddRace,RC_Player,15; } if(.@r>8) { bonus bVariableCastrate,-50; bonus bFixedCast,-200; } },{},{} -2017,Divine_Cross_,Divine Cross,5,20,,1500,120:210,,1,0,0x00008100,63,2,34,4,70,1,23,{ bonus bUnbreakableWeapon,0; bonus bAtkEle,Ele_Holy; bonus bDex,4; },{},{} -2018,Metal_Staff,Metal Staff,5,20,,0,50:70,,1,1,0x00818315,63,2,34,3,1,1,23,{ bonus bUnbreakableWeapon,0; if(BaseJob==Job_Wizard) bonus bMatk,15; else if(BaseJob==Job_Sage) bonus bMatk,10; bonus bMatk,(getrefine()*5); set .@i,((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bMatk,((.@i-2)*5); },{},{} -2020,Jormungand,Jormungand,5,10,,3000,200,,,0,0x810200,63,2,2,4,1,,10,{ bonus bMatk,280; bonus bInt,20; bonus bUnbreakableWeapon,1; },{},{} -2023,Tanos_Two-handed_Stick,Tanos Two-handed Stick,5,10,,1400,120:250,,,1,0x810200,63,2,2,4,120,1,23,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,18; bonus2 bHPLossRate,100,10000; },{},{} -2024,Infinity_Two-handed_Stick,Infinity Two-handed Stick,5,10,,500,30,,,1,0x810200,63,2,2,4,100,1,23,{ bonus bMatk,170; },{},{} +2011,Golden_Rod_Staff2,Empowered Golden Rod Staff,5,20,,900,30:270,,1,1,0x00000200,63,2,34,4,130,1,23,{ bonus bAtkEle,Ele_Wind; bonus bInt,5; bonus2 bSkillAtk,"WZ_JUPITEL",30; },{},{} +2012,Aqua_Staff2,Empowered Aqua Staff,5,20,,900,30:270,,1,1,0x00000200,63,2,34,4,130,1,23,{ bonus bAtkEle,Ele_Water; bonus bInt,5; bonus2 bSkillAtk,"MG_COLDBOLT",30; bonus2 bSkillAtk,"MG_FROSTDIVER",30; },{},{} +2013,Crimson_Staff2,Empowered Crimson Staff,5,20,,900,30:270,,1,1,0x00000200,63,2,34,4,130,1,23,{ bonus bAtkEle,Ele_Fire; bonus bInt,5; bonus2 bSkillAtk,"MG_FIREBOLT",30; bonus2 bSkillAtk,"MG_FIREBALL",30; },{},{} +2014,Forest_Staff2,Empowered Forest Staff,5,20,,900,30:270,,1,1,0x00000200,63,2,34,4,130,1,23,{ bonus bAtkEle,Ele_Earth; bonus bInt,5; bonus2 bSkillAtk,"WZ_EARTHSPIKE",30; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",30; },{},{} +2015,Upg_Staff,Upg Staff,5,20,,1000,50:70,,1,1,0x00818314,63,2,34,3,1,1,23,{ .@r = getrefine(); bonus bMatk,(.@r*10); bonus bHealPower,.@r; if(BaseJob==Job_Wizard) bonus bMatk,30; else if(BaseJob==Job_Sage) bonus bMatk,20; if(BaseLevel>70) bonus bMatk,(((BaseLevel-70)/10)*10); },{},{} +2016,Velum_Arc_Wand,Vellum Arc Wand,5,20,,800,110:220,,1,0,0x00818314,63,2,34,4,95,1,23,{ bonus bUnbreakableWeapon,1; bonus2 bMagicAddRace,RC_Player,25; bonus2 bIgnoreMdefRaceRate,RC_Player,25; .@r = getrefine(); if(.@r>5) { bonus2 bMagicAddRace,RC_Player,15; } if(.@r>8) { bonus bVariableCastrate,-50; bonus bFixedCast,-200; } },{},{} +2017,Divine_Cross_,Divine Cross,5,20,,1500,120:210,,1,1,0x00008100,63,2,34,4,70,1,23,{ bonus bUnbreakableWeapon,1; bonus bAtkEle,Ele_Holy; bonus bDex,4; },{},{} +2018,Metal_Staff,Metal Staff,5,20,,0,50:70,,1,1,0x00818315,63,2,34,3,1,1,23,{ if(BaseJob==Job_Wizard) bonus bMatk,15; else if(BaseJob==Job_Sage) bonus bMatk,10; bonus bMatk,(getrefine()*5); .@i = ((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bMatk,((.@i-2)*5); },{},{} +2019,TE_Woe_Two_Hand_Staff,TE Woe Two Hand Staff,5,0,,0,50:130,,1,0,0x00818315,63,2,34,3,40,1,23,{ bonus2 bMagicAddRace,RC_Player,20; bonus3 bAddEff,Eff_Stun,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5; },{},{} +2020,Jormungand,Jormungand,5,10,,3000,200,,,0,0x810200,63,2,34,4,1,,23,{ bonus bMatk,280; bonus bInt,20; bonus bUnbreakableWeapon,1; },{},{} +2021,Ganbantein,Ganbantein,5,0,,2000,100:320,,1,0,0x00000200,56,2,2,4,100,1,10,{ bonus bInt,25; bonus bDex,25; bonus3 bAddEff,Eff_Poison,1000,ATF_MAGIC; bonus3 bAutoSpell,"AB_SILENTIUM",1,100; bonus bUnbreakableWeapon,1; },{},{} +2023,Tanos_Two-handed_Stick,Tanos Two-handed Stick,5,10,,1400,120:250,,,1,0x810200,63,2,34,4,120,1,23,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,18; bonus2 bHPLossRate,100,10000; },{},{} +2024,Infinity_Two-handed_Stick,Infinity Two-handed Stick,5,10,,500,30,,,1,0x810200,63,2,34,4,100,1,23,{ bonus bMatk,170; },{},{} +2025,Crimson_Two-Handed_Staff,Crimson Two-Handed Staff,5,20,,1000,100,,1,2,0x000014,63,2,34,3,70,1,23,{ .@r = getrefine(); bonus bInt,5; bonus bMatk,150+((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{} +2027,Sunflower_Kid,Sunflower Kid,5,10,,1500,150,,,2,0x00000200,40,2,34,4,170,1,23,{ bonus bMatk,320; bonus bInt,5; .@r = getrefine(); bonus bMatkRate,(.@r/2); bonus bDelayrate,(.@r*-1); bonus bUnbreakableWeapon,1; },{},{} +//=================================================================== // Shields //=================================================================== 2101,Guard,Guard,4,500,,300,,20,,0,0xFFFFFFFF,63,2,32,,0,1,1,{},{},{} @@ -1204,7 +1268,7 @@ 2108,Mirror_Shield_,Mirror Shield,4,60000,,1000,,45,,1,0x00404082,63,2,32,,0,1,4,{ bonus bMdef,5; },{},{} 2109,Memorize_Book,Memory Book,4,20,,1000,,25,,0,0x00810204,63,2,32,,0,1,5,{ bonus bInt,1; bonus bMdef,2; },{},{} 2110,Holy_Guard,Holy Guard,4,85000,,1400,,110,,0,0x00004000,63,2,32,,68,0,4,{ bonus bVit,2; bonus bMdef,2; },{},{} -2111,Herald_Of_GOD,Sacred Mission,4,128000,,1600,,120,,0,0x00004000,63,2,32,,83,1,4,{ bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield,0; },{},{} +2111,Herald_Of_GOD,Sacred Mission,4,128000,,1600,,120,,0,0x00004000,63,2,32,,83,1,4,{ bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield,1; },{},{} 2112,Novice_Guard,Novice Guard,4,1,,1,,20,,0,0x00000001,63,2,32,,0,0,1,{},{},{} 2113,Novice_Shield,Novice Shield,4,5000,,1000,,20,,1,0x00000001,63,2,32,,40,1,3,{ bonus2 bSubEle,Ele_All,20; bonus2 bSubEle,Ele_Neutral,-20; bonus2 bSubEle,Ele_Holy,-20; bonus2 bSubEle,Ele_Dark,-20; },{},{} 2114,Stone_Buckler,Stone Buckler,4,30000,,1500,,45,,1,0xFFFFFFFE,63,2,32,,65,1,2,{ bonus2 bSubSize,Size_Large,5; },{},{} @@ -1221,7 +1285,7 @@ 2125,Strong_Shield,Strong Shield,4,20,,2500,,90,,1,0xFFFFFFFE,18,2,32,,75,1,4,{ bonus bNoKnockback,0; bonus2 bSubEle,Ele_Neutral,-20; bonus2 bSubEle,Ele_Fire,-20; bonus2 bSubEle,Ele_Water,-20; bonus2 bSubEle,Ele_Wind,-20; bonus2 bSubEle,Ele_Earth,-20; bonus2 bSubEle,Ele_Dark,-20; bonus2 bSubEle,Ele_Holy,-20; bonus2 bSubEle,Ele_Ghost,-20; },{},{} 2126,Guyak_Shield,Guyak Shield,4,20,,700,,3,,0,0xFFFFFFFE,63,2,32,,1,1,2,{ bonus bMdef,2; bonus bMagicDamageReturn,2; autobonus2 "{ bonus bShortWeaponDamageReturn,5; }",20,1000,BF_WEAPON,"{ specialeffect2 EF_REFLECTSHIELD; }"; },{},{} 2127,Secular_Mission,Secular Mission,4,20,,0,,10,,0,0xFFFFFFFF,63,2,32,,0,0,4,{ bonus2 bSubClass,Class_All,25; },{},{} -2128,Herald_Of_GOD_,Sacred Mission,4,128000,,1600,,120,,1,0x00004000,63,2,32,,83,1,4,{ bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield,0; },{},{} +2128,Herald_Of_GOD_,Sacred Mission,4,128000,,1600,,120,,1,0x00004000,63,2,32,,83,1,4,{ bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield,1; },{},{} 2129,Exorcism_Bible,Exorcism Bible,4,20,,600,,80,,0,0x00008100,63,2,32,,50,1,5,{ bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1; },{},{} 2130,Cross_Shield,Cross Shield,4,20,,2000,,130,,1,0x00004000,63,2,32,,80,1,4,{ bonus bStr,1; bonus2 bSkillAtk,"PA_SHIELDCHAIN",30; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",30; bonus bUseSPrate,10; },{},{} 2131,Magic_Study_Vol1,Magic Bible Vol1,4,20,,1000,,18,,1,0x00810204,18,2,32,,70,1,5,{ bonus bMdef,3; bonus bInt,2; bonus2 bAddEffWhenHit,Eff_Stun,1000; },{},{} @@ -1246,14 +1310,14 @@ 2150,Upg_Buckler,Upg Buckler,4,20,,300,,45,,1,0x000ED5F2,63,2,32,,1,1,2,{ bonus bMaxHPrate,3; },{},{} 2151,Upg_Shield,Upg Shield,4,20,,650,,65,,1,0x00004082,63,2,32,,1,1,3,{ bonus bMaxHPrate,3; },{},{} 2152,Anti_Demon_Shield_C,Anti-Demon Shield,4,0,,0,,120,,0,0xFFFFFFFF,63,2,32,,1,0,3,{ bonus2 bSubRace,RC_DemiHuman,25; bonus2 bSubRace,RC_Player,25; bonus2 bSubRace,RC_Demon,25; bonus bMaxHP,400; },{},{} -2153,Imperial_Guard,Imperial Guard,4,20,,2500,,120,,1,0x00004000,63,2,32,,102,1,4,{ .@r = getrefine(); bonus bMdef,5; if(.@r>=6){ bonus2 bSkillAtk,"LG_SHIELDPRESS",20+((.@r-5)*2); } else { bonus2 bSkillAtk,"LG_SHIELDPRESS",20; } },{},{} +2153,Imperial_Guard,Imperial Guard,4,20,,2500,,120,,1,0x00004000,63,2,32,,102,1,4,{ .@r = getrefine(); bonus bMdef,5; bonus2 bSkillAtk,"LG_SHIELDPRESS",(.@r>=6?20+((.@r-5)*2):20); },{},{} 2154,Toy_Shield,Toy Shield,4,0,,500,,1,,1,0xFFFFFFFF,63,2,32,,10,1,1,{},{},{} 2155,Academy_Shield,Academy Shield,4,0,,1500,,3,,1,0xFFFFFFFE,63,2,32,,0,1,4,{},{},{} 2156,Bible_Of_Promise1,Bible of Promise(1st Vol.),4,20,,500,,10,,1,0x00000100,63,2,32,,110,1,5,{ skill "ALL_ODINS_POWER",1; },{},{} -2157,Insecticide,Pesticide,4,20,,100,,0,,0,0xFFFFFFFF,63,2,32,,0,1,0,{},{},{} +2157,Insecticide,Pesticide,4,20,,100,,0,,0,0xFFFFFFFF,63,2,32,,0,1,3,{},{},{} 2158,Ramor_Shield_Undead,Ramorushirudo,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ bonus2 bSubRace,Ele_Undead,5; bonus2 bSubRace,RC_DemiHuman,-5; },{},{} 2159,Sharel_Shield,Sharerushirudo,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{},{},{} -2160,Giant_Shield,Giant Shield,4,56000,,2800,,130,,1,0x00004082,63,2,32,,100,1,4,{ bonus2 bSubSize,Size_Large,5; if(getrefine()>=9){ bonus2 bSubSize,Size_Large,5; } },{},{} +2160,Giant_Shield,Giant Shield,4,56000,,2800,,130,,1,0x00004082,63,2,32,,100,1,3,{ bonus2 bSubSize,Size_Large,5; if(getrefine()>=9){ bonus2 bSubSize,Size_Large,5; } },{},{} 2161,Geffenia_Book_Water,Geffenia Tomb of Water,4,56000,,1000,,30,,1,0x00000200,63,2,32,,100,1,5,{ bonus bMdef,2; bonus bInt,1; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bMaxHP,800; } },{},{} 2162,Bible_Of_Promise2,Bible of Promise(2nd Vol.),4,20,,500,,20,,1,0x00000100,63,2,32,,140,1,5,{ bonus bMdef,5; skill "ALL_ODINS_POWER",2; bonus bHealPower,5; },{},{} 2163,Flow_Shield,Floor Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{},{},{} @@ -1261,7 +1325,7 @@ 2165,Sol_Shield,Sol Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{},{},{} 2166,Exorcism_Bible_,Devil's Bible Drive,4,20,,600,,80,,1,0x00008100,63,2,32,,50,1,5,{ bonus bInt,1; },{},{} 2167,Poison_Shield,Poison Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{},{},{} -2168,Immuned_Shield,Immune Shield,4,20,,700,,55,,1,0xFFFFFFFF,63,2,32,,1,1,1,{ .@r = getrefine(); if (.@r>5) bonus2 bSubEle,Ele_Neutral,((.@r>12)?12:.@r)-5; },{},{} +2168,Immuned_Shield,Immune Shield,4,20,,700,,55,,1,0xFFFFFFFF,63,2,32,,1,1,4,{ .@r = getrefine(); if (.@r>5) bonus2 bSubEle,Ele_Neutral,((.@r>12)?12:.@r)-5; },{},{} 2169,Kalasak,Kalasag,4,20,,400,,40,,0,0xFFFFFFFF,63,2,32,,1,1,1,{ bonus2 bSubClass,Class_Boss,getrefine()/3; },{},{} 2170,Bayani_Kalasak,Bayani Kalasag,4,20,,400,,40,,1,0xFFFFFFFF,63,2,32,,1,1,1,{ bonus2 bSubClass,Class_Boss,getrefine()/3; },{},{} 2171,Fox_Armguard,Fox Wrist Guard,4,40000,,200,,45,,1,0x02000000,63,2,32,,100,1,1,{ bonus bFlee,5; },{},{} @@ -1269,19 +1333,24 @@ 2173,Crescent_Armguard,Crescent Wrist Guard,4,45000,,250,,45,,1,0x02000000,63,2,32,,100,1,1,{ bonus bDelayRate,-(getrefine()*2); },{},{} 2174,Lumiere_Shield,Lumiere Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{},{},{} 2175,Esprit_Shield,Spirit Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{},{},{} -2176,Dark_Book,Black Book,4,20,,500,,80,,1,0xFFFFFFFF,63,2,32,,65,1,5,{ bonus bMdef,5; .@r = getrefine(); if (.@r<=6) set .@rate,10; else if (.@r<=8) set .@rate,20; else set .@rate,30; bonus3 bAutoSpellWhenHit,"NPC_DRAGONFEAR",1,.@rate; },{},{} +2176,Dark_Book,Black Book,4,20,,500,,80,,1,0xFFFFFFFF,63,2,32,,65,1,5,{ bonus bMdef,5; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_DRAGONFEAR",1,(.@r<=6)?(10):((.@r<=8)?(20):(30)); },{},{} 2177,Shield_Of_Death,Shield Of Death,4,20,,2000,,150,,1,0xFFFFFFFF,63,2,32,,90,1,3,{ bonus2 bAddClass,Class_Boss,2; bonus2 bMagicAddClass,Class_Boss,2; bonus2 bAddClass,Class_Normal,10; bonus2 bMagicAddClass,Class_Normal,10; },{},{} -// -2181,Hervor,Hervor,4,10,,1500,,100,,0,0xFFFFFFFF,63,2,32,,1,,,{ bonus bMdef,5; bonus2 bSubRace,RC_All,30; bonus bUnbreakableArmor,1; },{},{} +2178,TE_Woe_Buckler,TE Woe Buckler,4,0,,0,,15,,0,0xFFFFFFFF,63,2,32,1,40,1,,{ bonus bMdef,15; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_Player,15; },{},{} +2179,TE_Woe_Shield,TE Woe Shield,4,0,,0,,25,,0,0x000444A2,63,2,32,1,40,1,,{ bonus bMdef,5; bonus bMaxHP,200; bonus2 bSubRace,RC_Player,20; },{},{} +2180,TE_Woe_Magic_Guard,TE Woe Magic Guard,4,0,,0,,5,,0,0x00818315,63,2,32,1,40,1,,{ bonus bMdef,25; bonus bMaxSP,200; bonus2 bSubRace,RC_Player,10; },{},{} +2181,Hervor,Hervor,4,10,,1500,,100,,0,0xFFFFFFFF,63,2,32,,1,,2,{ bonus bMdef,5; bonus2 bSubRace,RC_All,30; bonus bUnbreakableArmor,1; },{},{} +2182,Hervor_Alvitr,Hervor Alvitr,4,0,,3000,,150,,0,0x000FDF80,56,2,32,1,100,0,,{ bonus bMdef,10; bonus bVit,20; bonus2 bSubRace,RC_Player,30; bonus bUnbreakableShield,1; autobonus2 "{ sc_end SC_STUN; sc_end SC_SLEEP; sc_end SC_CURSE; sc_end SC_STONE; sc_end SC_POISON; sc_end SC_BLIND; sc_end SC_SILENCE; sc_end SC_BLEEDING; sc_end SC_CONFUSION; sc_end SC_FREEZE; bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Sleep,10000; bonus2 bResEff,Eff_Curse,10000; bonus2 bResEff,Eff_Stone,10000; bonus2 bResEff,Eff_Poison,10000; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Silence,10000; bonus2 bResEff,Eff_Bleeding,10000; bonus2 bResEff,Eff_Confusion,10000; bonus2 bResEff,Eff_Freeze,10000; }",10,60000,BF_SHORT; },{},{} 2183,Impr_Angel's_Safeguard,Advanced Angelic Guard,4,10000,,400,,30,,1,0x00000001,63,2,32,,99,1,1,{ bonus2 bSubRace,RC_Demon,5; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; },{},{} -2185,Magic_Reflect,Magic Reflect,4,10,,1000,,50,,1,0xFFFFFFFF,63,2,32,,99,1,1,{ bonus bMdef,10; bonus bMagicDamageReturn,3+((getrefine()>=9) ? 3 : 0); },{},{} -2186,Great_Encyclopedia_Revision,Great Encyclopedia Revision,4,10,,200,0:5,50,,1,0x00810100,63,2,32,,99,1,1,{ bonus bInt,3; bonus bDex,2; .@r = getrefine(); bonus bCritical,3+((.@r >= 7) ? 2 : 0); if(.@r >= 9) bonus bMatk,5; },{},{} -2187,Black_As_Night_Shield,Black As Night Shield,4,10,,2000,,75,,1,0xFFFFFFFF,56,2,2,,120,1,1,{ .@r = getrefine(); bonus2 bSubEle,Ele_Holy,30+.@r; bonus bMdef,9+.@r/3; },{},{} -2188,Svalinn,Svalinn,4,10,,500,,80,,0,0xFFFFFFFF,63,2,32,,65,1,,{ .@r = getrefine(); bonus bMaxHP,9+.@r/3; bonus2 bAddEle,Ele_Water,4+.@r/3*5; },{},{} -// +2185,Magic_Reflect,Magic Reflect,4,10,,1000,,50,,1,0xFFFFFFFF,63,2,32,,99,1,3,{ bonus bMdef,10; bonus bMagicDamageReturn,3+((getrefine()>=9) ? 3 : 0); },{},{} +2186,Great_Encyclopedia_Revision,Great Encyclopedia Revision,4,10,,200,0:5,50,,1,0x00810100,63,2,32,,99,1,4,{ bonus bInt,3; bonus bDex,2; .@r = getrefine(); bonus bCritical,3+((.@r >= 7) ? 2 : 0); if(.@r >= 9) bonus bMatk,5; },{},{} +2187,Black_As_Night_Shield,Black As Night Shield,4,10,,2000,,75,,1,0xFFFFFFFF,56,2,32,,120,1,3,{ .@r = getrefine(); bonus2 bSubEle,Ele_Holy,30+.@r; bonus bMdef,9+.@r/3; },{},{} +2188,Svalinn,Svalinn,4,10,,500,,80,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ .@r = getrefine(); bonus bMaxHP,9+.@r/3; bonus2 bAddEle,Ele_Water,4+.@r/3*5; },{},{} 2190,Ancient_Shield_Of_Aeon,Ancient Shield Of Aeon,4,0,,200,,5,,1,0x000FDF80,63,2,32,,130,1,2,{ bonus2 bSubEle,Ele_Neutral,10; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Dark,10; bonus2 bSubEle,Ele_Holy,10; bonus2 bSubEle,Ele_Ghost,10; bonus bMaxHP,500; bonus bMaxSP,50; if(getrefine()>=14) skill "MG_STONECURSE",5; },{},{} +2196,White_Gold_Shield,White Gold Shield,4,0,,1800,,140,,1,0xFFFFFFFF,63,2,32,,,1,,{ autobonus2 "{ bonus bMagicDamageReturn,20; }",100,2000,BF_MAGIC; /* Confirm: Success rate? */ },{},{} +2198,Lapine_Shield,Lapine Shield,4,0,,1000,,25,,1,0xFFFFFFFF,63,2,32,,100,1,,{ bonus bMdef,10; if (getrefine() > 7) { bonus bMatk,20; } },{},{} // GM Shield -2199,Ahura_Mazda,Ahura Mazdah,4,1,,10,,10000,,0,0xFFFFFFFF,63,2,32,,1,1,0,{ bonus bAllStats,50; bonus bMdef,99; bonus bShortWeaponDamageReturn,100; bonus2 bSubRace,RC_DemiHuman,95; bonus2 bSubRace,RC_Player,95; skill "CR_FULLPROTECTION",5; skill "WZ_ESTIMATION",1; skill "ST_FULLSTRIP",5; skill "HW_MAGICPOWER",10; skill "ECL_SNOWFLIP",1; skill "ECL_PEONYMAMY",1; skill "ECL_SADAGUI",1; skill "ECL_SEQUOIADUST",1; bonus bMaxHPrate,200; bonus bNoKnockback,0; bonus bDelayRate,-20; bonus bSpeedRate,25; bonus bIntravision,0; },{ sc_start4 SC_ENDURE,60000,10,0,0,1; },{ sc_end SC_ENDURE; } +2199,Ahura_Mazda,Ahura Mazdah,4,1,,10,,10000,,0,0xFFFFFFFF,63,2,32,,1,1,1,{ bonus bAllStats,50; bonus bMdef,99; bonus bShortWeaponDamageReturn,100; bonus2 bSubRace,RC_DemiHuman,95; bonus2 bSubRace,RC_Player,95; skill "CR_FULLPROTECTION",5; skill "WZ_ESTIMATION",1; skill "ST_FULLSTRIP",5; skill "HW_MAGICPOWER",10; skill "ECL_SNOWFLIP",1; skill "ECL_PEONYMAMY",1; skill "ECL_SADAGUI",1; skill "ECL_SEQUOIADUST",1; bonus bMaxHPrate,200; bonus bNoKnockback,0; bonus bDelayRate,-20; bonus bSpeedRate,25; bonus bIntravision,0; },{ sc_start4 SC_ENDURE,60000,10,0,0,1; },{ sc_end SC_ENDURE; } +//=================================================================== // Headgears //=================================================================== 2201,Sunglasses,Sunglasses,4,5000,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,12,{ bonus2 bResEff,Eff_Blind,500; },{},{} @@ -1329,7 +1398,7 @@ 2243,Spinning_Eyes,Geek Glasses,4,20000,,100,,1,,0,0xFFFFFFFF,63,2,512,,0,0,27,{ bonus2 bResEff,Eff_Blind,1500; },{},{} 2244,Big_Sis'_Ribbon,Big Ribbon,4,15000,,200,,3,,0,0xFFFFFFFE,63,2,256,,0,1,28,{ bonus bMdef,3; },{},{} 2245,Sweet_Gents,Sweet Gent,4,15000,,400,,5,,0,0xFFFFFFFE,63,2,256,,0,1,29,{},{},{} -2246,Golden_Gear,Golden Gear,4,20,,900,,5,,0,0xFFFFFFFE,63,2,256,,40,1,30,{ bonus bUnbreakableHelm,0; },{},{} +2246,Golden_Gear,Golden Gear,4,20,,900,,5,,0,0xFFFFFFFE,63,2,256,,40,1,30,{ bonus bUnbreakableHelm,1; },{},{} 2247,Oldman's_Romance,Romantic Gent,4,15000,,400,,5,,0,0xFFFFFFFE,63,2,256,,0,1,31,{},{},{} 2248,Western_Grace,Western Grace,4,15000,,400,,5,,0,0xFFFFFFFE,63,2,256,,0,1,32,{},{},{} 2249,Coronet,Coronet,4,20,,300,,5,,0,0xFFFFFFFE,63,2,256,,0,1,33,{ bonus bInt,1; },{},{} @@ -1383,6 +1452,7 @@ 2297,Goblini_Mask,Goblin Mask,4,20,,100,,1,,0,0xFFFFFFFE,63,2,513,,0,0,84,{},{},{} 2298,Green_Feeler,Green Feeler,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,0,85,{},{},{} 2299,Viking_Helm,Orc Helm,4,20,,500,,9,,0,0x000654E2,63,2,256,,0,1,86,{},{},{} +//=================================================================== // Armors //=================================================================== 2301,Cotton_Shirt,Cotton Shirt,4,10,,100,,10,,0,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{} @@ -1441,7 +1511,7 @@ 2354,Goibne's_Armor,Goibne's Armor,4,50000,,3500,,58,,0,0xFFFFFFFE,63,2,16,,54,1,0,{ bonus bVit,2; bonus bMaxHPrate,10; },{},{} 2355,Angel's_Protection,Angelic Protection,4,10000,,600,,25,,1,0x00000001,63,2,16,,40,1,0,{ bonus bMdef,20; },{},{} 2356,Vestment_Of_Grace,Blessed Holy Robe,4,20,,2500,,45,,1,0x00008100,63,2,16,,70,1,0,{ bonus bMdef,5; bonus2 bResEff,Eff_Blind,8000; },{},{} -2357,Valkyrie_Armor,Valkyrian Armor,4,0,,2800,,55,,1,0xFFFFFFFE,18,2,16,,1,1,0,{ bonus bAllStats,1; bonus bUnbreakableArmor,0; if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) bonus2 bResEff,Eff_Silence,5000; else if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) bonus2 bResEff,Eff_Stun,5000; },{},{} +2357,Valkyrie_Armor,Valkyrian Armor,4,0,,2800,,55,,1,0xFFFFFFFE,18,2,16,,1,1,0,{ bonus bAllStats,1; bonus bUnbreakableArmor,1; if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) bonus2 bResEff,Eff_Silence,5000; else if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) bonus2 bResEff,Eff_Stun,5000; },{},{} 2358,Dress_Of_Angel,Angel's Dress,4,20,,1000,,5,,0,0xFFFFFFFF,63,2,16,,0,0,0,{ bonus bLuk,4; },{},{} 2359,Ninja_Suit_,Ninja Suit,4,20,,1500,,58,,1,0x02021040,63,2,16,,50,1,0,{ bonus bAgi,1; bonus bMdef,3; },{},{} 2360,Robe_Of_Casting_,Robe of Cast,4,124800,,1100,,40,,1,0x00810200,63,2,16,,75,1,0,{ bonus bVariableCastrate,-3; bonus bMdef,4; },{},{} @@ -1453,7 +1523,7 @@ 2366,Divine_Cloth,Divine Cloth,4,20,,1500,,50,,1,0xFFFFFFFE,18,2,16,,55,1,0,{ bonus2 bResEff,Eff_Curse,500; bonus2 bResEff,Eff_Silence,500; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Stone,500; bonus2 bResEff,Eff_Sleep,500; },{},{} 2367,Sniping_Suit,Sniping Suit,4,20,,750,,42,,1,0x00000800,18,2,16,,50,1,0,{ bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23; },{},{} 2368,Golden_Armor,Golden Armor,4,20,,2000,,4,,0,0xFFFFFFFF,63,2,16,,0,0,0,{ bonus bMdef,4; },{},{} -2369,Freyja_Overcoat,Freyja Overcoat,4,0,,500,,12,,0,0xFFFFFFFE,63,2,16,,0,0,0,{ bonus bUnbreakableArmor,0; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{} +2369,Freyja_Overcoat,Freyja Overcoat,4,0,,500,,12,,0,0xFFFFFFFE,63,2,16,,0,0,0,{ bonus bUnbreakableArmor,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{} 2370,Used_Mage_Coat,Used Mage Coat,4,0,,0,,15,,0,0xFFFFFFFF,63,2,16,,0,0,0,{ bonus bMaxHP,300; bonus bMaxSP,30; bonus bBaseAtk,10; bonus bAGI,1; },{},{} 2371,G_Strings_,Pantie,4,1000,,100,,22,,1,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{} 2372,Mage_Coat_,Mage Coat,4,20,,600,,40,,1,0x00810204,63,2,16,,50,1,0,{ bonus bMdef,5; bonus bInt,1; },{},{} @@ -1467,7 +1537,7 @@ 2380,Medic_Robe,Medic's Robe,4,10,,0,,25,,1,0x00008110,63,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{} 2381,Elite_Archer_Suit,Elite Archer Suit,4,10,,0,,35,,1,0x00080808,63,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{} 2382,Elite_Shooter_Suit,Elite Shooter Suit,4,10,,0,,25,,1,0x41000000,63,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{} -2383,Brynhild,Brynhild,4,20,,400,,120,,0,0xFFFFFFFF,63,2,16,,94,0,0,{ bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bUnbreakableArmor,0; bonus bNoKnockback,0; },{},{} +2383,Brynhild,Brynhild,4,20,,400,,120,,0,0xFFFFFFFF,63,2,16,,94,0,0,{ bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bUnbreakableArmor,1; bonus bNoKnockback,0; },{},{} 2384,Spritual_Tunic,Spiritual Tunic,4,20,,0,,10,,0,0xFFFFFFFF,63,2,16,,0,0,0,{ bonus bMaxHP,800; bonus2 bResEff,Eff_Freeze,10000; bonus2 bSubEle,Ele_Earth,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Wind,20; bonus2 bSubEle,Ele_Poison,20; bonus2 bSubEle,Ele_Holy,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Ghost,20; bonus2 bSubEle,Ele_Undead,20; },{},{} 2385,Recuperative_Armor,Recuperative Armor,4,20,,0,,12,,0,0xFFFFFFFF,63,2,16,,0,0,0,{ bonus bNoRegen,1; bonus bNoRegen,2; bonus bHPGainValue,60; bonus bSPGainValue,6; bonus bMagicHPGainValue,60; bonus bMagicSPGainValue,6; },{},{ heal 0,-100; } 2386,Chameleon_Armor,Chameleon Armor,4,20,,1700,,55,,0,0x00CFFF80,18,2,16,,70,1,0,{ bonus bMaxHP,(BaseLevel*7); bonus bMaxSP,(BaseLevel/2); autobonus2 "{ bonus bNoMagicDamage,100; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_ENERGYCOAT; }"; if( BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte ) bonus bMdef,5; else if( BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief ) bonus bDef,3; },{},{} @@ -1484,6 +1554,7 @@ 2397,Incredible_Coat,Incredible Event Resignation Coat,4,10,,900,,2,,0,0xFFFFFFFE,63,2,16,,0,1,0,{},{},{} 2398,Sniping_Suit_M,Sniping Suit,4,20,,750,,42,,1,0x00000800,18,2,16,,50,1,0,{ bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23; },{},{} 2399,Dragon_Vest,Dragon Vest,4,20,,500,,20,,1,0xFFFFFFFE,18,2,16,,0,1,0,{ bonus bMdef,3; },{},{} +//=================================================================== // Footgears //=================================================================== 2401,Sandals,Sandals,4,400,,200,,5,,0,0xFFFFFFFF,63,2,64,,0,1,0,{},{},{} @@ -1506,7 +1577,7 @@ 2418,Vidar's_Boots,Vidar's Boots,4,30000,,650,,13,,0,0xFFFFFFFE,63,2,64,,65,1,0,{ bonus bMaxHPrate,9; bonus bMaxSPrate,9; },{},{} 2419,Goibne's_Combat_Boots,Goibne's Greaves,4,30000,,700,,13,,0,0xFFFFFFFE,63,2,64,,54,1,0,{ bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; },{},{} 2420,Angel's_Arrival,Angel's Reincarnation,4,10000,,300,,8,,1,0x00000001,63,2,64,,25,1,0,{ bonus bMaxHP,100; },{},{} -2421,Valkyrie_Shoes,Valkyrian Shoes,4,0,,500,,13,,1,0xFFFFFFFE,18,2,64,,1,1,0,{ bonus bUnbreakableShoes,0; if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) bonus bMaxHP,(BaseLevel*5); else if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) bonus bMaxSP,(JobLevel*2); },{},{} +2421,Valkyrie_Shoes,Valkyrian Shoes,4,0,,500,,13,,1,0xFFFFFFFE,18,2,64,,1,1,0,{ bonus bUnbreakableShoes,1; if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) bonus bMaxHP,(BaseLevel*5); else if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) bonus bMaxSP,(JobLevel*2); },{},{} 2422,High_Fashion_Sandals,High Fashion Sandals,4,24000,,200,,7,,1,0x00818314,63,2,64,,40,1,0,{ bonus bMdef,10; },{},{} 2423,Variant_Shoes,Variant Shoes,4,20,,500,,13,,0,0xFFFFFFFE,18,2,64,,85,1,0,{ .@r = getrefine(); bonus bMaxHPrate,20-.@r; bonus bMaxSPrate,20-.@r; bonus bDef,.@r/2; },{},{} 2424,Tidal_Shoes,Tidal Shoes,4,20,,300,,13,,1,0xFFFFFFFE,18,2,64,,55,1,0,{ bonus2 bSubEle,Ele_Water,5; },{},{} @@ -1551,7 +1622,7 @@ 2463,Feral_Boots,Feral Boots,4,20,,0,,12,,0,0xFFFFFFFF,63,2,64,,75,0,0,{},{},{} 2464,No_Fear_Shoes,No Fear Shoes,4,0,,0,,6,,0,0xFFFFFFFF,63,2,64,,20,0,0,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{} 2465,Dance_Shoes,Dance Shoes,4,20,,300,,15,,1,0x00080000,63,2,64,,105,1,0,{ bonus bAgi,1; bonus bAspdRate,2; bonus2 bSkillUseSP,"WA_SWING_DANCE",32; },{},{} -2466,Training_Shoes,Training Shoes,4,20,,300,,0,,0,0xFFFFFFFF,63,2,64,,1,1,0,{},{},{} +2466,Training_Shoes,Training Shoes,4,20,,300,,0,,1,0xFFFFFFFF,63,2,64,,1,1,0,{},{},{} 2467,Golden_Rod_Shoes,Golden Rod Shoes,4,20,,500,,12,,0,0x00000200,63,2,64,,100,1,0,{ bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Wind,15; },{},{} 2468,Aqua_Shoes,Aqua Shoes,4,20,,500,,12,,0,0x00000200,63,2,64,,100,1,0,{ bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Water,15; },{},{} 2469,Crimson_Shoes,Crismons Shoes,4,20,,500,,12,,0,0x00000200,63,2,64,,100,1,0,{ bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Fire,15; },{},{} @@ -1566,7 +1637,7 @@ 2478,Nab_Shoes,Nab Shoes,4,20,,400,,18,,1,0x00001000,63,2,64,,100,1,0,{ bonus bFlee,3; bonus bInt,2; },{},{} 2479,White_Wing_Boots,White Wing Boots,4,20,,400,,18,,1,0x00000800,63,2,64,,100,1,0,{ bonus bAgi,2; bonus2 bSkillUseSP,"RA_AIMEDBOLT",10; },{},{} 2480,Black_Wing_Boots,Black Wing Boots,4,20,,400,,18,,1,0x00000800,56,2,64,,100,1,0,{ bonus bInt,2; bonus bMaxSPrate,5; },{},{} -2481,Rune_Boots,Rune Boots,4,20,,100,,5,,1,0xFFFFFFFF,63,2,64,,0,1,0,{},{},{} +2481,Rune_Boots,Rune Boots,4,20,,100,,5,,0,0xFFFFFFFF,63,2,64,,0,1,0,{},{},{} 2482,Shoes_Of_Valor,Shoes Of Valor,4,0,,0,,4,,0,0xFFFFFFFF,63,2,64,,0,0,0,{ skill "AL_HEAL",1; bonus bUseSPrate,10; },{},{} 2483,Siege_Greave,Siege Greaves,4,10,,750,,30,,1,0x006444A2,63,2,64,,95,1,0,{ bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; },{},{} 2484,Siege_Boots,Siege Boots,4,10,,500,,20,,1,0x036E5CEA,63,2,64,,95,1,0,{ bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{} @@ -1578,6 +1649,10 @@ 2491,Bangungot_Boots,Bangungot Boots of Nightmare,4,20,,600,,10,,0,0xFFFFFFFF,63,2,64,,1,1,0,{ .@r = getrefine(); bonus bMdef,.@r; if(.@r>=14){ bonus bSpeedRate,25; } },{},{} 2492,Bayani_Bangungot_Boots,Bayani Bangungot Boots of Nightmare,4,20,,600,,10,,1,0xFFFFFFFF,63,2,64,,1,1,0,{ .@r = getrefine(); bonus bMdef,.@r; if(.@r>=12){ bonus bSpeedRate,25; } },{},{} 2495,Egir_Shoes,Egir Shoes,4,200000,,300,,13,,1,0xFFFFFFFF,63,2,64,,110,1,0,{ if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) bonus bMaxHP,BaseLevel*5; else if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) bonus bMaxSP,JobLevel*2; },{},{} +2496,TE_Woe_Shoes,TE Woe Shoes,4,0,,0,,5,,0,0xFFFFFFFF,63,2,64,1,40,1,,{ bonus bMdef,5; bonus bMaxHP,150; bonus bMaxSP,150; bonus2 bAddRace,RC_Player,5; bonus2 bMagicAddRace,RC_Player,5; bonus2 bResEff,Eff_Freeze,25; },{},{} +2497,TE_Woe_Boots,TE Woe Boots,4,0,,0,,10,,0,0x000444A2,63,2,64,1,40,1,,{ bonus bMaxHP,200; bonus bMaxSP,100; bonus2 bAddRace,RC_Player,10; bonus2 bResEff,Eff_Freeze,25; },{},{} +2498,TE_Woe_Magic_Sandal,TE Woe Magic Sandal,4,0,,0,,5,,0,0x00818315,63,2,64,1,40,1,,{ bonus bMdef,5; bonus bMaxHP,100; bonus bMaxSP,200; bonus2 bMagicAddRace,RC_Player,5; bonus2 bResEff,Eff_Freeze,25; },{},{} +//=================================================================== // Garments //=================================================================== 2501,Hood,Hood,4,1000,,200,,4,,0,0xFFFFFFFF,63,2,4,,0,1,0,{},{},{} @@ -1587,7 +1662,7 @@ 2505,Manteau,Manteau,4,32000,,600,,13,,0,0x006654E2,63,2,4,,0,1,0,{},{},{} 2506,Manteau_,Manteau,4,32000,,600,,13,,1,0x006654E2,63,2,4,,0,1,0,{},{},{} 2507,Cape_Of_Ancient_Lord,Ancient Cape,4,82000,,600,,9,,0,0xFFFFFFFE,63,2,4,,40,1,0,{ bonus bAgi,1; },{},{} -2508,Ragamuffin_Cape,Ragamuffin Manteau,4,56000,,500,,4,,0,0xFFFFFFFE,63,2,4,,0,1,0,{ bonus bUnbreakableGarment,0; bonus bMdef,10; },{},{} +2508,Ragamuffin_Cape,Ragamuffin Manteau,4,56000,,500,,4,,0,0xFFFFFFFE,63,2,4,,0,1,0,{ bonus bUnbreakableGarment,1; bonus bMdef,10; },{},{} 2509,Clack_Of_Servival,Survivor's Manteau,4,20000,,550,,10,,0,0x00810204,63,2,4,,75,1,0,{ bonus bMdef,5; bonus bVit,10; },{},{} 2510,Novice_Hood,Somber Novice Hood,4,1,,1,,4,,0,0x00000001,63,2,4,,0,0,0,{ bonus2 bSubEle,Ele_Neutral,20; },{},{} 2511,Skeleton's_Cape,Skeleton Manteau,4,5000,,700,,1,,0,0xFFFFFFFE,63,2,4,,75,1,0,{ bonus bStr,2; bonus bInt,-3; bonus bDex,2; bonus bVit,-3; bonus bLuk,2; bonus bAgi,-4; },{},{} @@ -1603,7 +1678,7 @@ 2521,Angel's_Warmth,Angelic Cardigan,4,10000,,400,,5,,1,0x00000001,63,2,4,,20,1,0,{ bonus bHPrecovRate,5; },{},{} 2522,Undershirt,Undershirt,4,20000,,150,,5,,0,0xFFFFFFFF,63,2,4,,0,1,0,{ bonus bMdef,1; },{},{} 2523,Undershirt_,Undershirt,4,20000,,150,,5,,1,0xFFFFFFFF,63,2,4,,0,1,0,{ bonus bMdef,1; },{},{} -2524,Valkyrie_Manteau,Valkyrian Manteau,4,0,,500,,10,,1,0xFFFFFFFE,18,2,4,,0,1,0,{ bonus bUnbreakableGarment,0; if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) bonus bFlee2,5+(getequiprefinerycnt(EQI_GARMENT)*2); else if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) bonus bShortWeaponDamageReturn,5+(getequiprefinerycnt(EQI_GARMENT)*2); },{},{} +2524,Valkyrie_Manteau,Valkyrian Manteau,4,0,,500,,10,,1,0xFFFFFFFE,18,2,4,,0,1,0,{ bonus bUnbreakableGarment,1; if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) bonus bFlee2,5+(getequiprefinerycnt(EQI_GARMENT)*2); else if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) bonus bShortWeaponDamageReturn,5+(getequiprefinerycnt(EQI_GARMENT)*2); },{},{} 2525,Cape_Of_Ancient_Lord_,Ancient Cape,4,82000,,600,,9,,1,0xFFFFFFFE,63,2,4,,40,1,0,{ bonus bAgi,1; },{},{} 2526,Dragon_Scale_Coat,Coat of Dragon Scale,4,20,,10,,14,,0,0xFFFFFFFF,63,2,4,,50,1,0,{ bonus bMaxHP,300; },{},{} 2527,Dragon_Breath,Dragon Breath,4,20,,600,,16,,1,0xFFFFFFFE,18,2,4,,48,1,0,{ bonus2 bSubRace,RC_Dragon,15; },{},{} @@ -1620,7 +1695,7 @@ 2538,Commander_Manteau,Captain's Manteau,4,10,,0,,28,,1,0x026654E2,63,2,4,,80,1,0,{ bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{} 2539,Commander_Manteau_,Commander's Manteau,4,10,,0,,20,,1,0x00898B1C,63,2,4,,80,1,0,{ bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{} 2540,Sheriff_Manteau,Sheriff's Manteau,4,10,,0,,20,,1,0x41000000,63,2,4,,80,1,0,{ bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player,1; },{},{} -2541,Asprika,Asprika,4,20,,400,,40,,0,0xFFFFFFFF,63,2,4,,94,0,0,{ bonus bMdef,5; bonus3 bSubEle,Ele_Neutral,30,BF_SHORT; bonus3 bSubEle,Ele_Water,30,BF_SHORT; bonus3 bSubEle,Ele_Earth,30,BF_SHORT; bonus3 bSubEle,Ele_Fire,30,BF_SHORT; bonus3 bSubEle,Ele_Wind,30,BF_SHORT; bonus3 bSubEle,Ele_Poison,30,BF_SHORT; bonus3 bSubEle,Ele_Holy,30,BF_SHORT; bonus3 bSubEle,Ele_Dark,30,BF_SHORT; bonus3 bSubEle,Ele_Ghost,30,BF_SHORT; bonus3 bSubEle,Ele_Undead,30,BF_SHORT; bonus bFlee,30; skill "AL_TELEPORT",1; bonus bUnbreakableGarment,0; },{},{} +2541,Asprika,Asprika,4,20,,400,,40,,0,0xFFFFFFFF,63,2,4,,94,0,0,{ bonus bMdef,5; bonus3 bSubEle,Ele_Neutral,30,BF_SHORT; bonus3 bSubEle,Ele_Water,30,BF_SHORT; bonus3 bSubEle,Ele_Earth,30,BF_SHORT; bonus3 bSubEle,Ele_Fire,30,BF_SHORT; bonus3 bSubEle,Ele_Wind,30,BF_SHORT; bonus3 bSubEle,Ele_Poison,30,BF_SHORT; bonus3 bSubEle,Ele_Holy,30,BF_SHORT; bonus3 bSubEle,Ele_Dark,30,BF_SHORT; bonus3 bSubEle,Ele_Ghost,30,BF_SHORT; bonus3 bSubEle,Ele_Undead,30,BF_SHORT; bonus bFlee,30; skill "AL_TELEPORT",1; bonus bUnbreakableGarment,1; },{},{} 2542,Flame_Manteau,Flame Manteau of Naght Sieger,4,20,,700,,16,,1,0xFFFFFFFE,18,2,4,,70,1,0,{ bonus bMaxHPrate,5; bonus bMdef,2; bonus bMatkRate,1; bonus2 bAddEle,Ele_Fire,2; },{},{} 2543,Sylphid_Manteau,Sylphid Manteau,4,20,,0,,9,,0,0xFFFFFFFF,63,2,4,,0,0,0,{ bonus bFlee,13; bonus2 bSubEle,Ele_Neutral,13; bonus bFlee2,1; },{},{} 2544,Leather_Of_Tendrilion,Leather of Tendrilion,4,20,,300,,14,,1,0x00CFDF80,18,2,4,,0,1,0,{ bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; },{},{} @@ -1633,7 +1708,7 @@ 2551,Rider_Insignia_M,Crest of the Rider,4,20,,500,,4,,1,0xFFFFFFFE,18,2,4,,55,1,0,{ bonus bAgi,2; },{},{} 2552,Mithril_Magic_Cape_M,Mithril Magic Manteau,4,20,,400,,3,,1,0x00098B1C,18,2,4,,70,1,0,{ bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; },{},{} 2553,Dragon_Manteau,Dragon Manteau,4,20,,1000,,14,,1,0xFFFFFFFE,18,2,4,,0,1,0,{ bonus bAgi,1; bonus bMdef,5; },{},{} -2554,Piece_Of_Angent_Skin,Nydhorgg's Shadow Garb,4,20,,400,,25,,1,0xFFFFFFFE,18,2,4,,90,1,0,{ bonus2 bSubEle,Ele_Neutral,7; bonus2 bSubEle,Ele_Water,7; bonus2 bSubEle,Ele_Earth,7; bonus2 bSubEle,Ele_Fire,7; bonus2 bSubEle,Ele_Wind,7; bonus2 bSubEle,Ele_Poison,7; bonus2 bSubEle,Ele_Holy,7; bonus2 bSubEle,Ele_Dark,7; bonus2 bSubEle,Ele_Ghost,7; bonus2 bSubEle,Ele_Undead,7; bonus bMaxSP,(BaseLevel/3)+(getrefine()*10); bonus3 bSPDrainRate,10,1,0; bonus bMdef,3; },{},{} +2554,Piece_Of_Angent_Skin,Nydhorgg's Shadow Garb,4,20,,400,,25,,1,0xFFFFFFFE,18,2,4,,90,1,0,{ bonus2 bSubEle,Ele_Neutral,7; bonus2 bSubEle,Ele_Water,7; bonus2 bSubEle,Ele_Earth,7; bonus2 bSubEle,Ele_Fire,7; bonus2 bSubEle,Ele_Wind,7; bonus2 bSubEle,Ele_Poison,7; bonus2 bSubEle,Ele_Holy,7; bonus2 bSubEle,Ele_Dark,7; bonus2 bSubEle,Ele_Ghost,7; bonus2 bSubEle,Ele_Undead,7; bonus bMaxSP,(BaseLevel/3)+(getrefine()*10); bonus2 bSPDrainRate,10,1; bonus bMdef,3; },{},{} 2555,Freyja_SScarf7,Freyja Soul Scarf,4,20,,400,,4,,0,0xFFFFFFFF,63,2,4,,20,0,0,{ bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; },{},{} 2556,Freyja_SScarf30,Freyja Soul Scarf,4,20,,400,,4,,0,0xFFFFFFFF,63,2,4,,20,0,0,{ bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; },{},{} 2557,Freyja_SScarf60,Freyja Soul Scarf,4,20,,400,,4,,0,0xFFFFFFFF,63,2,4,,20,0,0,{ bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; },{},{} @@ -1645,13 +1720,13 @@ 2563,Upg_Manteau,Upg Manteau,4,20,,300,,18,,1,0x006654E2,63,2,4,,0,1,0,{ bonus bMaxHPrate,3; },{},{} 2564,Feral_Tail,Feral Tail,4,20,,0,,16,,0,0xFFFFFFFF,63,2,4,,75,0,0,{},{},{} 2565,Beach_Towel,Beach Towel,4,20,,100,,2,,1,0xFFFFFFFF,63,2,4,,0,1,0,{ bonus bMdef,3; bonus bFlee,7; },{},{} -2566,Half_Asprika,Half Asprika,4,20,,0,,20,,0,0xFFFFFFFF,63,2,4,,47,0,0,{ bonus bMdef,2; bonus3 bSubEle,Ele_Neutral,15,BF_SHORT; bonus3 bSubEle,Ele_Water,15,BF_SHORT; bonus3 bSubEle,Ele_Earth,15,BF_SHORT; bonus3 bSubEle,Ele_Fire,15,BF_SHORT; bonus3 bSubEle,Ele_Wind,15,BF_SHORT; bonus3 bSubEle,Ele_Poison,15,BF_SHORT; bonus3 bSubEle,Ele_Holy,15,BF_SHORT; bonus3 bSubEle,Ele_Dark,15,BF_SHORT; bonus3 bSubEle,Ele_Ghost,15,BF_SHORT; bonus3 bSubEle,Ele_Undead,15,BF_SHORT; bonus bFlee,15; skill "AL_TELEPORT",1; bonus bUnbreakableGarment,0; },{},{} +2566,Half_Asprika,Half Asprika,4,20,,0,,20,,0,0xFFFFFFFF,63,2,4,,47,0,0,{ bonus bMdef,2; bonus3 bSubEle,Ele_Neutral,15,BF_SHORT; bonus3 bSubEle,Ele_Water,15,BF_SHORT; bonus3 bSubEle,Ele_Earth,15,BF_SHORT; bonus3 bSubEle,Ele_Fire,15,BF_SHORT; bonus3 bSubEle,Ele_Wind,15,BF_SHORT; bonus3 bSubEle,Ele_Poison,15,BF_SHORT; bonus3 bSubEle,Ele_Holy,15,BF_SHORT; bonus3 bSubEle,Ele_Dark,15,BF_SHORT; bonus3 bSubEle,Ele_Ghost,15,BF_SHORT; bonus3 bSubEle,Ele_Undead,15,BF_SHORT; bonus bFlee,15; skill "AL_TELEPORT",1; bonus bUnbreakableGarment,1; },{},{} 2567,Academy_Manteau,Academy Manteau,4,0,,600,,3,,1,73,7,2,4,,0,1,0,{},{},{} 2568,Muffler_Of_Roki,Loki's Muffler,4,20,,400,,10,,0,0xFFFFFFFF,63,2,4,,100,0,0,{ bonus bAgi,1; bonus2 bSkillAtk,"ASC_BREAKER",5; bonus2 bSkillAtk,"GC_CROSSIMPACT",5; },{},{} 2569,Shawl_Of_Affection,Shawl Of Affection,4,20,,400,,12,,0,0x00000100,63,2,4,,100,1,0,{ bonus bFlee2,5; bonus5 bAutoSpellWhenHit,"AB_RENOVATIO",1,30,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"AB_RENOVATIO",1,40,BF_MAGIC,0; },{},{} -2570,Shawl_Of_Judgement,Shawl Of Judgement,4,20,,400,,12,,0,0x00000100,63,2,4,,100,1,0,{ bonus bFlee,5; set .@i,(getskilllv("AB_ORATIO")<2)?2:getskilllv("AB_ORATIO"); bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,30,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,40,BF_MAGIC,0; },{},{} +2570,Shawl_Of_Judgement,Shawl Of Judgement,4,20,,400,,12,,0,0x00000100,63,2,4,,100,1,0,{ bonus bFlee,5; .@i = (getskilllv("AB_ORATIO")<2)?2:getskilllv("AB_ORATIO"); bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,30,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,40,BF_MAGIC,0; },{},{} 2571,Para_Team_Manteau2,Eden Team Manteau II,4,0,,0,,18,,0,0xFFFFFFFF,63,2,4,,60,0,0,{ bonus bFlee,12; bonus2 bSubEle,Ele_Neutral,10; },{},{} -2572,Katabart_Sholder,Katabart Sholder,4,20,,3000,,4,,0,0xFFFFFFFF,63,2,4,,70,1,0,{},{},{} +2572,Katabart_Sholder,Katabart Sholder,4,20,,3000,,4,,1,0xFFFFFFFF,63,2,4,,70,1,0,{},{},{} 2573,Archangel_Wing,Archangel Wings,4,0,,200,,18,,1,0xFFFFFFFF,63,2,4,,0,1,1,{},{},{} 2574,Ur_Manteau,Ur's Manteau,4,20,,600,,20,,0,0x00000080,56,2,4,,100,1,0,{ bonus bMaxHPrate,2; bonus2 bSubEle,Ele_Neutral,10; },{},{} 2575,Peuz_Manteau,Peuz's Manteau,4,20,,600,,16,,0,0x00000080,56,2,4,,100,1,0,{ bonus bFlee,10; bonus bCritical,10; },{},{} @@ -1671,9 +1746,12 @@ 2589,Fallen_Angel_Wing,Fallen Angel Wing,4,0,,200,,18,,1,0xFFFFFFFF,63,2,4,,0,1,3,{ bonus bAllStats,1; bonus bAtk,readparam(bStr)/20; bonus bMatk,readparam(bInt)/20; bonus2 bSubEle,Ele_Neutral,readparam(bVit)/20; bonus bLongAtkRate,readparam(bDex)/20; bonus bCritAtkRate,readparam(bLuk)/20; },{},{} 2590,Buwaya_Cloth,Buwaya Sack Cloth,4,20,,200,,8,,0,0xFFFFFFFF,63,2,4,,1,1,0,{ .@r = getrefine(); bonus bHealPower2,.@r/3; bonus bAddItemHealRate,.@r/3; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Fire,10; },{},{} 2591,Bayani_Buwaya_Cloth,Bayani Buwaya Sack Cloth,4,20,,200,,8,,1,0xFFFFFFFF,63,2,4,,1,1,0,{ .@r = getrefine(); bonus bHealPower2,.@r; bonus bAddItemHealRate,.@r; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Fire,10; },{},{} -2592,Boss_Brownie_Manteau,Boss Brownie Manteau,4,20,,100,,3,,0,0xFFFFFFFF,63,2,4,,50,1,0,{},{},{} +2592,Boss_Brownie_Manteau,Boss Brownie Manteau,4,20,,100,,3,,1,0xFFFFFFFF,63,2,4,,50,1,0,{},{},{} 2593,Flow_Manteau,Flow Manteau,4,20,,700,,20,,1,0xFFFFFFFF,63,2,4,,65,1,0,{},{},{} 2594,Wrapping_Manteau,Wrapping Manteau,4,20,,100,,0,,1,0xFFFFFFFF,63,2,4,,0,1,0,{},{},{} +2597,Scarlet_Poncho,Scarlet Poncho,5,0,,500,,10,,1,0xFFFFFFFF,63,2,1024,,,1,0,{ bonus bCritAtkRate,3; /* Confirm: The location. If the location is changed, also change the combo script! */ },{},{} +2598,Ramor_Manteau,Ramor Manteau,4,20,,700,,20,,1,0xFFFFFFFF,63,2,4,,65,1,0,{ bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_DemiHuman,-5; /*Gold PC Room: bonus bFlee,20;*/ },{},{} +//=================================================================== // Accessories //=================================================================== 2601,Ring,Ring,4,30000,,100,,0,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus bStr,2; },{},{} @@ -1956,14 +2034,14 @@ 2879,Badge_Giorredart,Badge Giorredart,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,10,0,0,{ bonus bMdef,1; },{},{} 2880,Ring_Lupak,Ring Lupak,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,10,0,0,{ bonus bMdef,1; },{},{} 2881,Orleans_Necklace,Orleans Necklace,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bDex,2; bonus bMatk,20; },{},{} -2882,Ecoro_Cardslip,Ecoro Cardslip,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bVit,1; bonus bLuk,1; },{},{} +2882,Ecoro_Cardslip,Ecoro Cardslip,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bVit,1; bonus bLuk,1; },{},{} 2883,Ur_Seal,Ur's Seal,4,20,,200,,4,,1,0x00000080,56,2,136,,100,0,0,{ bonus bMaxHPrate,2; bonus2 bSkillUseSP,"LK_SPIRALPIERCE",5; bonus2 bSkillUseSP,"RK_HUNDREDSPEAR",5; },{},{} 2884,Peuz_Seal,Peuz's Seal,4,20,,200,,3,,1,0x00000080,56,2,136,,100,0,0,{ bonus bBaseAtk,20; bonus bMaxSP,20; },{},{} 2885,Mother_Heart,Mother Heart,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bBaseAtk,15; bonus bMatk,15; bonus2 bExpAddClass,Class_All,15; },{},{} 2886,Sabah_Ring,Sapha Ring,4,20,,100,,0,,0,0x00001000,63,2,136,,100,0,0,{ bonus bCritical,3; bonus2 bSkillUseSP,"GC_DARKILLUSION",5; },{},{} 2887,Nab_Ring,Nab Ring,4,20,,100,,0,,0,0x00001000,63,2,136,,100,0,0,{ bonus bBaseAtk,10; bonus bMatk,20; },{},{} 2888,School_Bag,School Bag,4,20,,1000,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAspdRate,3; bonus bVariableCastrate,-3; if(BaseLevel<80){ bonus bMaxHP,200; bonus bMaxSP,100; } },{},{} -2889,Endure_Ring,Endure Ring,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,60,0,0,{},{},{} +2889,Endure_Ring,Endure Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,60,0,0,{},{},{} 2890,White_Wing_Brooch,White Wing Brooch,4,20,,100,,0,,0,0x00000800,63,2,136,,100,0,0,{ bonus bDex,2; bonus bLongAtkRate,3; },{},{} 2891,Black_Wing_Brooch,Black Wing Brooch,4,20,,100,,0,,0,0x00000800,56,2,136,,100,0,0,{ bonus bInt,2; bonus bFlee2,3; },{},{} 2892,Assassin_Handcuffs,Assassin's Glove,4,56000,,400,,3,,1,0x00001000,63,2,136,,100,0,0,{ bonus bMaxSP,20; bonus bCritical,3; },{},{} @@ -1978,7 +2056,7 @@ 2901,Morrigane's_Pendant_,Morrigane's Pendant,4,30000,,200,,0,,1,0xFFFFFFFE,63,2,136,,61,0,0,{ bonus bStr,2; },{},{} 2902,Morpheus's_Ring_,Morpheus's Ring,4,30000,,100,,0,,1,0xFFFFFFFE,63,2,136,,33,0,0,{ bonus bInt,1; },{},{} 2903,Morpheus's_Armlet_,Morpheus's Armlet,4,30000,,100,,0,,1,0xFFFFFFFE,63,2,136,,33,0,0,{ bonus bInt,1; },{},{} -2904,Naqsh,Naqsi,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ skill "BS_MAXIMIZE",5; skill "BS_WEAPONPERFECT",5; skill "WL_RECOGNIZEDSPELL",5; skill "ECL_SNOWFLIP",1; skill "ECL_PEONYMAMY",1; skill "ECL_SADAGUI",1; skill "ECL_SEQUOIADUST",1; /* bonus2 bSkillDelay,"WL_RECOGNIZEDSPELL",-180000; */ bonus bDelayRate,-100; },{},{} +2904,Naqsh,Naqsi,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ skill "BS_MAXIMIZE",5; skill "BS_WEAPONPERFECT",5; skill "WL_RECOGNIZEDSPELL",5; skill "ECL_SNOWFLIP",1; skill "ECL_PEONYMAMY",1; skill "ECL_SADAGUI",1; skill "ECL_SEQUOIADUST",1; bonus2 bSkillCooldown,"WL_RECOGNIZEDSPELL",-180000; bonus bDelayRate,-100; },{},{} 2905,Super_Ora_Ora,Super Ora Ora,4,0,,1000,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} 2906,Happy_Gauntlet,Happy Gauntlet,4,20,,1000,,3,,1,0xFFFFFFFF,63,2,136,,70,0,0,{ bonus bMdef,3; },{},{} 2907,Buwaya_Tattoo,Bawaya Agimat Tattoo,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bMatkRate,7; bonus bVariableCastrate,-7; },{},{} @@ -2007,13 +2085,21 @@ 2940,Ninja_Manual,Ninja Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,0,0,0,{ bonus bMaxSP,100; skill "NJ_UTSUSEMI",1; skill "NJ_KOUENKA",1; skill "NJ_SYURIKEN",1; },{},{} 2941,Gunslinger_Manual,Gunslinger Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,0,0,0,{ bonus bMaxSP,100; skill "GS_GLITTERING",1; skill "GS_ADJUSTMENT",1; skill "GS_MADNESSCANCEL",1; skill "GS_INCREASING",1; },{},{} 2942,Taekwon_Manual,Taekwon Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,0,0,0,{ bonus bMaxSP,100; skill "TK_SEVENWIND",4; skill "TK_JUMPKICK",5; },{},{} +2943,Critical_Ring_,Critical Ring,4,0,,100,,,,1,0xFFFFFFFF,63,2,136,,,0,,{ bonus bCritical,5;},{},{} +2944,TE_Ring_Of_Protection,TE Ring Of Protection,4,0,,0,,,,0,0xFFFFFFFF,63,2,136,1,40,0,,{ bonus bMaxHP,100; bonus2 bSubRace,RC_Player,5; },{},{} +2945,TE_Ring_Of_Rage,TE Ring Of Rage,4,0,,0,,,,0,0xFFFFFFFF,63,2,136,1,40,0,,{ bonus2 bAddRace,RC_Player,5; bonus2 bMagicAddRace,RC_Player,5; },{},{} +2946,TE_Ring_Of_Defiance,TE Ring Of Defiance,4,0,,0,,,,0,0xFFFFFFFF,63,2,136,1,40,0,,{ bonus bMdef,5; bonus2 bSubRace,RC_Player,5; },{},{} 2948,Demon_Wing,Demon Wing,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,70,,,{ bonus bFlee,5; },{},{} 2949,Silversmith_Bracelet,Silversmith Bracelet,4,10,,100,,3,,1,0xFFFFFFFF,63,2,136,,60,,,{ bonus bAllStats,1; bonus bMdef,3; skill "SA_SPELLBREAKER",5; },{},{} +2950,Rune_Ring,Rune Ring,4,0,,0,,,,0,0xFFFFFFFF,63,2,136,1,1,0,,{ bonus2 bExpAddClass,Class_Normal,10; },{},{} +2951,Kvasir_Ring_Blue,Kvasir Ring Blue,4,0,,100,,,,0,0xFFFFFFFF,63,2,136,1,1,0,,{ bonus bMaxSP,30; skill "ECL_SNOWFLIP",1; },{},{} +2952,Kvasir_Ring_Red,Kvasir Ring Red,4,0,,100,,,,0,0xFFFFFFFF,63,2,136,1,1,0,,{ bonus bMaxSP,30; skill "ECL_PEONYMAMY",1; },{},{} +2953,Kvasir_Ring_Green,Kvasir Ring Green,4,0,,100,,,,0,0xFFFFFFFF,63,2,136,1,1,0,,{ bonus bMaxHP,100; skill "ECL_SADAGUI",1; },{},{} 2954,Kvasir_Ring_Brown,Kvasir Ring Brown,4,10,,100,,,,0,0xFFFFFFFF,63,2,136,,1,,,{ bonus bMaxHP,100; },{},{} 2956,Safety_Ring_,Advanced Safety Ring,4,75000,,100,,10,,1,0xFFFFFFFE,63,2,136,,50,0,0,{ bonus bMdef,5; bonus bAllStats,1; },{},{} 2957,Good_Ring_Of_Flame_Lord,Advanced Ring Of Flame Lord,4,20,,100,,0,,0,0x7CCFDF80,63,2,136,,85,0,0,{ bonus bStr,3; bonus bVit,2; bonus bBaseAtk,20; bonus2 bSubEle,Ele_Fire,10; bonus3 bAutoSpell,"CH_SOULCOLLECT",1,30; bonus3 bAutoSpell,"MO_EXPLOSIONSPIRITS",1,10; bonus3 bAutoSpell,"PA_PRESSURE",2,30; bonus3 bAutoSpell,"MG_FIREBALL",1,150; bonus3 bAutoSpell,"KN_BOWLINGBASH",5,20; },{},{} 2958,Good_Ring_Of_Resonance,Advanced Ring Of Resonance,4,20,,100,,2,,0,0x7CCFDF80,63,2,136,,85,0,0,{ bonus bAgi,3; bonus bVit,1; bonus bMdef,2; bonus bMatk,10; bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,50,0; bonus3 bAutoSpellWhenHit,"AS_SPLASHER",10,20; bonus3 bAutoSpellWhenHit,"AL_HEAL",10,30; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,20; bonus3 bAutoSpellWhenHit,"CG_TAROTCARD",5,20; },{},{} -2959,Fidelity_Necklace,Fidelity Necklace,4,20,,300,,0,,1,0xFFFFFFFF,63,2,136,,50,0,0,{ bonus bAgi,2; bonus2 bSubRace,RC_Brute,3; },{},{} +2959,Fidelity_Necklace,Fidelity Necklace,4,20,,300,,0,,0,0xFFFFFFFF,63,2,136,,50,0,0,{ bonus bAgi,2; bonus2 bSubRace,RC_Brute,3; },{},{} 2960,Badge_Of_Manny,Badge Of Manny,4,20,,200,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,1; },{},{} 2963,Upgrade_Body_Ring,Upgrade Body Ring,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAtkRate,5; bonus bAspdRate,5; },{},{} 2964,Amplified_Magical_Ring,Amplified Magical Ring,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMatkRate,5; bonus bVariableCastrate,-5; },{},{} @@ -2024,12 +2110,13 @@ 2971,Pocket_Watch,Pocket Watch,4,10,,200,,1,,1,0x800200,63,2,136,,80,1,,{},{},{} 2976,Red_Lantern,Red Lantern,4,10,,200,,0,,1,0xFFFFFFFF,63,2,136,,100,0,,{ bonus bMaxSP,-300; skill "MG_SIGHT",1; },{},{ sc_end SC_SIGHT; } 2977,Broken_Heart,Broken Heart,4,10,,100,,0,,1,0xFFFFFFFF,63,2,136,,110,0,,{ bonus bMaxSP,200; skill "DC_SCREAM",3; },{},{} -2978,Kindly_Heart,Kindly Heart,4,10,,100,,0,,1,0xFFFFFFFF,63,2,136,,110,0,,{ bonus bMaxSP,500; bonus2 bHPRegenRate,3,10000; /*Should be fixed 300 HP/sec*/ },{},{} +2978,Kindly_Heart,Kindly Heart,4,10,,100,,0,,1,0xFFFFFFFF,63,2,136,,110,0,,{ bonus bMaxSP,500; bonus2 bHPRegenRate,300,10000; },{},{} +2979,Strawberry_Decoration,Strawberry Decoration,4,0,,500,,1,,1,0xFFFFFFFF,63,2,136,,,0,,{ bonus bAllStats,1; bonus2 bSubEle,Ele_Fire,10; bonus bLongAtkRate,30; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,10; /* Confirm: Frost Nova cast chance */ },{},{} 2980,Evil_Spirits_Room_Gloves,Evil Spirits Room Gloves,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,110,1,,{ bonus bMaxHP,500; bonus bMaxSP,200; skill "PF_SPIDERWEB",1; },{},{} 2981,Warrior's_Ring,Warrior's Ring,4,10,,200,,0,,0,0xFFFFFFFF,63,2,136,,160,,,{},{},{} 2983,Greed_Brooch,Greed Brooch,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,50,1,,{ bonus2 bHPLossRate,10,5000; },{},{} 2984,Glove_Save_Rimnil,Glove Save Rimnil,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,30,1,,{ bonus2 bExpAddRace,RC_All,5; },{},{} -2985,Gyges_Ring,Gyges Ring,4,10,,100,,,,0,0xFFFFFFFF,63,2,136,,50,,,{ bonus bInt,3; bonus bMatk,30; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; } +2985,Gyges_Ring,Gyges Ring,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,50,,,{ bonus bInt,3; bonus bMatk,30; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; } 2986,Snake_Ring,Snake Ring,4,20,,100,,2,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bDex,3; bonus bMdef,2; },{},{} 2987,Snake_Pendant,Snake Pendant,4,20,,100,,3,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAgi,3; bonus bLuk,2; bonus bMdef,3; },{},{} 2988,Ozs_New_Wing_Ring,Oz's New Wing Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,130,,,{ bonus bVariableCastrate,-25; },{},{} @@ -2041,7 +2128,7 @@ 2996,Reinforced_Parts_Gun_Barrel,Reinforced Parts - Gun Barrel,4,10,,500,,,,1,0xFFFFFFFF,63,2,136,,100,,,{ bonus bAtkRate,4; bonus bHit,10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",25; },{},{} 2997,RWC_Gold_Brooch,RWC Gold Brooch,4,10,,200,,0,,1,0xFFFFFFFF,63,2,136,,0,0,,{ bonus bBaseAtk,25; bonus bMatk,20; },{},{} 2999,RWC_Brooch,RWC Brooch,4,10,,200,,0,,0,0xFFFFFFFF,63,2,136,,0,0,,{ bonus bMaxHP,300; bonus bMaxSP,30; },{},{} - +//=================================================================== // Cards //=================================================================== 4001,Poring_Card,Poring Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLuk,2; bonus bFlee2,1; },{},{} @@ -2104,7 +2191,7 @@ 4058,Thara_Frog_Card,Thara Frog Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_DemiHuman,30; bonus2 bSubRace,RC_Player,30; },{},{} 4059,Soldier_Andre_Card,Soldier Andre Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Plant,30; },{},{} 4060,Goblin_Card,Goblin Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Brute,20; },{},{} -4061,Cornutus_Card,Cornutus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bUnbreakableArmor,0; bonus bDef,1; },{},{} +4061,Cornutus_Card,Cornutus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bUnbreakableArmor,1; bonus bDef,1; },{},{} 4062,Anacondaq_Card,Anacondaq Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Poison,20; },{},{} 4063,Caramel_Card,Caramel Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Insect,20; },{},{} 4064,Zerom_Card,Zerom Card,6,20,,10,,,,,,,,136,,,,,{ bonus bDex,3; },{},{} @@ -2115,7 +2202,7 @@ 4069,Drainliar_Card,Drainliar Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Water,20; },{},{} 4070,Eggyra_Card,Eggyra Card,6,20,,10,,,,,,,,64,,,,,{ bonus bSPrecovRate,15; },{},{} 4071,Orc_Zombie_Card,Orc Zombie Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Undead,30; bonus bFlee,5; },{},{} -4072,Golem_Card,Golem Card,6,20,,10,,,,,,,,2,,,,,{ bonus bUnbreakableWeapon,0; bonus bBaseAtk,5; },{},{} +4072,Golem_Card,Golem Card,6,20,,10,,,,,,,,2,,,,,{ bonus bUnbreakableWeapon,1; bonus bBaseAtk,5; },{},{} 4073,Pirate_Skel_Card,Pirate Skeleton Card,6,20,,10,,,,,,,,136,,,,,{ skill "MC_DISCOUNT",5; },{},{} 4074,BigFoot_Card,Bigfoot Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Insect,30; },{},{} 4075,Argos_Card,Argos Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bResEff,Eff_Stone,2000; bonus bDef,1; },{},{} @@ -2158,7 +2245,7 @@ 4112,Marduk_Card,Marduk Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Silence,10000; },{},{} 4113,Marionette_Card,Marionette Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Ghost,30; bonus bFlee,5; },{},{} 4114,Argiope_Card,Argiope Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Poison; bonus bDef,1; },{},{} -4115,Hunter_Fly_Card,Hunter Fly Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bHpDrainRate,30,15; },{},{} +4115,Hunter_Fly_Card,Hunter Fly Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bHPDrainRate,30,15; },{},{} 4116,Isis_Card,Isis Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Dark,30; bonus bFlee,5; },{},{} 4117,Side_Winder_Card,Sidewinder Card,6,20,,10,,,,,,,,2,,,,,{ skill "TF_DOUBLE",1; bonus bDoubleRate,5; },{},{} 4118,Petit_Card,Earth Petite Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Dragon,20; },{},{} @@ -2177,7 +2264,7 @@ 4131,Moonlight_Flower_Card,Moonlight Flower Card,6,20,,10,,,,,,,,64,,,,,{ bonus bSpeedRate,25; },{},{} 4132,Mistress_Card,Mistress Card,6,20,,10,,,,,,,,769,,,,,{ bonus bNoGemStone,0; bonus bUseSPrate,25; },{},{} 4133,Daydric_Card,Raydric Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,20; },{},{} -4134,Dracula_Card,Dracula Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSpDrainRate,100,5; },{},{} +4134,Dracula_Card,Dracula Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPDrainRate,100,5; },{},{} 4135,Orc_Load_Card,Orc Lord Card,6,20,,10,,,,,,,,16,,,,,{ bonus bShortWeaponDamageReturn,30; },{},{} 4136,Khalitzburg_Card,Khalitzburg Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Demon,30; },{},{} 4137,Drake_Card,Drake Card,6,20,,10,,,,,,,,2,,,,,{ bonus bNoSizeFix,0; },{},{} @@ -2215,7 +2302,7 @@ 4169,Dark_Illusion_Card,Dark Illusion Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxHPrate,-10; bonus bMaxSPrate,-10; bonus bVariableCastrate,-10; },{},{} 4170,Dark_Frame_Card,Dark Frame Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Stone,600; },{},{} 4171,Dark_Priest_Card,Dark Priest Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPVanishRate,50,10; if(BaseJob==Job_Sage) bonus bSPDrainValue,1; },{},{} -4172,The_Paper_Card,The Paper Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,20; bonus2 bSPDrainValue,-1,0; },{},{} +4172,The_Paper_Card,The Paper Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,20; bonus bSPDrainValue,-1; },{},{} 4173,Demon_Pungus_Card,Demon Pungus Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Sleep,600; },{},{} 4174,Deviling_Card,Deviling Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,50; bonus2 bSubEle,Ele_Water,-50; bonus2 bSubEle,Ele_Earth,-50; bonus2 bSubEle,Ele_Fire,-50; bonus2 bSubEle,Ele_Wind,-50; bonus2 bSubEle,Ele_Poison,-50; bonus2 bSubEle,Ele_Holy,-50; bonus2 bSubEle,Ele_Dark,-50; bonus2 bSubEle,Ele_Ghost,-50; bonus2 bSubEle,Ele_Undead,-50; },{},{} 4175,Poison_Toad_Card,Poisonous Toad Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"TF_POISON",1,20; bonus2 bAddSkillBlow,52,5; },{},{} @@ -2276,7 +2363,7 @@ 4230,Shinobi_Card,Shinobi Card,6,20,,10,,,,,,,,136,,,,,{ bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AS_CLOAKING",5,100; },{},{} 4231,Increase_Soil_Card,Mi Gao Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace2,RC2_Guardian,50; },{},{} 4232,Wild_Ginseng_Card,Hermit Plant Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Herb,50; bonus3 bAddMonsterDropItem,507,RC_Plant,300; bonus3 bAddMonsterDropItem,508,RC_Plant,200; bonus3 bAddMonsterDropItem,509,RC_Plant,100; },{},{} -4233,Baby_Leopard_Card,Baby Leopard Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLuk,3; if(BaseClass==Job_Merchant) bonus bUnbreakableArmor,0; },{},{} +4233,Baby_Leopard_Card,Baby Leopard Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLuk,3; if(BaseClass==Job_Merchant) bonus bUnbreakableArmor,1; },{},{} 4234,Anolian_Card,Anolian Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",1+9*(getskilllv("AC_CONCENTRATION")==10),30; },{},{} 4235,Cookie_XMAS_Card,Christmas Cookie Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Angel,-20; bonus2 bExpAddRace,RC_Angel,10; },{},{} 4236,Amon_Ra_Card,Amon Ra Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,(30+70*(readparam(bInt)>=99)); },{},{} @@ -2319,12 +2406,12 @@ 4273,Shellfish_Card,Shell Fish Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus2 bAddDamageClass,1073,30; },{},{} 4274,Zombie_Master_Card,Zombie Master Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Undead,5; },{},{ heal 0,-5; } 4275,Zombie_Prisoner_Card,Zombie Prisoner Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Undead,-20; bonus2 bExpAddRace,RC_Undead,10; },{},{} -4276,Lord_Of_Death_Card,Lord of The Dead Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAddEff,Eff_Stun,500,ATF_SHORT; bonus3 bAddEff,Eff_Curse,500,ATF_SHORT; bonus3 bAddEff,Eff_Silence,500,ATF_SHORT; bonus3 bAddEff,Eff_Poison,500,ATF_SHORT; bonus3 bAddEff,Eff_Bleeding,500,ATF_SHORT; bonus2 bWeaponComaClass,Class_Normal,1; },{},{} +4276,Lord_Of_Death_Card,Lord of The Dead Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAddEff,Eff_Stun,500,ATF_SHORT; bonus3 bAddEff,Eff_Curse,500,ATF_SHORT; bonus3 bAddEff,Eff_Silence,500,ATF_SHORT; bonus3 bAddEff,Eff_Poison,500,ATF_SHORT; bonus3 bAddEff,Eff_Bleeding,500,ATF_SHORT; bonus2 bComaClass,Class_Normal,1; },{},{} 4277,Zherlthsh_Card,Zealotus Card,6,20,,10,,,,,,,,32,,,,,{ bonus bLuk,2; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; bonus2 bSkillAtk,"DC_THROWARROW",10; },{},{} 4278,Gibbet_Card,Gibbet Card,6,20,,10,,,,,,,,769,,,,,{ if(getrefine()<6) bonus bMdef,5; },{},{} 4279,Deleter_Card,Earth Deleter Card,6,20,,10,,,,,,,,16,,,,,{ bonus bSPrecovRate,-100; bonus bSPGainValue,10; },{},{ heal 0,-100; } 4280,Geographer_Card,Geographer Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"AL_BLESSING",2+8*(getskilllv("AL_BLESSING")==10),30; },{},{} -4281,Zipper_Bear_Card,Zipper Bear Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,30; bonus2 bSPDrainValue,-1,0; if(BaseClass==Job_Merchant) bonus bUnbreakableWeapon,0; },{},{} +4281,Zipper_Bear_Card,Zipper Bear Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,30; bonus bSPDrainValue,-1; if(BaseClass==Job_Merchant) bonus bUnbreakableWeapon,1; },{},{} 4282,Tengu_Card,Tengu Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItemGroup,IG_Recovery,600; },{},{} 4283,Greatest_General_Card,Greatest General Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"MO_CALLSPIRITS",5,2+18*(BaseClass==Job_Acolyte); },{},{} 4284,Chepet_Card,Chepet Card,6,20,,10,,,,,,,,2,,,,,{ bonus4 bAutoSpell,"AL_HEAL",5,50,1; },{},{} @@ -2385,7 +2472,7 @@ 4339,Mineral_Card,Mineral Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,-25; bonus bDef,3; },{},{} 4340,Teddy_Bear_Card,Teddy Bear Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Undead,30; },{},{} 4341,Metaling_Card,Metaling Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50; },{},{} -4342,Rsx_0806_Card,RSX-0806 Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,3; bonus bUnbreakableArmor,0; bonus bNoKnockback,0; },{},{} +4342,Rsx_0806_Card,RSX-0806 Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,3; bonus bUnbreakableArmor,1; bonus bNoKnockback,0; },{},{} 4343,Mole_Card,Holden Card,6,20,,10,,,,,,,,769,,,,,{ bonus bLuk,2; },{},{} 4344,Anopheles_Card,Anopheles Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12058,RC_Insect,50; },{},{} 4345,Hill_Wind_Card,Hill Wind Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"MG_THUNDERSTORM",5; bonus2 bSkillAtk,"WZ_JUPITEL",5; bonus2 bSkillAtk,"WZ_VERMILION",5; },{},{ heal 0,-50; } @@ -2410,7 +2497,7 @@ 4364,Magaleta_Card,Margaretha Sorin Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,1; bonus5 bAutoSpellWhenHit,"PR_LEXDIVINA",5,150,BF_MAGIC,1; },{},{} 4365,B_Katrinn_Card,High Wizard Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus bVariableCastrate,100; bonus bSPrecovRate,-100; },{},{ heal 0,-2000; } 4366,Katrinn_Card,Kathryne Keyron Card,6,20,,10,,,,,,,,769,,,,,{ .@r = getrefine(); bonus bVariableCastrate,.@r*-1; if(.@r>=9) { bonus bMatkRate,2; } },{},{} -4367,B_Shecil_Card,Sniper Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bHpDrainRate,100,20; bonus bHPrecovRate,-10; },{},{} +4367,B_Shecil_Card,Sniper Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bHPDrainRate,100,20; bonus bHPrecovRate,-10; },{},{} 4368,Shecil_Card,Cecil Damon Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,5; bonus bHit,-30; },{},{} 4369,Venatu_Card,Venatu Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLuk,readparam(bAgi)/18; },{},{} 4370,Dimik_Card,Dimik Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,getrefine()-5; },{},{} @@ -2418,7 +2505,7 @@ 4372,Bacsojin_Card,White Lady Card,6,20,,10,,,,,,,,769,,,,,{ bonus bHealPower,30; bonus bUseSPrate,15; },{},{} 4373,Chung_E_Card,Green Maiden Card,6,20,,10,,,,,,,,4,,,,,{ .@r = getrefine(); bonus bLuk,.@r-5; bonus bCritical,.@r; },{},{} 4374,Apocalips_H_Card,Vesper Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,30; },{},{} -4375,Orc_Baby_Card,Orc Baby Card,6,20,,10,,,,,,,,4,,,,,{ if(getrefine()>=9) { bonus2 bSubEle,Ele_Neutral,15; bonus bFlee,15; } else { bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,10; } },{},{} +4375,Orc_Baby_Card,Orc Baby Card,6,20,,10,,,,,,,,4,,,,,{ .@i = (getrefine()>=9?15:10); bonus2 bSubEle,Ele_Neutral,.@i; bonus bFlee,.@i; },{},{} 4376,Lady_Tanee_Card,Lady Tanee Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,-40; bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,200; bonus2 bAddItemHealRate,513,100; },{},{} 4377,Green_Iguana_Card,Grove Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12063,RC_Formless,50; },{},{} 4378,Acidus_Card,Gold Acidus Card,6,20,,10,,,,,,,,64,,,,,{ if(getrefine()<=4) { bonus bMaxHPrate,8; bonus bMaxSPrate,8; bonus bHPrecovRate,5; bonus bSPrecovRate,5; } else { bonus bMaxHPrate,4; bonus bMaxSPrate,4; } },{},{} @@ -2450,7 +2537,7 @@ 4404,Skogul_Card,Skogul Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAddEffWhenHit,Eff_Bleeding,3000,ATF_TARGET|ATF_SELF; },{},{} 4405,Frus_Card,Frus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMagicDamageReturn,getrefine()*2; if(BaseClass==Job_Mage) bonus bMdef,3; },{},{} 4406,Skeggiold_Card,Skeggiold Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Demon,2; },{},{} -4407,Randgris_Card,Randgris Card,6,20,,10,,,,,,,,2,,,,,{ bonus bUnbreakableWeapon,0; bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"SA_DISPELL",1,50; },{},{} +4407,Randgris_Card,Randgris Card,6,20,,10,,,,,,,,2,,,,,{ bonus bUnbreakableWeapon,1; bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"SA_DISPELL",1,50; },{},{} 4408,Gloom_Under_Night_Card,Gloom Under Night Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEle,Ele_Holy,40; bonus2 bAddEle,Ele_Dark,40; bonus2 bAddRace,RC_Angel,40; bonus2 bAddRace,RC_Demon,40; },{},{} 4409,Agav_Card,Agav Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMatkRate,5; bonus bDef,-10; if(BaseClass==Job_Mage) bonus bMaxSP,100; },{},{} 4410,Echio_Card,Echio Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,15; if(BaseClass==Job_Swordman) bonus bMaxHP,500; },{},{} @@ -2470,7 +2557,7 @@ 4424,Stapo_Card,Stapo Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_PICKSTONE",1; skill "TF_THROWSTONE",1; },{},{} 4425,Atroce_Card,Atroce Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,25; autobonus "{ bonus bAspdRate,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} 4426,Byorgue_Card,Byorgue Card,6,20,,10,,,,,,,,16,,,,,{ if(BaseJob==Job_Rogue) { bonus bMatkRate,10; bonus2 bAddClass,Class_All,10; } },{},{} -4427,Sword_Guardian_Card,Sword Guardian Card,6,20,,10,,,,,,,,2,,,,,{ if(getiteminfo(getequipid(EQI_HAND_R),11)==2||getiteminfo(getequipid(EQI_HAND_R),11)==3) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,62,25; } },{},{} +4427,Sword_Guardian_Card,Sword Guardian Card,6,20,,10,,,,,,,,2,,,,,{ .@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==2||.@i==3) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,62,25; } },{},{} 4428,Bow_Guardian_Card,Bow Guardian Card,6,20,,10,,,,,,,,2,,,,,{ if(getiteminfo(getequipid(EQI_HAND_R),11)==11) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,"AC_SHOWER",50; } },{},{} 4429,Salamander_Card,Salamander Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40; },{},{} 4430,Ifrit_Card,Ifrit Card,6,20,,10,,,,,,,,136,,,,,{ bonus bBaseAtk,(JobLevel/10); bonus bCritical,(JobLevel/10); bonus bHit,(JobLevel/10); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",10,1; },{},{} @@ -2483,15 +2570,16 @@ 4437,Hell_Poodle_Card,Hell Poodle Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHit,1; bonus2 bAddItemHealRate,517,100; bonus3 bAddEff,Eff_Bleeding,50,ATF_SHORT; },{},{} 4438,Banshee_Card,Banshee Card,6,20,,10,,,,,,,,769,,,,,{ if(BaseClass==Job_Mage){ bonus bMaxSP,100; bonus bMaxHP,-100; bonus2 bSkillAtk,"MG_NAPALMBEAT",20; bonus2 bSkillAtk,"MG_SOULSTRIKE",20; bonus2 bSkillAtk,"HW_NAPALMVULCAN",20; } },{},{} 4439,Flame_Skull_Card,Flame Skull Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bResEff,Eff_Blind,3000; bonus2 bResEff,Eff_Stun,3000; bonus2 bResEff,Eff_Curse,3000; bonus2 bResEff,Eff_Stone,3000; bonus2 bAddEffWhenHit,Eff_Blind,500; bonus2 bAddEffWhenHit,Eff_Stun,500; bonus2 bAddEffWhenHit,Eff_Curse,500; bonus2 bAddEffWhenHit,Eff_Stone,500; },{},{} -4440,Necromancer_Card,Necromancer Card,6,20,,10,,,,,,,,2,,,,,{ if(getiteminfo(getequipid(EQI_HAND_R),11)==10) { bonus bInt,1; bonus2 bIgnoreMdefClassRate,Class_Normal,2; bonus2 bIgnoreMdefClassRate,Class_Boss,2; } },{},{} +4440,Necromancer_Card,Necromancer Card,6,20,,10,,,,,,,,2,,,,,{ .@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==10 || .@i==23) { bonus bInt,1; bonus2 bIgnoreMdefClassRate,Class_Normal,2; bonus2 bIgnoreMdefClassRate,Class_Boss,2; } },{},{} 4441,Fallen_Bishop_Card,Fallen Bishop Hibram Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMatkRate,10; bonus bMaxSPrate,-50; bonus2 bMagicAddRace,RC_Angel,50; bonus2 bMagicAddRace,RC_DemiHuman,50; bonus2 bMagicAddRace,RC_Player,50; },{},{} -4442,Tatacho_Card,Tatacho Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Neutral,20; bonus2 bAddEle,Ele_Neutral,5; },{},{} -4443,Aqua_Elemental_Card,Aqua Elemental Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Water,20; bonus2 bAddEle,Ele_Water,5; },{},{} -4444,Draco_Card,Draco Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Earth,20; bonus2 bAddEle,Ele_Earth,5; },{},{} -4445,Luciola_Vespa_Card,Luciola Vespa Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Wind,20; bonus2 bAddEle,Ele_Wind,5; },{},{} -4447,Centipede_Card,Centipede Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Poison,20; bonus2 bAddEle,Ele_Poison,5; },{},{} -4448,Cornus_Card,Cornus Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Holy,20; bonus2 bAddEle,Ele_Holy,5; },{},{} -4449,Dark_Shadow_Card,Dark Shadow Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Dark,20; bonus2 bAddEle,Ele_Dark,5; },{},{} +4442,Tatacho_Card,Tatacho Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Neutral,20; bonus2 bAddEle,Ele_Neutral,5; },{},{} +4443,Aqua_Elemental_Card,Aqua Elemental Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Water,20; bonus2 bAddEle,Ele_Water,5; },{},{} +4444,Draco_Card,Draco Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Earth,20; bonus2 bAddEle,Ele_Earth,5; },{},{} +4445,Luciola_Vespa_Card,Luciola Vespa Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Wind,20; bonus2 bAddEle,Ele_Wind,5; },{},{} +4446,Enhanced_Skeleton_Card,Enhanced Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,15; bonus2 bAddEff,Eff_Stun,(BaseLevel>=100?300:200); },{},{} +4447,Centipede_Card,Centipede Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Poison,20; bonus2 bAddEle,Ele_Poison,5; },{},{} +4448,Cornus_Card,Cornus Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Holy,20; bonus2 bAddEle,Ele_Holy,5; },{},{} +4449,Dark_Shadow_Card,Dark Shadow Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Dark,20; bonus2 bAddEle,Ele_Dark,5; },{},{} 4450,Banshee_Master_Card,Banshee Master Card,6,20,,10,,,,,,,,16,,,,,{ bonus bInt,1; bonus bMatk,10; },{},{} 4451,Ant_Buyanne_Card,Entweihen Crothen Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMatk,100; },{},{} 4452,Centipede_Larva_Card,Centipede Larva Card,6,20,,10,,,,,,,,2,,,,,{ bonus bInt,1; bonus bMatk,3; },{},{} @@ -2524,19 +2612,19 @@ 4479,Light_Up_Card4,Light Up Card,6,20,,10,,,,,,,,4,,,,,{},{},{} 4480,Sealed_Kiel_Card,Sealed Kiel Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDelayRate,((getrefine()>14)?-20:-15); },{},{} 4481,Sealed_Ktullanux_Card,Sealed Ktullanux Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEle,Ele_Fire,((getrefine()>14)?35:25); bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,10,BF_WEAPON|BF_MAGIC,0; },{},{} -4482,Sealed_B_Ygnizem_Card,Sealed General Egnigem Cenia Card,6,20,,10,,,,,,,,64,,,,,{ set .@rate,((getrefine()>14)?7:5); bonus bMaxHPrate,.@rate; bonus bMaxSPrate,.@rate; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000; },{},{} -4483,Sealed_Dracula_Card,Sealed Dracula Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSpDrainRate,((getrefine()>14)?70:50),5; },{},{} +4482,Sealed_B_Ygnizem_Card,Sealed General Egnigem Cenia Card,6,20,,10,,,,,,,,64,,,,,{ .@rate = ((getrefine()>14)?7:5); bonus bMaxHPrate,.@rate; bonus bMaxSPrate,.@rate; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000; },{},{} +4483,Sealed_Dracula_Card,Sealed Dracula Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPDrainRate,((getrefine()>14)?70:50),5; },{},{} 4484,Sealed_Mistress_Card,Sealed Mistress Card,6,20,,10,,,,,,,,769,,,,,{ bonus bNoGemStone,0; bonus bUseSPrate,((getrefine()>14)?35:50); },{},{} -4485,Sealed_Gloom_Card,Sealed Gloom Under Night Card,6,20,,10,,,,,,,,16,,,,,{ set .@rate,((getrefine()>14)?30:20); bonus2 bAddEle,Ele_Holy,.@rate; bonus2 bAddEle,Ele_Dark,.@rate; bonus2 bAddRace,RC_Angel,.@rate; bonus2 bAddRace,RC_Demon,.@rate; },{},{} +4485,Sealed_Gloom_Card,Sealed Gloom Under Night Card,6,20,,10,,,,,,,,16,,,,,{ .@rate = ((getrefine()>14)?30:20); bonus2 bAddEle,Ele_Holy,.@rate; bonus2 bAddEle,Ele_Dark,.@rate; bonus2 bAddRace,RC_Angel,.@rate; bonus2 bAddRace,RC_Demon,.@rate; },{},{} 4486,Sealed_Berz_Card,Sealed Berzebub Card,6,20,,10,,,,,,,,136,,,,,{ bonus bVariableCastrate,-15; },{},{} 4487,Sealed_Ifrit_Card,Sealed Ifrit Card,6,20,,10,,,,,,,,136,,,,,{ bonus bBaseAtk,(JobLevel/20); bonus bCritical,(JobLevel/20); bonus bHit,(JobLevel/20); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",5,1; },{},{} 4488,Sealed_D_Lord_Card,Sealed Dark Lord Card,6,20,,10,,,,,,,,64,,,,,{ bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,50; },{},{} 4489,Sealed_Pharaoh_Card,Sealed Pharaoh Card,6,20,,10,,,,,,,,769,,,,,{ bonus bUseSPrate,-15; },{},{} 4490,Sealed_M_Flower_Card,Sealed Moonlight Flower Card,6,20,,10,,,,,,,,64,,,,,{ skill "AL_INCAGI",((getrefine()>14)?5:1); },{},{} -4491,Sealed_B_Shecil_Card,Sealed Sniper Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHPrecovRate,-100; bonus2 bHpDrainRate,50,((getrefine()>14)?15:10); },{},{} +4491,Sealed_B_Shecil_Card,Sealed Sniper Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHPrecovRate,-100; bonus2 bHPDrainRate,50,((getrefine()>14)?15:10); },{},{} 4492,Sealed_Orc_Hero_Card,Sealed Orc Hero Card,6,20,,10,,,,,,,,769,,,,,{ bonus bVit,3; bonus2 bResEff,Eff_Stun,((getrefine()>14)?6000:4000); },{},{} 4493,Sealed_Tao_Card,Sealed Tao Gunka Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,((getrefine()>14)?75:50); bonus bDefRate,-50; bonus bMdefRate,-50; },{},{} -4494,Sealed_TurtleG_Card,Sealed Turtle General Card,6,20,,10,,,,,,,,2,,,,,{ set .@rate, ((getrefine()>14)?15:10); bonus2 bAddClass,Class_All,.@rate; bonus3 bAutoSpell,"SM_MAGNUM",10,15; },{},{} +4494,Sealed_TurtleG_Card,Sealed Turtle General Card,6,20,,10,,,,,,,,2,,,,,{ .@rate = ((getrefine()>14)?15:10); bonus2 bAddClass,Class_All,.@rate; bonus3 bAutoSpell,"SM_MAGNUM",10,15; },{},{} 4495,Sealed_Amon_Ra_Card,Sealed Amon Ra Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",((getrefine()>14)?8:5),(15+35*(readparam(bInt)>=99)); },{},{} 4496,Sealed_Drake_Card,Sealed Drake Card,6,20,,10,,,,,,,,2,,,,,{},{},{} 4497,Sealed_Knight_WS_Card,Sealed Stormy Knight Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"WZ_STORMGUST",1,10; bonus2 bAddEff,Eff_Freeze, ((getrefine()>14)?1500:1000); },{},{} @@ -2544,7 +2632,7 @@ 4499,Sealed_Samurai_Card,Sealed Samurai Spector Card,6,20,,10,,,,,,,,2,,,,,{ bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; if (getrefine()>14) bonus2 bHPLossRate,777,8000; else bonus2 bHPLossRate,888,5000; },{},{ if((Hp<=999) && !getmapflag(strcharinfo(3),mf_pvp) && !getmapflag(strcharinfo(3),mf_pvp_noparty) && !getmapflag(strcharinfo(3),mf_pvp_noguild)) { heal(1-Hp),0; } else { heal -999,0; } } 4500,Sealed_Orc_Load_Card,Sealed Orc Lord Card,6,20,,10,,,,,,,,16,,,,,{ bonus bShortWeaponDamageReturn,((getrefine()>14)?25:15); },{},{} 4501,Sealed_B_Magaleta_Card,Sealed High Priest Card,6,20,,10,,,,,,,,16,,,,,{ bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,((getrefine()>14)?35:25),BF_WEAPON|BF_MAGIC,0; },{},{} -4502,Sealed_B_Harword_Card,Sealed MasterSmith Card,6,20,,10,,,,,,,,2,,,,,{ if (getrefine()>14) { bonus bBreakWeaponRate,800; bonus bBreakArmorRate,600; } else { bonus bBreakWeaponRate,500; bonus bBreakArmorRate,400; } },{},{} +4502,Sealed_B_Harword_Card,Sealed MasterSmith Card,6,20,,10,,,,,,,,2,,,,,{ .@r = getrefine(); bonus bBreakWeaponRate,(.@r>14?800:500); bonus bBreakArmorRate,(.@r>14?600:500); },{},{} 4503,Sealed_Apocalips_H_Card,Sealed Vesper Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,((getrefine()>14)?25:15); },{},{} 4504,Sealed_Eddga_Card,Sealed Eddga Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,((getrefine()>14)?-35:-50); },{ sc_start4 SC_ENDURE,60000,10,0,0,1; },{ sc_end SC_ENDURE; } 4505,Scaraba_Card,Scaraba Card,6,20,,10,,,,,,,,136,,,,,{ bonus bMatk,20; bonus bMaxSPrate,-1; },{},{} @@ -2560,11 +2648,11 @@ 4515,Alnoldi_Card,Alnoldi Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Plant,30; },{},{} 4516,Comodo_Card,Comodo Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDef,50; bonus bFlee,-25; },{},{} 4517,Cendrawasih_Card,Cendrawasih Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,2; if(BaseClass==Job_Mage){ bonus bInt,getrefine()/3; } },{},{} -4518,Banaspaty_Card,Banaspaty Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Burning,1500; },{},{} +4518,Banaspaty_Card,Banaspaty Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAddEff,Eff_Burning,500,ATF_TARGET; },{},{} 4519,Butoijo_Card,Butoijo Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Angel,20; },{},{} 4520,Leak_Card,Leak Card,6,20,,10,,,,,,,,4,,,,,{ bonus bStr,3; bonus2 bAddEff,Eff_Confusion,5000; bonus3 bAddEff,Eff_Confusion,5000,ATF_SKILL; },{},{} 4521,Sedora_Card,Sedora Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,15; },{},{} -4522,Sropho_Card,Sropho Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"WL_FROSTMISTY",1,30; /* Fix me! Should cause Freezing status at 50 rate for 3000ms. */ },{},{} +4522,Sropho_Card,Sropho Card,6,20,,10,,,,,,,,2,,,,,{ bonus4 bAddEff,Eff_Crystalize,500,ATF_SHORT,3000; },{},{} 4523,Pot_Dofle_Card,Pot Dofle Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Water; bonus2 bSubRace,RC_Fish,10; },{},{} 4524,King_Dramoh_Card,King Dramoh Card,6,20,,10,,,,,,,,769,,,,,{ bonus bStr,2; if(BaseClass==Job_Swordman){ bonus bStr,2+(getrefine()/3); } },{},{} 4525,Kraken_Card,Kraken Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; skill "TF_HIDING",1; skill "RG_RAID",1; bonus5 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250,1; },{},{ sc_end SC_HIDING; } @@ -2580,13 +2668,13 @@ 4535,Sealed_Rand_Card,Sealed Randgris Card,6,20,,10,,,,,,,,2,,,,,{},{},{} 4536,Sealed_Atroce_Card,Sealed Atroce Card,6,20,,10,,,,,,,,2,,,,,{ .@r = getrefine(); bonus bBaseAtk,((.@r>14)?25:15); autobonus "{ bonus bAspdRate,((.@r>14)?75:50); }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} 4537,Sealed_Phreeoni_Card,Sealed Phreeoni Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHit,((getrefine()>14)?75:50); },{},{} -4538,Sealed_Bacsojin_Card,Sealed White Lady Card,6,20,,10,,,,,,,,769,,,,,{ if (getrefine()>14) { bonus bHealPower,25; bonus bUseSPrate,20; } else { bonus bHealPower,15; bonus bUseSPrate,30; } },{},{} -4539,Sealed_F_Bishop_Card,Sealed Fallen Bishop Hibram Card,6,20,,10,,,,,,,,64,,,,,{ .@r = getrefine(); bonus bMatkRate,((.@r>14)?8:5); bonus bMaxSPrate,-50; set .@rate,((.@r>14)?33:25); bonus2 bMagicAddRace,RC_Angel,.@rate; bonus2 bMagicAddRace,RC_DemiHuman,.@rate; bonus2 bMagicAddRace,RC_Player,.@rate; },{},{} -4540,SLD_Lord_Of_Death_Card,Sealed Lord of The Dead Card,6,20,,10,,,,,,,,2,,,,,{ set .@rate, ((getrefine()>14)?350:250); bonus3 bAddEff,Eff_Stun,.@rate,ATF_SHORT; bonus3 bAddEff,Eff_Curse,.@rate,ATF_SHORT; bonus3 bAddEff,Eff_Silence,.@rate,ATF_SHORT; bonus3 bAddEff,Eff_Poison,.@rate,ATF_SHORT; bonus3 bAddEff,Eff_Bleeding,.@rate,ATF_SHORT; bonus2 bWeaponComaClass,Class_Normal,1; },{},{} -4541,SLD_B_Katrinn_Card,Sealed High Wizard Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; .@r = getrefine(); if (.@r>14) { bonus bVariableCastrate,120; bonus bSPrecovRate,-120; } else { bonus bVariableCastrate,150; bonus bSPrecovRate,-150; } },{},{ heal 0,((.@r>14)?-2000:-3000); } +4538,Sealed_Bacsojin_Card,Sealed White Lady Card,6,20,,10,,,,,,,,769,,,,,{ .@r = getrefine(); bonus bHealPower,(.@r>14?25:15); bonus bUseSPrate,(.@r>14?20:30); },{},{} +4539,Sealed_F_Bishop_Card,Sealed Fallen Bishop Hibram Card,6,20,,10,,,,,,,,64,,,,,{ .@r = getrefine(); bonus bMatkRate,((.@r>14)?8:5); bonus bMaxSPrate,-50; .@rate = ((.@r>14)?33:25); bonus2 bMagicAddRace,RC_Angel,.@rate; bonus2 bMagicAddRace,RC_DemiHuman,.@rate; bonus2 bMagicAddRace,RC_Player,.@rate; },{},{} +4540,SLD_Lord_Of_Death_Card,Sealed Lord of The Dead Card,6,20,,10,,,,,,,,2,,,,,{ .@rate = ((getrefine()>14)?350:250); bonus3 bAddEff,Eff_Stun,.@rate,ATF_SHORT; bonus3 bAddEff,Eff_Curse,.@rate,ATF_SHORT; bonus3 bAddEff,Eff_Silence,.@rate,ATF_SHORT; bonus3 bAddEff,Eff_Poison,.@rate,ATF_SHORT; bonus3 bAddEff,Eff_Bleeding,.@rate,ATF_SHORT; bonus2 bComaClass,Class_Normal,1; },{},{} +4541,SLD_B_Katrinn_Card,Sealed High Wizard Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; if(getrefine()>14) { bonus bVariableCastrate,120; bonus bSPrecovRate,-120; } else { bonus bVariableCastrate,150; bonus bSPrecovRate,-150; } },{},{ heal 0,((getrefine()>14)?-2000:-3000); } 4542,SLD_Detale_Card,Sealed Detale Card,6,20,,10,,,,,,,,16,,,,,{},{},{} 4543,SLD_Garm_Card,Sealed Hatii Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Freeze,((getrefine()>14)?4000:2500); },{},{} -4544,SLD_Dark_Snake_Card,Sealed Evil Snake Lord Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,3; if (getrefine()>14) { bonus2 bResEff,Eff_Blind,7500; bonus2 bResEff,Eff_Curse,7500; } else { bonus2 bResEff,Eff_Blind,5000; bonus2 bResEff,Eff_Curse,5000; } },{},{} +4544,SLD_Dark_Snake_Card,Sealed Evil Snake Lord Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,3; .@i = (getrefine()>14?7500:5000); bonus2 bResEff,Eff_Blind,.@i; bonus2 bResEff,Eff_Curse,.@i; },{},{} 4545,Novice_Poring_Card,Novice Poring Card,6,20,,10,,,,,,,,769,,,,,{ bonus bLuk,1; },{},{} 4549,Upd_Maya_Puple_Card,Upd Maya Puple Card,6,20,,10,,,,,,,,769,,,,,{ bonus bIntravision,0; bonus bAllStats,1; skill "AL_RUWACH",1; },{},{} 4550,Upd_Bow_Guardian_Card,Upd Bow Guardian Card,6,20,,10,,,,,,,,2,,,,,{ if(getiteminfo(getequipid(EQI_HAND_R),11)==11) { bonus2 bSkillAtk,"RA_ARROWSTORM",50; bonus bCritical,25+10*(getequiprefinerycnt(EQI_HAND_R)/4); bonus bHit,5; bonus3 bAutoSpell,"HT_PHANTASMIC",1,100; } },{},{} @@ -2611,7 +2699,7 @@ 4571,Gertie_Card,Gertie Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; skill "RG_CLOSECONFINE",1; },{},{} 4572,Randel_Card,Randel Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; skill "CR_AUTOGUARD",3; },{},{} 4573,Trentini_Card,Trentini Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; if(BaseJob==Job_Dancer) { bonus bMaxHPrate,10; bonus bMaxSPrate,5;} },{},{} -4574,General_Daehyon_Card,General Daehyon Card,6,20,,10,,,,,,,,2,,,,,{ if((getiteminfo(getequipid(EQI_HAND_R),11) == 3) || (getiteminfo(getequipid(EQI_HAND_R),11) == 4)) { bonus bBaseAtk,100; } },{},{} +4574,General_Daehyon_Card,General Daehyon Card,6,20,,10,,,,,,,,2,,,,,{ .@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==3||.@i==4) { bonus bBaseAtk,100; } },{},{} 4575,Armed_Guard_Soheon_Card,Armed Guard Soheon Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,10; if(getiteminfo(getequipid(EQI_HAND_R),11) == 1) { .@r = getrefine(); if(.@r>=10) { bonus bAspd,1; } if(.@r>=14) { bonus bAspd,1; } } },{},{} 4576,Gioia_Card,Gioia Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bMagicAtkEle,Ele_Wind,100; bonus2 bMagicAtkEle,Ele_Ghost,100; bonus2 bSubEle,Ele_All,-30; },{},{} 4577,Elvira_Card,Elvira Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bMagicAtkEle,Ele_Wind,20; bonus2 bMagicAtkEle,Ele_Ghost,20; },{},{} @@ -2630,7 +2718,7 @@ 4590,Bangungot_Card,Bangungot Card,6,20,,10,,,,,,,,16,,,,,{ bonus bInt,4; bonus5 bAutoSpellWhenHit,"NPC_WIDESLEEP",5,70,BF_MAGIC,0; },{},{} 4591,Bakonawa_Card,Bakonawa Card,6,20,,10,,,,,,,,16,,,,,{ bonus bStr,4; bonus5 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",5,70,BF_WEAPON,0; },{},{} 4592,Buwaya_Card,Buwaya Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,4; bonus5 bAutoSpellWhenHit,"NPC_WIDESTONE",5,70,BF_MAGIC,0; },{},{} -4593,Menblatt_Card,Menblatt Card,6,20,,10,,,,,,,,4,,,,,{ bonus bLongAtkDef,readparam(bDex)/10; },{},{} +4593,Menblatt_Card,Menblatt Card,6,20,,10,,,,,,,,4,,,,,{ bonus bLongAtkRate,readparam(bDex)/10; },{},{} 4594,Petal_Card,Petal Card,6,20,,10,,,,,,,,4,,,,,{ bonus bCritAtkRate,2*(readparam(bLuk)/10); },{},{} 4595,Cenere_Card,Cenere Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAspdRate,2*(readparam(bAgi)/10); bonus bDelayrate,-2*(readparam(bAgi)/10); },{},{} 4596,Antique_Book_Card,Antique Book Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMatk,5*(readparam(bInt)/10); },{},{} @@ -2647,7 +2735,7 @@ 4607,Faithful_Manager_Card,Faithful Manager Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus bMatk,5; if(getiteminfo(getequipid(EQI_HAND_R),11) == 15) { .@r = getrefine(); if(.@r>=10) { bonus bBaseAtk,20; bonus bMatk,20; } if(.@r>=14) { bonus bBaseAtk,20; bonus bMatk,20; } } },{},{} 4608,White_Knight_Card,White Knight Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,15; bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; },{},{} 4609,Khalitzburg_Knight_Card,Khalitzburg Knight Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,20; bonus2 bSubSize,Size_Medium,25; bonus2 bSubSize,Size_Large,25; },{},{} -4610,Sarah_Card,Sarah Card,6,10,,10,,,,,,,,16,,,,,{/*No info yet*/},{},{} +4610,Sarah_Card,Sarah Card,6,10,,10,,,,,,,,16,,,,,{ bonus bAbsorbDmgMaxHP,100; },{},{} 4625,Time_Holder_Card,Time Holder Card,6,10,,10,,,,,,,,2,,,,,{ bonus bMatkRate,20; bonus bUseSPrate,10; },{},{} 4626,Big_Ben_Card,Big Ben Card,6,10,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Formless,10; bonus2 bMagicAddRace,RC_Demon,10; },{},{} 4627,Big_Bell_Card,Big Bell Card,6,10,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Formless,10; bonus2 bAddRace,RC_Demon,10; },{},{} @@ -2655,8 +2743,17 @@ 4629,Arc_Elder_Card,Arc Elder Card,6,10,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Earth,30; },{},{} 4630,Nightmare_Timer_Keeper_Card,Nightmare Timer Keeper Card,6,10,,10,,,,,,,,64,,,,,{ bonus3 bAutoSpell,"NPC_WIDECURSE",2,1; },{},{} 4631,Owl_Viscount_Card,Owl Viscount Card,6,10,,10,,,,,,,,136,,,,,{ bonus bAspdRate,3; },{},{} -4632,Owl_Marquees_Card,Owl Marquees Card,6,10,,10,,,,,,,,136,,,,,{ if(getskilllv(287)==5) bonus5 bAutoSpell,"SA_VIOLENTGALE",5,1,BF_SHORT,0; else bonus5 bAutoSpell,"SA_VIOLENTGALE",1,1,BF_SHORT,0; },{},{} - +4632,Owl_Marquees_Card,Owl Marquees Card,6,10,,10,,,,,,,,136,,,,,{ bonus5 bAutoSpell,"SA_VIOLENTGALE",(getskilllv("SA_VIOLENTGALE")==5?5:1),1,BF_SHORT,0; },{},{} +4633,Enhanced_Archer_Skeleton_Card,Enhanced Archer Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus bLongAtkRate,(BaseLevel>=100?12:10); },{},{} +4634,Enhanced_Soldier_Skeleton_Card,Enhanced Soldier Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ if (BaseLevel<100) { bonus bCritical,9; } else { bonus bCritical,10; bonus bCritAtkRate,5; } },{},{} +4635,Enhanced_Amdarais_Card,Enhanced Amdarais Card,6,20,,10,,,,,,,,16,,,,,{ .@r = getrefine(); bonus bDef,(.@r*10); bonus bFlee,(.@r*-2); if (BaseLevel>=100) bonus bMaxHP,500; },{},{} +4636,Bijou_Card,Bijou Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bResEff,Eff_Freeze,10000; bonus bAtkRate,10; bonus bMatkRate,10; },{},{} +4637,Immortal_Corps_Card,Immortal Corps Card,6,20,,10,,,,,,,,4,,,,,{ bonus bHPGainValue,50; bonus bSPGainValue,5; bonus bNoRegen,1; bonus bNoRegen,2; },{},{ heal -1000,-100; } +4638,Watcher_Card,Watcher Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,30; bonus bSPDrainValue,-5; },{},{} +4639,Taffy_Card,Taffy Card,6,20,,10,,,,,,,,136,,,,,{ bonus bAtkRate,1; },{},{} +4640,Frozen_Wolf_Card,Frozen Wolf Card,6,20,,10,,,,,,,,136,,,,,{ bonus bMatkRate,1; },{},{} +4641,Zombie_Guard_Card,Zombie Guard Card,6,20,,10,,,,,,,,32,,,,,{ bonus bNoRegen,2; bonus bSPDrainValue,1; },{},{} +//=================================================================== // Armor Enchant System //=================================================================== 4700,Strength1,STR+1,6,20,,10,,,,,,,,,,,,,{ bonus bStr,1; },{},{} @@ -2833,6 +2930,7 @@ 4871,SP75,SP+75,6,20,,10,,,,,,,,,,,,,{ bonus bMaxSP,75; },{},{} 4872,DelayafterAttack2Lv,DelayafterAttack2Lv,6,10,,,,,,,,,,,,,,,{ bonus bAspdRate,4; bonus bDelayrate,-4; },{},{} 4873,DelayafterAttack3Lv,DelayafterAttack3Lv,6,10,,,,,,,,,,,,,,,{ bonus bAspdRate,4; bonus bDelayrate,-4; },{},{} +4876,Runaway_Magic,Runaway Magic,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 4881,DelayafterAttack4Lv,DelayafterAttack4Lv,6,10,,,,,,,,,,,,,,,{ bonus bAspdRate,4; bonus bDelayrate,-4; },{},{} 4882,ATK_+_1%,ATK + 1%,6,10,,0,,,,,,,,,,,,,{ bonus bAtkRate,1; },{},{} 4883,MATK_+_1%,MATK + 1%,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,1; },{},{} @@ -2852,7 +2950,7 @@ 4897,MATK_+_3%,MATK + 3%,6,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ bonus bMatkRate,3; },{},{} 4898,MATK_+_4%,MATK + 4%,6,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ bonus bMatkRate,4; },{},{} 4899,MATK_+_5%,MATK + 5%,6,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ bonus bMatkRate,5; },{},{} -4900,MHP+5%,MHP+5%,6,10,,,,,,,,,,,,,,,{ bonus bMaxSPrate,5; },{},{} +4900,MHP+5%,MHP+5%,6,10,,,,,,,,,,,,,,,{ bonus bMaxHPrate,5; },{},{} 4902,DEF+18,DEF+18,6,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ bonus bMdef,18; },{},{} 4903,DEF+21,DEF+21,6,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ bonus bMdef,21; },{},{} 4904,ATK_+_6%,ATK + 6%,6,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ bonus bAtkRate,6; },{},{} @@ -2902,7 +3000,7 @@ 4948,Delay_After_Skill_Lv1,Delay After Skill Lv1,6,10,,0,,,,,,,,,,,,,{ bonus bDelayrate,-2; },{},{} 4949,Delay_After_Skill_Lv2,Delay After Skill Lv2,6,10,,0,,,,,,,,,,,,,{ bonus bDelayrate,-4; },{},{} 4950,Delay_After_Skill_Lv3,Delay After Skill Lv3,6,10,,0,,,,,,,,,,,,,{ bonus bDelayrate,-6; },{},{} - +//=================================================================== // More Headgears //=================================================================== 5001,Headset,Headset,4,20,,200,,3,,0,0xFFFFFFFE,63,2,256,,1,1,87,{ bonus2 bResEff,Eff_Curse,1000; },{},{} @@ -2913,7 +3011,7 @@ 5006,Machoman_Glasses,Machoman's Glasses,4,36000,,100,,1,,0,0xFFFFFFFE,63,2,512,,0,0,92,{},{},{} 5007,Loard_Circlet,Grand Circlet,4,20,,200,,7,,0,0xFFFFFFFE,63,2,256,,55,1,93,{ bonus bStr,1; bonus bInt,1; bonus bLuk,1; bonus bMdef,4; },{},{} 5008,Puppy_Love,Puppy Love,4,20,,100,,1,,0,0xFFFFFFFE,63,2,256,,0,0,94,{},{},{} -5009,Safety_Helmet,Safety Helmet,4,20,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,95,{ bonus bMdef,3; bonus bUnbreakableHelm,0; },{},{} +5009,Safety_Helmet,Safety Helmet,4,20,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,95,{ bonus bMdef,3; bonus bUnbreakableHelm,1; },{},{} 5010,Indian_Hair_Piece,Indian Fillet,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,0,1,96,{},{},{} 5011,Antenna,Aerial,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,0,1,97,{},{},{} 5012,Ph.D_Hat,Ph.D Hat,4,20,,200,,3,,0,0xFFFFFFFE,63,2,256,,0,1,98,{},{},{} @@ -2948,7 +3046,7 @@ 5041,Heart_Hair_Pin,Heart Hairpin,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,126,{},{},{} 5042,Hair_Protector,Bao Bao,4,20,,150,,0,,0,0xFFFFFFFE,63,2,256,,14,1,127,{},{},{} 5043,Opera_Ghost_Mask,Opera Phantom Mask,4,20,,200,,1,,0,0xFFFFFFFE,63,2,512,,20,0,128,{},{},{} -5044,Devil's_Wing,Evil Wing Ears,4,20,,350,,2,,0,0x0,63,2,256,,45,1,129,{ bonus bVit,1; },{},{} +5044,Devil's_Wing,Evil Wing Ears,4,20,,350,,2,,0,0xFFFFFFFF,63,2,256,,45,1,129,{ bonus bVit,1; },{},{} 5045,Magician_Hat,Magician Hat,4,20,,500,,3,,0,0x00818314,63,2,256,,50,1,130,{ bonus bDex,1; bonus bAgi,1; bonus bMaxSP,50; },{},{} 5046,Bongun_Hat,Bongun Hat,4,20,,300,,5,,0,0xFFFFFFFF,63,2,769,,0,0,139,{},{},{} 5047,Fashion_Sunglass,Fashionable Glasses,4,20,,100,,0,,0,0xFFFFFFFE,63,2,256,,0,1,131,{},{},{} @@ -2985,7 +3083,7 @@ 5078,Sea_Otter_Cap,Sea-Otter Hat,4,20,,800,,3,,0,0xFFFFFFFF,63,2,256,,50,1,162,{ bonus bVit,1; },{},{} 5079,Crossed_Hair_Band,X Hairpin,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,163,{},{},{} 5080,Headgear_Of_Queen,Crown of Ancient Queen,4,20,,400,,4,,0,0xFFFFFFFF,63,2,256,,45,1,164,{},{},{} -5081,Mistress_Crown,Crown of Mistress,4,20,,100,,0,,0,0xFFFFFFFE,63,2,256,,75,1,165,{ bonus bMaxSP,100; bonus bInt,2; bonus bUnbreakableHelm,0; },{},{} +5081,Mistress_Crown,Crown of Mistress,4,20,,100,,0,,0,0xFFFFFFFE,63,2,256,,75,1,165,{ bonus bMaxSP,100; bonus bInt,2; bonus bUnbreakableHelm,1; },{},{} 5082,Mushroom_Band,Decorative Mushroom,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,166,{},{},{} 5083,Red_Tailed_Ribbon,Red Ribbon,4,20,,200,,1,,0,0xFFFFFFFF,63,2,256,,45,1,167,{ bonus bMdef,10; },{},{} 5084,Lazy_Raccoon,Lazy Smokie,4,20,,500,,1,,0,0xFFFFFFFE,63,2,256,,0,1,168,{ bonus2 bResEff,Eff_Sleep,2000; },{},{} @@ -3063,7 +3161,7 @@ 5156,Flu_Mask_F,Father's Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,8,{ bonus bMatkRate,1; },{},{} 5157,Viking_Helm_,Orc Helm,4,20,,500,,9,,1,0x000654E2,63,2,256,,0,1,86,{},{},{} 5158,Holy_Bonnet_,Monk Hat,4,30000,,100,,5,,1,0x00008110,63,2,256,,0,1,35,{ bonus bMdef,3; },{},{} -5159,Golden_Gear_,Golden Gear,4,20,,900,,5,,1,0xFFFFFFFE,63,2,256,,40,1,30,{ bonus bUnbreakableHelm,0; },{},{} +5159,Golden_Gear_,Golden Gear,4,20,,900,,5,,1,0xFFFFFFFE,63,2,256,,40,1,30,{ bonus bUnbreakableHelm,1; },{},{} 5160,Magestic_Goat_,Majestic Goat,4,20,,800,,5,,1,0x006444A2,63,2,256,,0,1,41,{ bonus bStr,1; },{},{} 5161,Sharp_Gear_,Spiky Band,4,20,,1000,,6,,1,0x0066D5F2,63,2,256,,50,1,43,{},{},{} 5162,Bone_Helm_,Bone Helm,4,20,,800,,7,,1,0x000444A2,63,2,256,,70,1,103,{ bonus2 bSubEle,Ele_Dark,-15; },{},{} @@ -3112,7 +3210,7 @@ 5205,Wreath,Emperor's Laurel Crown,4,20,,1000,,3,,0,0xFFFFFFFF,63,2,768,,0,1,261,{ bonus bAllStats,1; bonus bMdef,3; },{},{} 5206,Romantic_White_Flower,Romantic White Flower,4,20,,100,,0,,0,0xFFFFFFFE,63,2,1,,0,0,259,{ bonus2 bSubRace,RC_Plant,3; },{},{} 5207,Gold_Spirit_Chain,Angel Blessing,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,0,260,{ bonus bLuk,1; bonus2 bSubEle,Ele_Holy,5; },{},{} -5208,Rideword_Hat,Rideword Hat,4,20,,300,,2,,1,0xFFFFFFFE,63,2,256,,40,1,262,{ set .@i,(getrefine()>8)?2:1; bonus2 bHPDrainRate,50,8*.@i; bonus2 bSPDrainRate,10,4*.@i; bonus2 bHPLossRate,10,5000; },{},{} +5208,Rideword_Hat,Rideword Hat,4,20,,300,,2,,1,0xFFFFFFFE,63,2,256,,40,1,262,{ .@i = (getrefine()>8)?2:1; bonus2 bHPDrainRate,50,8*.@i; bonus2 bSPDrainRate,10,4*.@i; bonus2 bHPLossRate,10,5000; },{},{} 5209,Yellow_Baseball_Cap,Love Dad Cap,4,20,,300,,2,,0,0xFFFFFFFF,63,2,256,,0,1,263,{},{},{} 5210,Flying_Angel,Flapping Angel Wing,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,10,1,264,{ bonus bVariableCastrate,-3; bonus bAspdRate,3; bonus bInt,1; bonus bAgi,1; },{},{} 5211,Dress_Hat,Dress Hat,4,0,,200,,2,,1,0xFFFFFFFF,63,2,256,,20,1,265,{ bonus bMdef,7; bonus bStr,1; bonus bInt,1; bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bHealPower,5; if(getrefine()>=7) { bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHealPower,1; } },{},{} @@ -3166,7 +3264,7 @@ 5259,Elephant_Hat_,Elephant Hat,4,20,,500,,3,,0,0xFFFFFFFF,63,2,256,,0,1,215,{ bonus bVit,1; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; skill "AL_HOLYWATER",1; },{},{} 5260,Cookie_Hat,Cookie Hat,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,0,1,217,{ bonus bAgi,1; bonus bFlee2,5; bonus bCritAtkRate,5; },{},{} 5261,Silver_Tiara_,Silver Tiara,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,0,1,218,{ bonus bInt,2; if(BaseClass==Job_Mage) bonus bMatkRate,(JobLevel/20); if(Baseclass==Job_Acolyte) bonus bUseSPrate,-(JobLevel/10); if(BaseClass==Job_Archer) bonus bMaxSP,(JobLevel*2); },{},{} -5262,Gold_Tiara_,Golden Tiara,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,0,1,232,{ bonus bStr,2; bonus bUnbreakableHelm,0; if((readparam(bDex)<56)&&(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief)) bonus bDex,JobLevel/7; },{},{} +5262,Gold_Tiara_,Golden Tiara,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,0,1,232,{ bonus bStr,2; bonus bUnbreakableHelm,1; if((readparam(bDex)<56)&&(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief)) bonus bDex,JobLevel/7; },{},{} 5263,Ati_Atihan_Hat,Pagdayaw,4,20,,100,,1,,0,0xFFFFFFFE,63,2,769,,20,1,303,{ bonus2 bSubEle,Ele_Water,1; bonus2 bSubEle,Ele_Fire,1; bonus2 bSubEle,Ele_Wind,1; bonus2 bAddEff,Eff_Curse,300; },{},{} 5264,Aussie_Flag_Hat,Australian Flag Hat,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,0,1,304,{ bonus bAllStats,2; },{ specialeffect2 EF_GHOST; specialeffect2 EF_BAT; specialeffect2 EF_BAT2; },{} 5265,Apple_Of_Archer_C,Apple of Archer,4,1,,0,,7,,0,0xFFFFFFFE,63,2,256,,1,0,72,{ bonus bDex,4; },{},{} @@ -3193,7 +3291,7 @@ 5286,Pecopeco_Hairband,Pecopeco Hairband,4,20,,0,,3,,0,0xFFFFFFFF,63,2,256,,70,0,314,{ bonus bSpeedRate,25; bonus bAspdRate,-10; bonus bVariableCastrate,25; },{},{} 5287,Vacation_Hat,Vacation Hat,4,20,,200,,1,,1,0xFFFFFFFF,63,2,256,,30,0,315,{ bonus bVit,1; },{},{} 5288,Red_Glasses,Red Glasses,4,20,,0,,1,,0,0xFFFFFFFF,63,2,512,,0,0,316,{ bonus bInt,1; },{},{} -5289,Vanilmirth_Hat,Vanilmirth Hat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,30,0,317,{ bonus bUnbreakableHelm,0; bonus3 bAutoSpell,"MG_FIREBOLT",1,50; bonus3 bAutoSpell,"MG_COLDBOLT",1,50; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,50; bonus bMdef,5; },{},{} +5289,Vanilmirth_Hat,Vanilmirth Hat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,30,0,317,{ bonus bUnbreakableHelm,1; bonus3 bAutoSpell,"MG_FIREBOLT",1,50; bonus3 bAutoSpell,"MG_COLDBOLT",1,50; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,50; bonus bMdef,5; },{},{} 5290,Drooping_Bunny_,Drooping Bunny,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,249,{ bonus bDex,1; bonus bFlee,2; },{},{} 5291,Kettle_Hat,Kettle Hat,4,20,,600,,4,,0,0xFFFFFFFF,63,2,256,,30,1,318,{ bonus4 bAutoSpell,"SA_DELUGE",2,10,0; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; },{},{} 5292,Dragon_Skull,Dragon Skull,4,20,,800,,5,,0,0xFFFFFFFF,63,2,256,,50,1,319,{ bonus2 bSubRace,RC_Dragon,5; },{},{} @@ -3239,7 +3337,7 @@ 5332,Loki_Mask,Loki Mask,4,0,,200,,2,,0,0xFFFFFFFF,63,2,513,,20,0,346,{ bonus bFlee2,3; },{},{} 5333,Radio_Antenna,Radio Antenna,4,0,,1500,,2,,0,0xFFFFFFFF,63,2,256,,50,1,347,{ bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1; },{},{} 5334,Angeling_Wanna_Fly,Flapping Angeling,4,0,,700,,5,,1,0xFFFFFFFF,63,2,256,,1,1,348,{ bonus bLuk,2; bonus bDex,1; },{},{} -5335,Jumping_Poring,Jumping Poring,4,0,,300,,2,,0,0xFFFFFFFF,63,2,256,,0,0,349,{ bonus bLuk,1; bonus bUnbreakableHelm,0; },{},{} +5335,Jumping_Poring,Jumping Poring,4,0,,300,,2,,0,0xFFFFFFFF,63,2,256,,0,0,349,{ bonus bLuk,1; bonus bUnbreakableHelm,1; },{},{} 5336,Guildsman_Recruiter,Guildsman Recruiter Hat,4,,,0,,4,,0,0xFFFFFFFF,63,2,256,,10,1,350,{},{},{} 5337,Party_Recruiter_Hat,Party Recruiter Hat,4,0,,0,,4,,0,0xFFFFFFFF,63,2,256,,10,1,351,{},{},{} 5338,Bf_Recruiter_Hat,BF Recruiter Hat,4,0,,0,,4,,0,0xFFFFFFFF,63,2,256,,10,1,352,{},{},{} @@ -3261,8 +3359,8 @@ 5354,Muslim_Hat_M,Muslim Hat M,4,0,,100,,2,,0,0xFFFFFFFF,63,1,256,,0,0,362,{ bonus bVariableCastrate,-5; },{},{} 5355,Muslim_Hat_F,Selendang,4,0,,100,,2,,0,0xFFFFFFFF,63,0,256,,0,0,363,{ bonus bVariableCastrate,-5; },{},{} 5356,Pumpkin_Hat_H,Festival Pumpkin Hat,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,0,1,206,{ bonus2 bSubRace,RC_Demon,5; bonus2 bAddRace,RC_Demon,5; },{},{} -5357,Wings_Of_Victory,Wings Of Victory,4,20,,200,,10,,0,0xFFFFFFFF,63,2,768,,0,0,365,{ bonus bMdef,10; bonus bUnbreakableHelm,0; },{},{} -5358,Pecopeco_Wing_Ears,Peco Ears,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,70,0,366,{ bonus bAgi,1; bonus bMdef,2; bonus bUnbreakableHelm,0; },{},{} +5357,Wings_Of_Victory,Wings Of Victory,4,20,,200,,10,,0,0xFFFFFFFF,63,2,768,,0,0,365,{ bonus bMdef,10; bonus bUnbreakableHelm,1; },{},{} +5358,Pecopeco_Wing_Ears,Peco Ears,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,70,0,366,{ bonus bAgi,1; bonus bMdef,2; bonus bUnbreakableHelm,1; },{},{} 5359,J_Captain_Hat,Ship Captain Hat,4,20,,300,,3,,1,0xFFFFFFFF,63,2,256,,60,1,367,{ bonus bDex,1; bonus bMaxHP,100; bonus bLongAtkRate,7; },{},{} 5360,Whikebain_Ears,Hyuke's Black Cat Ears,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,45,1,368,{ bonus bFlee,10; bonus bCritical,3; bonus bCritAtkRate,10; bonus bDefRate,-50; bonus bDef2Rate,-50; },{},{} 5361,Gang_Scarf,Gangster Scarf,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,369,{ bonus bBaseAtk,5; if(BaseJob==Job_Rogue) skill "RG_GANGSTER",1; },{},{} @@ -3301,12 +3399,12 @@ 5394,Bubblegum_Lower,Bubblegum,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,0,0,0,{ bonus2 bExpAddClass,Class_All,100; },{},{} 5395,Tiraya_Bonnet,Striped Hat,4,20,,500,,2,,1,0xFFFFFFFF,63,2,256,,50,1,398,{ bonus bMaxHP,100+(getrefine()*20); bonus bLuk,3; },{},{} 5396,Jasper_Crest,Jasper Crest,4,20,,700,,2,,1,0xFFFFFFFF,63,2,256,,0,1,399,{ bonus bDex,3; bonus bVit,1; },{},{} -5397,Scuba_Mask,Scuba Gear,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,400,{ bonus2 bSubEle,Ele_Water,10; bonus2 bExpAddRace,RC_Fish,10; bonus bUnbreakableHelm,0; },{},{} +5397,Scuba_Mask,Scuba Gear,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,400,{ bonus2 bSubEle,Ele_Water,10; bonus2 bExpAddRace,RC_Fish,10; bonus bUnbreakableHelm,1; },{},{} 5398,Bone_Head,Bone Head,4,20,,1200,,5,,1,0x000444A2,18,2,256,,85,1,401,{ bonus bStr,2; bonus bMdef,5; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Bleeding,500; },{},{} 5399,Mandragora_Cap,Mandragora Cap,4,20,,300,,1,,1,0x00CFFF80,18,2,256,,85,0,402,{ bonus bVit,3; bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30; },{},{} 5400,Fox_Hat,Fox Hat,4,20,,200,,0,,0,0xFFFFFFFF,63,0,769,,0,0,403,{ bonus bLuk,1; },{},{} -5401,Black_Glasses,Black Frame Glasses,4,20,,200,,1,,0,0xFFFFFFFF,63,2,512,,70,0,404,{ bonus bInt,1; bonus bMdef,2; bonus bUnbreakableHelm,0; },{},{} -5402,Mischievous_Fairy,Mischievous Fairy,4,10,,200,,1,,0,0xFFFFFFFF,63,2,512,,70,0,405,{ bonus bUnbreakableHelm,0; bonus bFlee2,3; },{},{} +5401,Black_Glasses,Black Frame Glasses,4,20,,200,,1,,0,0xFFFFFFFF,63,2,512,,70,0,404,{ bonus bInt,1; bonus bMdef,2; bonus bUnbreakableHelm,1; },{},{} +5402,Mischievous_Fairy,Mischievous Fairy,4,10,,200,,1,,0,0xFFFFFFFF,63,2,512,,70,0,405,{ bonus bUnbreakableHelm,1; bonus bFlee2,3; },{},{} 5403,Fish_In_Mouth,Fish In Mouth,4,10,,200,,0,,0,0xFFFFFFFF,63,2,1,,30,0,406,{ bonus2 bAddMonsterDropItem,579,500; bonus2 bAddItemHealRate,579,25; },{},{} 5404,Blue_Ribbon,Blue Ribbon,4,10,,100,,1,,1,0xFFFFFFFF,63,2,256,,45,1,407,{ bonus4 bAutoSpellWhenHit,"AC_CONCENTRATION",2,7,0; },{},{} 5405,Filir_Hat,Filir Hat,4,10,,200,,0,,0,0xFFFFFFFF,63,2,256,,80,0,408,{ bonus bShortWeaponDamageReturn,1; },{},{} @@ -3316,7 +3414,7 @@ 5409,New_Cowboy_Hat,Purple Cowboy Hat,4,20,,500,,4,,1,0xFFFFFFFF,63,2,256,,0,1,411,{ bonus bInt,2; bonus bVit,2; bonus bMaxSP,50; },{},{} 5410,Bread_Bag2,Brown Paperbag Hat,4,20,,200,,6,,0,0xFFFFFFFF,63,2,769,,0,0,412,{ bonus bMaxHP,100; bonus2 bResEff,Eff_Stun,400; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player,4; },{},{} 5411,White_Snake_Hat,White Snake Hat,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,0,1,413,{ bonus bDex,2; },{},{} -5412,Sweet_Candy,Sweet Candy,4,20,,100,,1,,0,0xFFFFFFFF,63,2,1,,0,0,414,{ bonus bUnbreakableHelm,0; },{},{} +5412,Sweet_Candy,Sweet Candy,4,20,,100,,1,,0,0xFFFFFFFF,63,2,1,,0,0,414,{ bonus bUnbreakableHelm,1; },{},{} 5413,Popcorn_Hat,Pop Corn Hat,4,20,,300,,2,,0,0xFFFFFFFF,63,2,256,,0,0,415,{ bonus2 bSubEle,Ele_Wind,10; },{},{} 5414,Campfire_Hat,Camp Fire Hat,4,20,,300,,2,,0,0xFFFFFFFF,63,2,256,,0,0,416,{ bonus2 bSubEle,Ele_Fire,10; bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,100,1; },{},{} 5415,Poring_Cake_Cap,Poring Cake Hat,4,20,,1000,,5,,0,0xFFFFFFFF,63,2,256,,40,1,417,{ bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; bonus bFlee2,5; bonus bAspdRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; },{},{} @@ -3401,7 +3499,7 @@ 5494,Spinx_Helm_I,Sphinx Hat,4,0,,0,,5,,0,0x00004082,63,2,257,,0,0,137,{ bonus bStr,5; },{},{} 5495,Power_Of_Thor,Power Of Thor,4,20,,100,,6,,1,0xFFFFFFFF,63,2,256,,0,1,493,{ bonus bInt,1; bonus bDex,1; bonus bMdef,3; bonus bFlee,5; },{},{} 5496,Dice_Hat,Dice Hat,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,50,0,494,{ bonus bLuk,4; },{},{} -5497,King_Tiger_Doll_Hat,King Tiger Doll Hat,4,20,,400,,6,,1,0xFFFFFFFE,63,2,256,,1,1,495,{ bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,10; bonus2 bMagicAddRace,RC_Brute,10; /*Need more info*/ },{},{} +5497,King_Tiger_Doll_Hat,King Tiger Doll Hat,4,20,,400,,6,,1,0xFFFFFFFE,63,2,256,,1,1,495,{ bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,10; bonus2 bMagicAddRace,RC_Brute,10; .@r = getrefine(); autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*.@r; }",3*.@r,3000,BF_NORMAL,"{ transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Eddga Power !\"; }"; autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*.@r; }",.@r,3000,BF_NORMAL,"{ transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Eddga Power !\"; }"; },{},{} 5498,Wondering_Wolf_Helm,Wandering Wolf Helm,4,20,,600,,5,,1,0xFFFFFFFE,63,2,768,,1,0,490,{ bonus bAgi,5; bonus bFlee,10; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; if(getrefine()>=7){ bonus2 bAddEff,Eff_Bleeding,10; } if(getrefine()>=9){ bonus3 bAutoSpellWhenHit,"MC_LOUD",1,1; } },{},{} 5499,Pizza_Hat,Pizza Hat,4,20,,600,,0,,0,0xFFFFFFFF,63,2,256,,0,0,487,{ skill "SM_PROVOKE",1; },{},{} 5500,Icecream_Hat,Icecream Hat,4,0,,300,,6,,0,0xFFFFFFFF,63,2,256,,30,1,488,{ bonus bMdef,3; skill "MG_FROSTDIVER",3; },{},{} @@ -3458,7 +3556,7 @@ 5551,Holy_Egg_Hat,Holy Egg Hat,4,20,,0,,1,,0,0xFFFFFFFF,63,2,256,,0,1,537,{},{},{} 5552,Fest_Lord_Circlet,Festival Grand Circlet,4,0,,0,,8,,0,0xFFFFFFFF,63,2,256,,0,0,93,{ bonus bStr,3; bonus bInt,3; bonus bMdef,3; },{},{} 5553,Fest_Bunny_Band,Festival Bunny Band,4,0,,0,,7,,0,0xFFFFFFFF,63,2,256,,0,0,15,{ bonus bMdef,4; bonus2 bSubRace,RC_DemiHuman,9; bonus2 bSubRace,RC_Player,9; },{},{} -5554,Octopus_Hat,Octopus Hat,4,20,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,538,{ bonus3 bAutoSpell,"SM_PROVOKE",5,10; bonus bUnbreakableHelm,0; },{},{} +5554,Octopus_Hat,Octopus Hat,4,20,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,538,{ bonus3 bAutoSpell,"SM_PROVOKE",5,10; bonus bUnbreakableHelm,1; },{},{} 5555,Leaf_Cat_Hat,Leaf Cat Hat,4,20,,100,,6,,0,0xFFFFFFFF,63,2,256,,0,1,539,{ bonus bAgi,2; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; },{},{} 5556,Fur_Seal_Hat,Seal Hat,4,20,,500,,3,,0,0xFFFFFFFF,63,2,769,,55,1,540,{ bonus bInt,1; bonus3 bAutoSpell,"WZ_FROSTNOVA",1,100; },{},{} 5557,Wild_Rose_Hat,Wild Rose Hat,4,20,,500,,6,,1,0xFFFFFFFE,63,2,256,,20,1,541,{ bonus bAgi,3; },{},{} @@ -3499,7 +3597,7 @@ 5592,Sigrun's_Wings,Sigrun's Wings,4,20,,100,,2,,0,0xFFFFFFFF,63,2,512,,80,0,568,{ if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief||(BaseJob==Job_Taekwon&&Class!=Job_Soul_Linker)) bonus bAspd,1; else if(BaseClass==Job_Mage||BaseClass==Job_Acolyte||Class==Job_Ninja||Class==Job_Soul_Linker){ bonus bMatk,5; bonus bHealPower,2; } else if(BaseClass==Job_Archer||BaseClass==Job_Gunslinger) bonus bLongAtkRate,2; else if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) { bonus bMaxHP,120; bonus bMaxSP,60; } },{},{} 5593,Rabbit_Bonnet_,Rabbit Bonnet,4,20,,200,,1,,1,0xFFFFFFFF,63,2,768,,1,1,549,{ bonus bBaseAtk,10; bonus bMatk,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player,3; bonus bDelayRate,-3; if(getrefine()>6) { bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubEle,Ele_Dark,5; bonus2 bSubEle,Ele_Ghost,5; } },{},{} 5594,Donut_In_Mouth,Donut In Mouth,4,20,,50,,1,,0,0xFFFFFFFF,63,2,1,,1,0,569,{ bonus2 bHPRegenRate,1,10000; bonus bMaxHP,100; },{},{} -5595,Eye_Of_Juno,Eye Of Juno,4,20,,400,,2,,1,0xFFFFFFFF,63,2,256,,1,1,570,{ bonus bMdef,2; set .@i,JobLevel/14; if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte){ bonus bInt,2; bonus bDex,2; bonus2 bSubEle,Ele_Neutral,.@i; bonus2 bSubEle,Ele_Water,.@i; } else if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief){ bonus bAgi,2; bonus bVit,2; bonus2 bSubEle,Ele_Neutral,.@i; bonus2 bSubEle,Ele_Water,.@i; } },{},{} +5595,Eye_Of_Juno,Eye Of Juno,4,20,,400,,2,,1,0xFFFFFFFF,63,2,256,,1,1,570,{ bonus bMdef,2; .@i = JobLevel/14; if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte){ bonus bInt,2; bonus bDex,2; bonus2 bSubEle,Ele_Neutral,.@i; bonus2 bSubEle,Ele_Water,.@i; } else if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief){ bonus bAgi,2; bonus bVit,2; bonus2 bSubEle,Ele_Neutral,.@i; bonus2 bSubEle,Ele_Water,.@i; } },{},{} 5596,4Leaf_Clover_In_Mouth,4Leaf Clover In Mouth,4,20,,0,,2,,0,0xFFFFFFFF,63,2,1,,1,0,571,{ bonus bMdef,2; bonus2 bAddMonsterDropItem,12245,10; },{},{} 5597,Bubble_Gum_In_Mouth,Bubble Gum In Mouth,4,20,,0,,2,,0,0xFFFFFFFF,63,2,1,,1,0,572,{ bonus bBaseAtk,5; bonus bMatk,5; bonus bMdef,2; /*Gold PC Room: bonus bAllStats,1;*/},{},{} 5598,Virgo_Crown,Virgo Crown,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,70,1,573,{ bonus bDex,2; bonus bAspdRate,1; if(getrefine()>6) { bonus2 bSubEle,Ele_Earth,5; autobonus "{ bonus bDex,20; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; } },{},{} @@ -3560,7 +3658,7 @@ 5653,Darkness_Helm_J,Darkness Helm,4,20,,500,,3,,1,0xFFFFFFFF,63,2,256,,70,1,586,{},{},{} 5654,Holy_Marching_Hat_J,Holy Marching Hat,4,20,,200,,5,,1,0xFFFFFFFF,63,2,256,,1,1,587,{ bonus bInt,1; bonus bMdef,5; bonus bMatkRate,2; .@r = getrefine(); if(.@r>=7) bonus bHealPower,5; if(.@r>=9){ bonus bMatk,5; bonus bHealPower,5; } },{},{} 5655,Dark_Snake_Lord_Hat_J,Evil Snake Lord Hat,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,60,1,372,{ bonus bInt,2; bonus bAgi,2; bonus bDex,-2; autobonus "{ bonus bVariableCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; },{},{} -5656,Scooter_Hat_J,Scooter Helmet,4,20,,1000,,7,,1,0xFFFFFFFF,63,2,256,,50,1,588,{ bonus bUnbreakableHelm,0; },{},{} +5656,Scooter_Hat_J,Scooter Helmet,4,20,,1000,,7,,1,0xFFFFFFFF,63,2,256,,50,1,588,{ bonus bUnbreakableHelm,1; },{},{} 5657,Antique_Pipe_J,Captain's Pipe,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,30,0,383,{},{},{} 5658,Imp_Hat,Imp Hat,4,20,,400,,1,,1,0xFFFFFFFF,63,2,256,,1,1,589,{ bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5; },{},{} 5659,Sleeper_Hat,Sleeper Hat,4,20,,400,,1,,0,0xFFFFFFFF,63,2,256,,1,1,590,{ bonus3 bAutoSpell,"SA_SEISMICWEAPON",1,5; },{},{} @@ -3579,12 +3677,12 @@ 5672,Southern_Cross,Southern Cross,4,20,,600,,3,,1,0xFFFFFFFF,63,2,256,,50,1,601,{ bonus bInt,1; },{},{} 5673,Home_Cherry_Blossom,Home Cherry Blossom,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,30,1,602,{},{},{} 5674,Pig_Moneybox,Pig Moneybox,4,20,,1000,,3,,0,0xFFFFFFFF,63,2,256,,10,0,603,{},{},{} -5675,Poring_Letter,Poring Letter,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,10,0,604,{ bonus bUnbreakableHelm,0; },{},{} +5675,Poring_Letter,Poring Letter,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,10,0,604,{ bonus bUnbreakableHelm,1; },{},{} 5676,Scorpio_Crown,Scorpio Crown,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,605,{},{},{} 5677,Scorpio_Diadem,Scorpio Diadem,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,606,{ bonus bDex,2; },{},{} -5678,Notation_Hairband,Notation Hairband,4,200,,100,,5,,0,0xFFFFFFFF,63,2,256,,1,1,607,{ bonus bUnbreakableHelm,0; },{},{} +5678,Notation_Hairband,Notation Hairband,4,200,,100,,5,,0,0xFFFFFFFF,63,2,256,,1,1,607,{ bonus bUnbreakableHelm,1; },{},{} 5679,Engineer_Cap,Engineer Cap,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,10,1,608,{},{},{} -5680,Hawkeyes,Hawkeyes,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,10,0,609,{ bonus bUnbreakableHelm,0; },{},{} +5680,Hawkeyes,Hawkeyes,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,10,0,609,{ bonus bUnbreakableHelm,1; },{},{} 5681,F_Ribbon_Green,Green Ribbon,4,800,,100,,1,,0,0xFFFFFFFF,63,0,256,,0,1,244,{ bonus bMdef,3; },{},{} 5682,Triangle_Rune_Cap,Triangle Rune Cap,4,20,,300,,5,,1,0xFFFFFFFF,63,2,256,,1,1,610,{ bonus bHealPower,2; if (getrefine() > 6) { bonus bMatk,10; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",8,150,BF_MAGIC,0; } else { bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0; } },{},{} 5683,Majestic_Goat_Repl,Baphomet Horns,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,1,1,41,{},{},{} @@ -3642,9 +3740,9 @@ 5735,E_Ribbon_Green,Green Ribbon,4,800,,100,,1,,0,0xFFFFFFFF,63,0,256,,0,1,244,{ bonus bMdef,3; },{},{} 5736,EF_Whisper_Mask,Whisper Mask,4,20,,0,,0,,0,0xFFFFFFFF,63,2,769,,0,0,321,{ bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10; },{},{} 5737,Cactus_Hat,Cactus Hat,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,1,0,615,{},{},{} -5738,Snowman_Hat,Snowman Hat,4,20,,300,,4,,1,0xFFFFFFFF,63,2,256,,1,1,616,{ bonus bStr,1; bonus bInt,1; bonus bMdef,3; bonus2 bSubEle,Ele_Water,7; bonus2 bAddMonsterDropItem,530,100; bonus2 bAddMonsterDropItem,12354,300; if(getrefine()>7) { bonus5 bAutoSpellwhenhit,"BA_FROSTJOKER",5,20,BF_WEAPON|BF_MAGIC,0; } else { bonus5 bAutoSpellwhenhit,"BA_FROSTJOKER",1,20,BF_WEAPON|BF_MAGIC,0; } },{},{} -5739,Sagittarius_Crown,Sagittarius Crown,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,617,{ bonus bDex,2; },{},{} -5740,Sagittarius_Diadem,Sagittarius Diadem,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,618,{ bonus bDex,2; bonus bMdef,3; },{},{} +5738,Snowman_Hat,Snowman Hat,4,20,,300,,4,,1,0xFFFFFFFF,63,2,256,,1,1,616,{ bonus bStr,1; bonus bInt,1; bonus bMdef,3; bonus2 bSubEle,Ele_Water,7; bonus2 bAddMonsterDropItem,530,100; bonus2 bAddMonsterDropItem,12354,300; bonus5 bAutoSpellwhenhit,"BA_FROSTJOKER",(getrefine()>7?5:1),20,BF_WEAPON|BF_MAGIC,0; },{},{} +5739,Sagittarius_Crown,Sagittarius Crown,4,20,,300,,3,,1,0xFFFFFFFF,63,2,256,,1,1,617,{ bonus bDex,2; },{},{} +5740,Sagittarius_Diadem,Sagittarius Diadem,4,20,,300,,3,,1,0xFFFFFFFF,63,2,256,,1,1,618,{ bonus bDex,2; bonus bMdef,3; },{},{} 5741,Im_Egg_Shell_Hat,Eternal Egg Shell,4,20,,0,,1,,0,0xFFFFFFFF,63,2,256,,10,1,101,{},{},{} 5742,Rudolf_Santa_Hat,Rudolph Santa Hat,4,20,,400,,5,,0,0xFFFFFFFF,63,2,256,,10,1,619,{ bonus bLuk,1; },{},{} 5743,Orange_Stem_Hat,Orange Stem Hat,4,20,,100,,0,,0,0x00000000,63,2,256,,1,0,620,{ bonus bLuk,3; },{},{} @@ -3699,14 +3797,14 @@ 5792,Fish_Pin,Fish Pin,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,1,1,669,{ bonus2 bSubRace,RC_Fish,1; },{},{} 5793,Ribbon_Of_Life,Ribbon Of Life,4,20,,0,,2,,0,0xFFFFFFFF,63,2,512,,1,0,575,{ bonus bInt,1; bonus bMdef,2; },{},{} 5794,3D_Glasses_,3D Glasses,4,20,,0,,1,,0,0xFFFFFFFF,63,2,512,,1,0,661,{},{},{} -5795,Red_Dress_Hat,Red Dress Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,256,,1,1,670,{ bonus bMdef,7; },{},{} +5795,Red_Dress_Hat,Red Dress Hat,4,20,,0,,0,,1,0xFFFFFFFF,63,2,256,,1,1,670,{ bonus bMdef,7; },{},{} 5796,Cheer_Scarf,Cheer Scarf,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,1,0,369,{ bonus2 bExpAddClass,Class_All,10; bonus bMaxHP,200; bonus bMaxSP,50;},{},{} //5796,Rooting_Scarf,Rooting Scarf,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,1,0,369,{ bonus2 bExpAddClass,Class_All,10; },{},{} 5797,Cheer_Scarf2,Cheer Scarf2,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,1,0,369,{ bonus2 bExpAddClass,Class_All,20; },{},{} 5798,Cheer_Scarf3,Cheer Scarf3,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,1,0,369,{ bonus2 bExpAddClass,Class_All,30; },{},{} 5799,Cheer_Scarf4,Cheer Scarf4,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,1,0,369,{ bonus2 bExpAddClass,Class_All,40; },{},{} 5800,Blush_Of_Groom,Blush of Groom,4,20,,50,,0,,0,0xFFFFFFFF,63,2,512,,0,0,125,{ bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player,3; },{},{} -5801,Ribbon_Of_Bride,Red Tailed Ribbon,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,0,1,167,{ bonus bAllStats,2; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; if(getskilllv("AL_HEAL")==10) { bonus3 bAutoSpellWhenHit,"AL_HEAL",10,20; } else { bonus3 bAutoSpellWhenHit,"AL_HEAL",5,20; } },{},{} +5801,Ribbon_Of_Bride,Red Tailed Ribbon,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,0,1,167,{ bonus bAllStats,2; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus3 bAutoSpellWhenHit,"AL_HEAL",(getskilllv("AL_HEAL")==10?10:5),20; },{},{} 5802,Upgrade_Elephant_Hat,Upgraded Elephant Hat,4,0,,500,,3,,1,0xFFFFFFFF,63,2,256,,0,1,215,{},{},{} 5803,Flower_Love_Hat,Love Flower Hat,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,5,{ bonus2 bAddMonsterDropItem,608,100; },{},{} 5804,Pirate_Eyepatch,Pirate Eye Bandage,4,1000,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,13,{},{},{} @@ -3759,22 +3857,19 @@ 5851,Summer_Knight,Summer Knight,4,20,,0,,1,,0,0xFFFFFFFF,63,2,768,,60,0,138,{},{},{} 5852,Easter_Egg_Shell,Easter Egg Shell,4,20,,500,,0,,0,0xFFFFFFFF,63,2,256,,40,1,537,{ bonus bDef,-7; bonus bMdef,-7; bonus2 bHPRegenRate,(MaxHp/100),10000; .@r = getrefine(); if (.@r>=7) bonus bFlee,2; if (.@r >= 9) bonus2 bSPRegenRate,(MaxSp/100),10000; },{},{} 5853,IdRO_Crown,IdRO Crown,4,10,,0,,2,,0,0xFFFFFFFF,63,2,256,,1,1,165,{ bonus bHPrecovRate,7; bonus bSPrecovRate,7; if(getrefine()>7){ bonus bAtkRate,2; bonus bMatkRate,2; bonus bMdef,2; } },{},{} -// 5855,Fishing_Rod,Fishing Rod,4,10,,0,,0,,,0xFFFFFFFF,63,2,136,,,,,{},{},{} 5856,Passion_FB_Hat,Passion FB Hat,4,20,,600,,2,,1,0xFFFFFFFF,63,2,256,,1,1,671,{ bonus bStr,2; bonus bDex,2; autobonus "{ bonus bFlee,-15; bonus2 bAddClass,Class_All,5; }",30,10000,0,"{ specialeffect2 EF_ENHANCE; }"; },{},{} 5857,Cool_FB_Hat,Cool FB Hat,4,20,,600,,2,,1,0xFFFFFFFF,63,2,256,,1,1,672,{ bonus bInt,2; bonus bVit,2; autobonus3 "{ bonus bHealPower,20; }",150,5000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; },{},{} 5858,Victory_FB_Hat,Victory FB Hat,4,20,,600,,2,,1,0xFFFFFFFF,63,2,256,,1,1,673,{ bonus bInt,2; bonus bDex,2; autobonus "{ bonus bMatkRate,5; bonus bDef,-30; }",3,10000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; },{},{} 5859,Glory_FB_Hat,Glory FB Hat,4,20,,600,,2,,1,0xFFFFFFFF,63,2,256,,1,1,674,{ bonus bAllStats,1; bonus bAspd,1; bonus bBaseAtk,BaseLevel/7; bonus bMatk,BaseLevel/7; },{},{} -// 5864,Shadow_Booster,Magical Booster,4,10,,300,,,,0,0xFFFFFFFF,63,2,512,,1,1,873,{ bonus bAspd,1; bonus bDelayrate,-1; },{},{} -5868,Bushy_Moustache,Bushy Moustache,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,1004,{ bonus bUnbreakableHelm,0; bonus bBaseAtk,10; bonus bMatk,10; },{},{} +5868,Bushy_Moustache,Bushy Moustache,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,1004,{ bonus bUnbreakableHelm,1; bonus bBaseAtk,10; bonus bMatk,10; },{},{} 5869,Mimic_Egg_Shell,Mimic Egg Shell,4,10,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,999,{ bonus2 bAddEffWhenHit,Eff_Stone,600; bonus bSpeedRate,25; },{},{} 5870,Bunny_Egg_Shell,Bunny Egg Shell,4,10,,100,,5,,0,0xFFFFFFFF,63,2,256,,0,1,1000,{ bonus bAgi,3; bonus bAspd,1; },{},{} 5871,Picky_Egg_Shell,Picky Egg Shell,4,10,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,1001,{ bonus bVit,3; bonus bMdef,2; },{},{} -5873,Helmet_Of_Siegfried,Helmet Of Siegfried,4,20,,600,,7,,1,0x000444A2,63,2,256,,60,1,1055,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",5,5; bonus2 bHPLossRate,600,1000; bonus bUnbreakableHelm,0; },{},{} -5874,Circlet_Of_Kriemhild,Circlet Of Kriemhild,4,20,,600,,7,,1,0x000444A2,63,2,256,,60,1,1056,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"PR_KYRIE",9,5; bonus2 bHPLossRate,400,1000; bonus bUnbreakableHelm,0; },{},{} -5875,Diadem_Of_Bruenhild,Diadem Of Bruenhild,4,20,,600,,7,,1,0x000444A2,63,2,256,,60,1,1057,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"SM_ENDURE",8,5; bonus2 bHPLossRate,400,1000; bonus bUnbreakableHelm,0; },{},{} -// +5873,Helmet_Of_Siegfried,Helmet Of Siegfried,4,20,,600,,7,,1,0x000444A2,63,2,256,,60,1,1055,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",5,5; bonus2 bHPLossRate,600,1000; bonus bUnbreakableHelm,1; },{},{} +5874,Circlet_Of_Kriemhild,Circlet Of Kriemhild,4,20,,600,,7,,1,0x000444A2,63,2,256,,60,1,1056,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"PR_KYRIE",9,5; bonus2 bHPLossRate,400,1000; bonus bUnbreakableHelm,1; },{},{} +5875,Diadem_Of_Bruenhild,Diadem Of Bruenhild,4,20,,600,,7,,1,0x000444A2,63,2,256,,60,1,1057,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"SM_ENDURE",8,5; bonus2 bHPLossRate,400,1000; bonus bUnbreakableHelm,1; },{},{} 5881,Weissbier_Hat,Weissbier Hat,4,20,,300,,5,,0,0xFFFFFFFF,63,2,256,,0,1,1079,{ bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bDex,10; if(getrefine()>6){ bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bDex,5; } },{},{} 5882,Red_Wizardry_Hat_C,Red Mage Hat C,4,20,,300,,1,,0,0x00810204,63,2,256,,0,1,282,{ bonus bMaxSP,150; },{},{} 5883,White_Wizardry_Hat_C,Gray Mage Hat C,4,20,,300,,1,,0,0x00810204,63,2,256,,0,1,283,{ bonus bMaxSP,150; },{},{} @@ -3782,12 +3877,18 @@ 5885,Blue_Wizardry_Hat_C,Blue Mage Hat C,4,20,,300,,1,,0,0x00810204,63,2,256,,0,1,285,{ bonus bMaxSP,150; },{},{} 5886,Yellow_Wizardry_Hat_C,Yellow Mage Hat C,4,20,,300,,1,,0,0x00810204,63,2,256,,0,1,286,{ bonus bMaxSP,150; },{},{} 5887,Half_L_Magestic_Goat,Half L Majestic Goat,4,20,,800,,5,,0,0xFFFFFFFF,63,2,256,,0,1,380,{ bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus bBaseAtk,(JobLevel*2)/7; },{},{} -// 5892,RCC2013_1ST_CROWN,RCC2013 1ST CROWN,4,20,,2500,,7,,1,0xFFFFFFFF,63,2,256,,1,0,1106,{ sc_start SC_SPEEDUP0,-1,25; skill "AL_TELEPORT",1; },{ sc_end SC_SPEEDUP0; },{} 5893,RCC2013_2ND_CROWN,RCC2013 2ND CROWN,4,20,,2500,,7,,1,0xFFFFFFFF,63,2,256,,1,0,1107,{ sc_start SC_SPEEDUP0,-1,25; skill "AL_TELEPORT",1; },{ sc_end SC_SPEEDUP0; },{} 5894,RCC2013_3RD_CROWN,RCC2013 3RD CROWN,4,20,,2500,,7,,1,0xFFFFFFFF,63,2,256,,1,0,1108,{ sc_start SC_SPEEDUP0,-1,25; skill "AL_TELEPORT",1; },{ sc_end SC_SPEEDUP0; },{} 5895,RCC2013_ANV_Hat,RCC2013 ANV Hat,4,20,,2500,,7,,1,0xFFFFFFFF,63,2,256,,1,0,1109,{ bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; },{},{} -// +5918,Gambler_Seal,Gambler Seal,4,0,,500,,,,0,0xFFFFFFFF,63,2,512,,,1,1202,{ bonus bCritical,3; bonus bCritAtkRate,3; bonus2 bSubSkill,"RA_ARROWSTORM",10; bonus2 bSubSkill,"SR_GATEOFHELL",10; .@dex = readparam(bDex); .@luk = readparam(bLuk); bonus bCritAtkRate,-(.@dex/10)*2; bonus bCritical,.@luk/10; bonus bBaseAtk,(.@luk/10)*2; bonus bMatk,(.@luk/10)*2; if (.@luk > 120) { bonus bCritical,10; bonus bCritAtkRate,10; bonus2 bSubSkill,"RA_ARROWSTORM",30; bonus2 bSubSkill,"SR_GATEOFHELL",30; } else if (.@luk > 108) { bonus bCritical,5; bonus bCritAtkRate,10; } },{},{} +5920,Medical_Boots,Medical Boots,4,0,,300,,10,,0,0xFFFFFFFF,63,2,64,,10,1,,{ .@r = getrefine(); bonus bHealPower,10+((.@r/2) * 2); bonus2 bSkillUseSP,"AB_CHEAL",(.@r * 5); },{},{} +5943,Owl_viscount_Silk_Hat,Owl Viscount Silk Hat,4,0,,500,,15,,1,0xFFFFFFFF,63,2,256,1,70,1,1323,{ bonus bInt,1; bonus bAspdRate,10; .@r = getrefine(); bonus bMatk,7*.@r; autobonus "{ .@r = getrefine(); bonus bAspdRate,(.@r >= 9 ? 40 : ((.@r >= 7) ? 10 : ((.@r >= 5) ? 5 : 1))); }",.@r*20,30000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER }"; },{},{} +5966,KarduiEar,KarduiEar,4,0,,300,,,,0,0xFFFFFFFF,63,2,512,1,70,1,1357,{ .@dex = readparam(bDex); bonus bMatk,(.@dex > 10) ? .@dex/10*2 : 0; if (.@dex > 107) { bonus bVariableCastrate,-10; bonus bMatk,60; } if (.@dex > 119) { bonus bVariableCastrate,-5; bonus bMatk,100; } },{},{} +5967,Flying Galapago,Flying Galapago,4,0,,500,,,,0,0xFFFFFFFF,63,2,1,1,110,1,1358,{ bonus bAgi,1; bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW")*40; },{},{} +5968,DVAngelNurseCap,DVAngelNurseCap,4,0,,500,,10,,1,0xFFFFFFFF,63,2,256,1,50,1,1359,{ if (BaseClass == Job_Acolyte) bonus bHealPower,3; bonus bNoCastCancel,1; .@r = getrefine(); bonus bHealPower,(.@r > 8) ? 12 : ((.@r > 6) ? 9 : ((.@r > 4) ? 6 : 0)); },{},{} +5969,QueenAnzRevenge,QueenAnzRevenge,4,0,,400,,7,,1,0xFFFFFFFF,63,2,256,1,100,1,1360,{ bonus bStr,5; .@r = getrefine(); bonus bAtkRate,7+(.@r > 8 ? 4 : (.@r > 6 ? 3 : (.@r > 4 ? 2 : 0))); bonus bNoSizeFix,1; },{},{} +//=================================================================== // More Etc Items //=================================================================== 6000,Dark_Ashes,Ashes of Darkness,3,0,,0,,,,,,,,,,,,,{},{},{} @@ -4115,6 +4216,7 @@ 6324,Singlehorn_Helm,Single Horned Helmet,3,702,,10,,,,,,,,,,,,,{},{},{} 6325,White_Spider_Limb,White Spider Limb,3,1004,,10,,,,,,,,,,,,,{},{},{} 6326,Queen_Wing_Piece,Queen Wing Piece,3,1630,,10,,,,,,,,,,,,,{},{},{} +6327,(Limited)High_Density_Bradium,(Limited)High Density Bradium,3,20,,10,,,,,,,,,,,,,{},{},{} 6328,Calender_January,Calender January,3,20,,0,,,,,,,,,,,,,{},{},{} 6329,Calender_February,Calender February,3,20,,0,,,,,,,,,,,,,{},{},{} 6330,Calender_March,Calender March,3,20,,0,,,,,,,,,,,,,{},{},{} @@ -4351,10 +4453,23 @@ 6567,Choco_Drink_Recipe,Choco Drink Recipe,3,0,,0,,,,,,,,,,,,,{},{},{} 6581,Holy_Amulet,Holy Amulet,3,20,,10,,,,,,,,,,,,,{},{},{} 6583,3rd_Test_Pass,3rd Test Pass,3,0,,0,,,,,,,,,,,,,{},{},{} +6592,Small_Wooden_Chest,Small Wooden Chest,3,0,,10,,,,,,,,,,,,,{},{},{} 6593,Cryptura_Hair_Coupon,Cryptura Hair Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} +6594,Magic_Bronze_Bullion,Magic Bronze Bullion,3,0,,1000,,,,,,,,,,,,,{},{},{} +6595,Hammer_Of_Velund,Hammer Of Velund,3,0,,500,,,,,,,,,,,,,{},{},{} +6596,Anvil_Of_Velund,Anvil Of Velund,3,0,,2000,,,,,,,,,,,,,{},{},{} +6597,Bracelet_Of_Velund,Bracelet Of Velund,3,0,,500,,,,,,,,,,,,,{},{},{} +6598,Rib_Of_Jormungand,Rib Of Jormungand,3,0,,10000,,,,,,,,,,,,,{},{},{} +6599,Spirit_Of_Hugin,Spirit Of Hugin,3,0,,100,,,,,,,,,,,,,{},{},{} +6600,Spirit_Of_Munin,Spirit Of Munin,3,0,,100,,,,,,,,,,,,,{},{},{} +6601,Chisel_Of_Giant,Chisel Of Giant,3,0,,1000,,,,,,,,,,,,,{},{},{} +6602,Secret_Of_Rune,Secret Of Rune,3,0,,100,,,,,,,,,,,,,{},{},{} +6603,Skin_Of_Hraesvelg,Skin Of Hraesvelg,3,0,,500,,,,,,,,,,,,,{},{},{} 6604,Essence_Rune_Magic,Essence Rune Magic,3,0,,0,,,,,,,,,,,,,{},{},{} +6605,Muspellium,Muspellium,3,0,,0,,,,,,,,,,,,,{},{},{} 6606,P_Cart_C,P Cart C,3,0,,10,,,,,,,,,,,,,{},{},{} 6608,Coagulated_Spell,Coagulated Spell,3,0,,0,,,,,,,,,,,,,{},{},{} +6615,Siege_Guild_Coin,Siege Guild Coin,3,0,,10,,,,,,,,,,,,,{},{},{} 6616,Lmtd_Manny_Card,Lmtd Manny Card,3,20,,10,,,,,,,,,,,,,{},{},{} 6617,Lmtd_Sid_Card,Lmtd Sid Card,3,20,,10,,,,,,,,,,,,,{},{},{} 6618,Lmtd_Diego_Card,Lmtd Diego Card,3,20,,10,,,,,,,,,,,,,{},{},{} @@ -4493,7 +4608,6 @@ 6795,Ticket_Special_RO2,Ticket Special RO2,3,10,,0,,,,,,,,,,,,,{},{},{} 6796,RO2_Name_Card,RO2 Name Card,3,10,,0,,,,,,,,,,,,,{},{},{} 6797,11th_Coin,11th Anniversary Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -// 6803,Fragments_Of_Gigan,Fragments Of Gigan,3,10,,10,,,,,,,,,,,,,{},{},{} 6804,ORGANIC_PUMPKIN,Organic Pumpkin,3,20,,10,,,,,,,,,,,,,{},{},{} 6805,INORGANIC_PUMPKIN,Inorganic Pumpkin,3,20,,10,,,,,,,,,,,,,{},{},{} @@ -4528,6 +4642,17 @@ 6846,(Limited)Gym_Membership_Card,(Limited)Gym Membership Card,6,10,,10,,,,,,,,,,,,,{},{},{} 6847,Very_Small_Box,Very Small Box,3,10,,0,,,,,,,,,,,,,{},{},{} 6848,Light_Box,Light Box,3,10,,0,,,,,,,,,,,,,{},{},{} +6849,Request_Complete_Certificate,Request Complete Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} +6850,Questionable_Box,Questionable Box,3,10,,0,,,,,,,,,,,,,{},{},{} +6851,Questionable_Document,Questionable Document,3,10,,0,,,,,,,,,,,,,{},{},{} +6852,Super_Corrector,Super Corrector,3,10,,0,,,,,,,,,,,,,{},{},{} +6853,Thanks_Bouquet,Thanks Bouquet,3,10,,0,,,,,,,,,,,,,{},{},{} +6854,Novus_Captured,Novus Captured,3,10,,0,,,,,,,,,,,,,{},{},{} +6855,Tatacho_Captured,Tatacho Captured,3,10,,0,,,,,,,,,,,,,{},{},{} +6856,Manuscript_Written_By_Pigoreum,Manuscript Written By Pigoreum,3,10,,0,,,,,,,,,,,,,{},{},{} +6857,Very_Hard_Stone,Very Hard Stone,3,10,,0,,,,,,,,,,,,,{},{},{} +6858,Lude_Captured,Lude Captured,3,10,,0,,,,,,,,,,,,,{},{},{} +6859,Wanderer_Captured,Wanderer Captured,3,10,,0,,,,,,,,,,,,,{},{},{} 6860,Piece_Of_Soul_Cow,Piece Of Soul Cow,3,10,,0,,,,,,,,,,,,,{},{},{} 6862,Piece_Of_Soul_Tiger,Piece Of Soul Tiger,3,10,,0,,,,,,,,,,,,,{},{},{} 6863,Strong_Piece_Of_Soul_Tiger,Strong Piece Of Soul Tiger,3,10,,0,,,,,,,,,,,,,{},{},{} @@ -4568,6 +4693,7 @@ 6903,King_Earthworm,King Earthworm,3,10,,0,,,,,,,,,,,,,{},{},{} 6904,Piece_Of_Soul_Snake,Piece Of Soul Snake,3,10,,0,,,,,,,,,,,,,{},{},{} 6905,Broken_Magic_Stone,Broken Magic Stone,3,10,,0,,,,,,,,,,,,,{},{},{} +6906,(Limited)High_Density_Kalunium,(Limited)High Density Kalunium,3,20,,10,,,,,,,,,,,,,{},{},{} 6907,Piece_Of_Soul_Horse,Piece Of Soul Horse,3,10,,0,,,,,,,,,,,,,{},{},{} 6908,Stone_ASPD(Garment),Stone ASPD (Garment),6,20,,100,,,,,,,,,,,,,{ bonus bAspd,1; },{},{} 6909,Actinidia_Cat_Fruit,Actinidia Cat Fruit,3,10,,0,,,,,,,,,,,,,{},{},{} @@ -4579,6 +4705,43 @@ 6915,Captured_Soul,Captured Soul,3,10,,0,,,,,,,,,,,,,{},{},{} 6916,Piece_Of_Soul_Monkey,Piece Of Soul Monkey,3,10,,0,,,,,,,,,,,,,{},{},{} 6917,Piece_Of_Soul_Chicken,Piece Of Soul Chicken,3,10,,0,,,,,,,,,,,,,{},{},{} +6919,Honor_Proof,Honor Proof,3,10,,10,,,,,,,,,,,,,{},{},{} +6921,Dehumidifiers,Dehumidifiers,3,10,,10,,,,,,,,,,,,,{},{},{} +6922,Sandpaper,Sandpaper,3,10,,10,,,,,,,,,,,,,{},{},{} +6923,Bright_Fire_Lights,Bright Fire Lights,3,10,,10,,,,,,,,,,,,,{},{},{} +6924,Red_Eye,Red Eye,3,10,,10,,,,,,,,,,,,,{},{},{} +6925,Letter_Of_Prisoner,Letter Of Prisoner,3,10,,0,,,,,,,,,,,,,{},{},{} +6926,Rune-Midgard_History_Book,Rune-Midgard History Book,3,10,,0,,,,,,,,,,,,,{},{},{} +6927,Stone_That_Contained_Sea,Stone That Contained Sea,3,10,,0,,,,,,,,,,,,,{},{},{} +6928,Poring_Scourer,Poring Scourer,3,10,,0,,,,,,,,,,,,,{},{},{} +6929,Letter_With_Stamped_Seal,Letter With Stamped Seal,3,10,,0,,,,,,,,,,,,,{},{},{} +6930,Samples_New_Business_Items,Samples New Business Items,3,10,,0,,,,,,,,,,,,,{},{},{} +6931,Secret_Documents,Secret Documents,3,10,,0,,,,,,,,,,,,,{},{},{} +6932,Rare_Book,Rare Book,3,10,,0,,,,,,,,,,,,,{},{},{} +6933,Banquet_Invitation_Letter,Banquet Invitation Letter,3,10,,0,,,,,,,,,,,,,{},{},{} +6934,Magnificent_Dish,Magnificent Dish,3,10,,1000,,,,,,,,,,,,,{},{},{} +6935,Advanced_Dish,Advanced Dish,3,10,,10,,,,,,,,,,,,,{},{},{} +6936,Cold_Core,Cold Core,3,10,,10,,,,,,,,,,,,,{},{},{} +6937,Silicone_Shell,Silicone Shell,3,10,,10,,,,,,,,,,,,,{},{},{} +6938,Hedgehog_Picks,Hedgehog Picks,3,10,,10,,,,,,,,,,,,,{},{},{} +6939,Old_Belt,Old Belt,3,10,,10,,,,,,,,,,,,,{},{},{} +6940,Moving_Dark_Matter,Moving Dark Matter,3,10,,10,,,,,,,,,,,,,{},{},{} +// +6943,Attack_Stone(Upper),Attack Stone(Upper),6,10,,100,,,,,,,,,,,,,{ bonus bAtkRate,1; },{},{} +6944,Magic_Stone(Upper),Magic Stone(Upper),6,10,,100,,,,,,,,,,,,,{ bonus bMatkRate,1; },{},{} +6945,Strength_Stone(Middle),Strength Stone(Middle),6,10,,100,,,,,,,,,,,,,{ bonus bStr,1; },{},{} +6946,Intelligence_Stone(Middle),Intelligence Stone(Middle),6,10,,100,,,,,,,,,,,,,{ bonus bInt,1; },{},{} +6947,Agility_Stone(Middle),Agility Stone(Middle),6,10,,100,,,,,,,,,,,,,{ bonus bAgi,1; },{},{} +6948,Dexterity_Stone(Middle),Dexterity Stone(Middle),6,10,,100,,,,,,,,,,,,,{ bonus bDex,1; },{},{} +6949,Vitality_Stone(Middle),Vitality Stone(Middle),6,10,,100,,,,,,,,,,,,,{ bonus bVit,1; },{},{} +6950,Lucky_Stone(Middle),Lucky Stone(Middle),6,10,,100,,,,,,,,,,,,,{ bonus bLuk,1; },{},{} +6951,HP_Stone(Lower),HP Stone(Lower),6,10,,100,,,,,,,,,,,,,{ bonus bMaxHPrate,1; },{},{} +6953,Ramor_Refine_Ticket,Ramor Refine Ticket,3,10,,0,,,,,,,,,,,,,{/*Refine succeed guarantee until +9 for item 2598 only*/},{},{} +6954,Piece_Of_Soul_Dog,Piece Of Soul Dog,3,10,,0,,,,,,,,,,,,,{},{},{} +6955,Piece_Of_Soul_Pig,Piece Of Soul Pig,3,10,,0,,,,,,,,,,,,,{},{},{} +6956,Captured_Sheep,Captured Sheep,3,10,,0,,,,,,,,,,,,,{},{},{} +6957,Lamb_Fleece,Lamb Fleece,3,10,,0,,,,,,,,,,,,,{},{},{} +6958,Lamb_Horns,Lamb Horns,3,10,,0,,,,,,,,,,,,,{},{},{} // 7001,Mould_Powder,Mould Powder,3,466,,10,,,,,,,,,,,,,{},{},{} 7002,Ogre_Tooth,Ogre Tooth,3,658,,10,,,,,,,,,,,,,{},{},{} @@ -5223,7 +5386,6 @@ 7642,Bloody_Coin,Bloody Coin,3,10,,0,,,,,,,,,,,,,{},{},{} 7643,Bloody_Letter,Bloody Letter,3,10,,10,,,,,,,,,,,,,{},{},{} 7644,Unsent_Letter,Unsent Letter,3,10,,0,,,,,,,,,,,,,{},{},{} -// 7646,RO_Luk_Bookmark,RO Luk Bookmark,3,20,,10,,,,,,,,,,,,,{},{},{} 7647,Taiwan_Luk_Coin,Taiwan Luk Coin,3,0,,0,,,,,,,,,,,,,{},{},{} 7648,Snake_Bookmark,Snake Bookmark,3,20,,10,,,,,,,,,,,,,{},{},{} @@ -5239,15 +5401,14 @@ 7670,Sour_Grass,Sour Grass,3,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 7671,Firstaid_Kit,First Aid Kit,3,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 7672,Relief_Food,Relief Food,3,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -// 7674,Mysterious_Ingredient,Mysterious Ingredient,3,20,,0,,,,,,,,,,,,,{},{},{} 7675,Mysterious_Doll,Mysterious Doll,3,0,,0,,,,,,,,,,,,,{},{},{} +7676,Transmission_Coupon,Transmission Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} 7679,Oneclick_Weapon_7UP,One Click Weapon 7UP,3,0,,0,,,,,,,,,,,,,{},{},{} 7680,Oneclick_Weapon_9UP,One Click Weapon 9UP,3,0,,0,,,,,,,,,,,,,{},{},{} 7681,Oneclick_Armor_7UP,One Click Armor 7UP,3,0,,0,,,,,,,,,,,,,{},{},{} 7682,Oneclick_Armor_9UP,One Click Armor 9UP,3,0,,0,,,,,,,,,,,,,{},{},{} 7690,Special_Exchange_Coupons,Special Exchange Coupons,3,10,,0,,,,,,,,,,,,,{},{},{} -// 7701,Dragon_Spirit,Soul,3,2,,10,,,,,,,,,,,,,{},{},{} 7702,Special_Cogwheel,Special Cogwheel,3,2,,10,,,,,,,,,,,,,{},{},{} 7703,Piece_Of_Cogwheel,Piece of Cogwheel,3,2,,10,,,,,,,,,,,,,{},{},{} @@ -5615,6 +5776,7 @@ 9070,Savage_Egg,Savage Egg,7,20,,0,,,,,,,,,,,,,{},{},{} 9071,Grand_Peco_Peco_Egg,Grand Peco Peco Egg,7,20,,0,,,,,,,,,,,,,{},{},{} 9087,High_Orc_Egg,High Orc Egg,7,20,,0,,,,,,,,,,,,,{},{},{} +//=================================================================== // Pet Accessories //=================================================================== 10001,Skull_Helm,Skull Helm,8,20,,0,,,,,,,,,,,,,{},{},{} @@ -5656,6 +5818,7 @@ 10037,Black_Butterfly_Mask,Black Butterfly Mask,8,20,,0,,,,,,,,,,,,,{},{},{} 10038,Horn_Protector,Horn Barrier,8,20,,0,,,,,,,,,,,,,{},{},{} 10039,Tw_Backpack,Tw Backpack,8,20,,0,,,,,,,,,,,,,{},{},{} +//=================================================================== // Misc "Etc" Books //=================================================================== 11000,Prontera_Book_01,History book of Prontera,3,8000,,10,,,,,,,,,,,,,{},{},{} @@ -5717,8 +5880,9 @@ 11056,Elemental_Spirit_Guide,Elemental Spirit Guide,3,1000,,10,,,,,,,,,,,,,{},{},{} 11057,Feb_Sweets,February Sweets,3,20,,50,,,,,,,,,,,,,{},{},{} 11058,Novice_Combi_Book,Novice Combi Book,3,0,,10,,,,,,,,,,,,,{},{},{} -// 11060,Energy_Xtal_Combi_Book,Energy Crystal Book,3,0,,10,,,,,,,,,,,,,{},{},{} +11061,Honor_Proof_Exchange_List,Honor Proof Exchange List,3,20,,10,,,,,,,,,,,,,{},{},{} +//=================================================================== // More Usable Items //=================================================================== 11500,Light_Yellow_Pot,Light Yellow Potion,0,550,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(175,235),0; },{},{} @@ -5776,6 +5940,9 @@ 11552,Apple_Carrot_Salad,Apple Carrot Salad,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(20,30),0; sc_start SC_AGIFOOD,180000,1; },{},{} 11553,Casual_Stew,Casual Stew,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(20,30),0; sc_start SC_VITFOOD,180000,1; },{},{} 11554,Golden_Roasted_Apple,Golden Roasted Apple,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(20,30),0; sc_start SC_DEXFOOD,180000,1; },{},{} +11555,Red_Potion_RG,Red Potion RG,3,0,,40,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 325,0; },{},{} +11557,TE_White_Potion,TE White Potion,0,200,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 325,0; },{},{} +11558,TE_White_Slim_Potion,TE White Slim Potion,0,275,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 325,0; },{},{} 11563,Hot_Tea,Hot Tea,2,10,,20,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,100; },{},{} 11564,Sweets,Sweets,2,10,,20,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 100,0; },{},{} 11565,White_Potion,White Potion,0,10,,150,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{} @@ -5812,6 +5979,7 @@ 11597,Iron_Worm,Iron Worm,0,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} 11598,Bitter_Cacao_Bean,Bitter Cacao Bean,0,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} 11599,Superstar_Potion,Superstar Potion,0,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} +11600,Shining_Holy_Water,Shining Holy Water,0,10,,15,,,,0,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="prt_q") { bonus_script "{ bonus2 bSubSize,Size_All,10; }",600; sc_end SC_SILENCE; sc_end SC_POISON; sc_end SC_CURSE; heal 1000,0; } },{},{} // 11701,Girl_Bunch_Of_Flower,Girl's Bouquet,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; },{},{} 11702,Moon_Cookie,Moon Cookie,0,0,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ },{},{} @@ -5851,7 +6019,7 @@ 12021,Pork_Belly,Pork,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(70,99),0; },{},{} 12022,Spareribs,Galbi,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(70,99),0; },{},{} 12023,Giftbox_China,Wrapped Box,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_GiftBoxChina,1); },{},{} -12024,Red_Pouch_Of_Surprise,Red Pouch,2,50,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ monster "this",-1,-1,"--ja--",-4,1,""; },{},{} +12024,Red_Pouch_Of_Surprise,Red Pouch,2,50,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ monster "this",-1,-1,"--ja--",-1-MOBG_Red_Pouch_Of_Surprise,1,""; },{},{} 12025,Egg_Boy,Dano Festival Egg,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_EggBoy,1); },{},{} 12026,Egg_Girl,Dano Festival Egg,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_EggGirl,1); },{},{} 12027,Giggling_Box,Giggling Box,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 9,0; sc_start SC_CURSE,30000,0,3000,0; },{},{} @@ -5930,13 +6098,13 @@ 12100,Luk_Dish10,Cooked Nine Tail's Tails,0,100000,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,10; percentheal 14,8; },{},{} 12101,Citron,Citron,0,20,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FLEEFOOD,180000,30; },{},{} 12102,Meat_Skewer,Grilled Skewer,0,20,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_HITFOOD,180000,30; },{},{} -12103,Bloody_Dead_Branch,Bloody Branch,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ monster "this",-1,-1,"--ja--",-3,1,""; },{},{} +12103,Bloody_Dead_Branch,Bloody Branch,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ monster "this",-1,-1,"--ja--",-1-MOBG_Bloody_Dead_Branch,1,""; },{},{} 12104,Random_Quiver,Random Quiver,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Quiver,1); },{},{} 12105,Set_Of_Taiming_Item,Taming Gift Set,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Taming,1); getrandgroupitem(IG_Taming,1); getrandgroupitem(IG_Taming,1); },{},{} 12106,Accessory_Box,Jewelry Box,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Accesory,1); },{},{} 12107,Wrapped_Mask,Wrapped Mask,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Mask,1); },{},{} 12108,Bundle_Of_Magic_Scroll,Scroll Package,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); },{},{} -12109,Poring_Box,Poring Box,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ monster "this",-1,-1,"--ja--",-2,1,""; },{},{} +12109,Poring_Box,Poring Box,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ monster "this",-1,-1,"--ja--",-1-MOBG_Poring_Box,1,""; },{},{} 12110,First_Aid_Kit,First Aid Kit,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); },{},{} 12111,Food_Package,Bundle of Food,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_FoodBag,1); getrandgroupitem(IG_FoodBag,1); getrandgroupitem(IG_FoodBag,1); },{},{} 12112,Tropical_Sograt,Tropical Sograt,2,1000,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_CURSE,10000,1; },{},{} @@ -5960,8 +6128,8 @@ 12130,Cookie_Bag,Cookie Bag,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CookieBag,1); getrandgroupitem(IG_CookieBag,1); getrandgroupitem(IG_CookieBag,1); },{},{} 12131,Lucky_Potion,Lucky Potion,0,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ /* sc_start SC_LUKFOOD,180000,15; */ },{},{} 12132,Red_Bag,Santa's Bag,2,0,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_XMAS,600000,0; sc_start SC_SPEEDUP0,600000,25; },{},{} -12133,Ice_Cream_,McDonald's Ice Cone,0,0,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ if(gettime(5)!=MDiceCone) { set MDiceCone,gettime(5); percentheal 50,50; } },{},{} -12134,Red_Envelope,Red Envelope,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ set Zeny,Zeny+rand(1000,10000); },{},{} +12133,Ice_Cream_,McDonald's Ice Cone,0,0,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ if(gettime(5)!=MDiceCone) { MDiceCone = gettime(5); percentheal 50,50; } },{},{} +12134,Red_Envelope,Red Envelope,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ Zeny += rand(1000,10000); },{},{} 12135,Green_Ale,Green Ale,2,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; sc_start SC_CONFUSION,10000,0,1000,0; },{},{} 12136,Women's_Bundle,Women's Bundle,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",558,529,2668,7518),1; },{},{} 12137,1st_Stage_Prize,First Stage Prize,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} @@ -6029,7 +6197,9 @@ 12199,Rice_Scroll,Scroll of Magic,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12200,Event_Cake,X-mas Cake,11,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_MAGNIFICAT",3; },{},{} 12201,Red_Box_C,Commonplace Red Box,2,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +//=================================================================== // Cash Shop Usable Items +//=================================================================== 12202,Str_Dish10_,Steamed Tongue,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_STR_CASH,1800000,10; percentheal 15,5; },{},{} 12203,Agi_Dish10_,Steamed Scorpion,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_AGI_CASH,1800000,10; percentheal 15,5; },{},{} 12204,Int_Dish10_,Dragon Breath Cocktail,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_INT_CASH,1800000,10; percentheal 15,5; },{},{} @@ -6048,7 +6218,7 @@ 12217,Aspersio_5_Scroll,LV5 Aspersio Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(countitem(523)>0) { skilleffect "PR_ASPERSIO",0; sc_start SC_ASPERSIO,180000,5; delitem 523,1; } },{},{} 12218,Assumptio_5_Scroll,LV5 Assumptio Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASSUMPTIO,100000,5; skilleffect "HP_ASSUMPTIO",0; },{},{} 12219,Wind_Walk_10_Scroll,LV10 Wind Walker Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ skilleffect "SN_WINDWALK",0; sc_start SC_WINDWALK,250000,5; },{},{} -12220,Adrenaline_Scroll,LV5 Adrenaline Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ set .@type,getiteminfo(getequipid(EQI_HAND_R),11); if (.@type==6||.@type==7||.@type==8) { skilleffect "BS_ADRENALINE",0; sc_start SC_ADRENALINE,150000,5; } },{},{} +12220,Adrenaline_Scroll,LV5 Adrenaline Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ .@type = getiteminfo(getequipid(EQI_HAND_R),11); if (.@type==6||.@type==7||.@type==8) { skilleffect "BS_ADRENALINE",0; sc_start SC_ADRENALINE,150000,5; } },{},{} 12221,Megaphone_,Megaphone,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ input @megaphone$; announce strcharinfo(0) + ": " + @megaphone$,bc_all,0xFF0000; end; },{},{} 12225,Sweet_Candy_Striper,Sweet Candy Cane,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1245; },{},{} 12226,Examination1,Examination 1,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP0,5400000,25; percentheal 100,100; sc_start SC_STRFOOD,5400000,10; sc_start SC_DEXFOOD,5400000,5; sc_start SC_ATKPOTION,5400000,22; sc_start SC_MATKFOOD,5400000,15; },{},{} @@ -6203,7 +6373,7 @@ 12375,Acaraje,Akaraje,2,0,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_STEAL; bonus_script "{ bonus bHit,5; bonus bAspdRate,10; }",120,0,0,SI_ACARAJE; },{},{} 12376,Mysterious_Can2,Mysterious Can2,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 3,0; itemskill "PR_GLORIA",2; },{},{} 12377,Mysterious_PET_Bottle2,Mysterious PET Bottle2,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,3; itemskill "PR_MAGNIFICAT",1; },{},{} -12378,2009_Rice_Cake_Soup,Rice Cake Soup,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ /* percentheal 50,50; */ },{},{} +12378,2009_Rice_Cake_Soup,Rice Cake Soup,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; },{},{} 12379,Pope's_Cookie,Pope Cookie,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_STEAL; bonus_script "{ bonus2 bAddClass,Class_All,3; bonus2 bMagicAddClass,Class_All,3; bonus bMatkRate,3; bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Ghost,3; }",1200; },{},{} 12380,Desert_Wolf_Babe_Scroll,Job Change Flute,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2034,1800000; },{},{} 12381,ValkyrieA_Scroll,Ancient Languages Scroll,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_arch02") { mercenary_create 2037,1800000; } },{},{} @@ -6269,7 +6439,7 @@ 12441,F_Bubble_Gum,F Old Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12442,F_Kafra_Card,F Kafra Card,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12443,F_Neuralizer,F Neuralizer,2,2,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12444,F_Dun_Tele_Scroll1,WoE Telport Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashSeigeTele"; },{},{} +12444,F_Dun_Tele_Scroll1,WoE Telport Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashSiegeTele"; },{},{} 12445,F_Str_Dish10_,F Str Dish10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12446,F_Agi_Dish10_,F Agi Dish10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12447,F_Int_Dish10_,F Int Dish10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} @@ -6362,7 +6532,7 @@ 12536,NY_Rice_Cake_Soup,NY Rice Cake Soup,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12537,Solo_Gift_Basket,Solo Gift Basket,2,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Solo_Gift_Basket);*/ getitem 597,5; getitem 596,3; getitem 561,3; getitem 573,4; getitem 559,10; getitem 560,10; },{},{} 12538,Couple_Event_Basket,Couple Event Basket,2,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Couple_Event_Basket);*/ getitem 14546,10; getitem 14547,10; getitem 14548,10; getitem 14549,10; getitem 14550,10; },{},{} -12539,Splendid_Box,Splendid Box,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +12539,Splendid_Box,Splendid Box,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Splendid_Box); },{},{} 12540,GM_Warp_Box,GM Warp Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_GM_Warp_Box); },{},{} 12541,Fortune_Cookie1,Fortune Cookie1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Fortune_Cookie1,1); },{},{} 12542,Fortune_Cookie2,Fortune Cookie2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Fortune_Cookie2); },{},{} @@ -6432,7 +6602,6 @@ 12607,Lolli_Pop_Box,Delicious Lollipop Box,11,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12608,Splendid_Box2,Splendid Box2,11,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12609,Old_Ore_Box,Old Ore Box,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Old_Ore_Box); },{},{} -// 12612,Old_Coin_Pocket,Old Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Old_Coin_Pocket); },{},{} 12613,High_Coin_Pocket,Improved Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_High_Coin_Pocket); },{},{} 12614,Mid_Coin_Pocket,Intermediate Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Mid_Coin_Pocket); },{},{} @@ -6454,7 +6623,7 @@ 12630,Teddy_Bear_Scroll,Teddy Bear Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2217,1800000; },{},{} 12631,Macro_Stone_A,Macro Stone A,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12632,Macro_Stone_B,Macro Stone B,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12633,Malang_Cat_Can,Malangdo Cat Can,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus2 bAddClass,Class_All,10; /* bAddMonsterEquip,20; */ }",1200; sc_start SC_ITEMBOOST,1200000,20; },{},{} +12633,Malang_Cat_Can,Malangdo Cat Can,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus2 bExpAddRace,RC_All,10; }",1200; sc_start SC_ITEMBOOST,1200000,20; },{},{} 12634,Macro_Stone_A1,Macro Stone A1,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12635,Macro_Stone_A2,Macro Stone A2,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12636,Malang_Sp_Can,Malangdo Canned Specialties,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "malangdo",140,114; },{},{} @@ -6479,13 +6648,13 @@ 12655,Brain_Powder,Brain Powder,2,2000,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12656,Magical_Powder,Magical Powder,2,3000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12657,Madness_Powder,Madness Powder,2,4000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12658,Trans_Scroll_Devi,Transformation Scroll(Deviruchi),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1109,1200000,SC_MTF_ASPD,10,5; },{},{} -12659,Trans_Scroll_Ray_Arch,Transformation Scroll(Raydric),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1276,1200000,SC_MTF_RANGEATK,25; },{},{} -12660,Trans_Scroll_Mavka,Transformation Scroll(Mavka),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1884,1200000,SC_MTF_RANGEATK,25; },{},{} -12661,Trans_Scroll_Marduk,Transformation Scroll(Marduk),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1140,1200000,SC_MTF_MATK,25; },{},{} -12662,Trans_Scroll_Banshee,Transformation Scroll(Banshee),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1867,1200000,SC_MTF_MATK,25; },{},{} -12663,Trans_Scroll_Poring,Transformation Scroll(Poring),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1002,1200000,SC_MTF_CRIDAMAGE,25; },{},{} -12664,Trans_Scroll_Golem,Transformation Scroll(Golem),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1040,1200000,SC_MTF_MLEATKED,5,20,2; },{},{} +12658,Trans_Scroll_Devi,Transformation Scroll(Deviruchi),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1109,1200000,SC_MTF_ASPD,10,5; showscript "Traaaansformation-!! Deviruchi form!!"; },{},{} +12659,Trans_Scroll_Ray_Arch,Transformation Scroll(Raydric),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1276,1200000,SC_MTF_RANGEATK,25; showscript "Traaaansformation-!! Raydric form!!"; },{},{} +12660,Trans_Scroll_Mavka,Transformation Scroll(Mavka),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1884,1200000,SC_MTF_RANGEATK,25; showscript "Traaaansformation-!! Mavka form!!"; },{},{} +12661,Trans_Scroll_Marduk,Transformation Scroll(Marduk),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1140,1200000,SC_MTF_MATK,25; showscript "Traaaansformation-!! Marduk form!!"; },{},{} +12662,Trans_Scroll_Banshee,Transformation Scroll(Banshee),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1867,1200000,SC_MTF_MATK,25; showscript "Traaaansformation-!! Banshee form!!"; },{},{} +12663,Trans_Scroll_Poring,Transformation Scroll(Poring),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1002,1200000,SC_MTF_CRIDAMAGE,25; showscript "Traaaansformation-!! Poring form!!"; },{},{} +12664,Trans_Scroll_Golem,Transformation Scroll(Golem),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ transform 1040,1200000,SC_MTF_MLEATKED,5,20,2; showscript "Traaaansformation-!! Golem form!!"; },{},{} 12665,Grovel_Buff,Grovel Buff,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12666,Thai_Perfume_MATK,Thai Perfume MATK,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bMatk,24; }",600,0,0,SI_SKF_MATK; },{},{} 12667,Thai_Perfume_ATK,Thai Perfume ATK,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bBaseAtk,24; }",600,0,0,SI_SKF_ATK; },{},{} @@ -6505,7 +6674,7 @@ 12681,Nestea_Lemon,Nestea Lemon,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12682,Nestea_Blacktea,Nestea Black Tea,2,0,,30,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12683,Sg_Vi_Potion_Box200,Siege Violet Potion Box (200),2,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 11547,200; },{},{} -12684,ASPD_Potion,ASPD Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +12684,ASPD_Potion,ASPD Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_HASTEATTACK_CASH,900000,3; },{},{} 12685,Gryphon_Egg_Scroll,Gryphon Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12686,Str_Dish20,Str Dish20,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12687,Int_Dish20,Int Dish20,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} @@ -6538,7 +6707,9 @@ 12714,Easter_Scroll,Easter Scroll,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Easter_Scroll,1); },{},{} 12715,Black_Treasure_Box,Black Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12716,Indian_Rice_Cake,Indian Rice Cake,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +//=================================================================== // Guillotine Cross Poisons +//=================================================================== 12717,Poison_Paralysis,Paralyze,0,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_PARALYSE,300000,0,10,2; },{},{} 12718,Poison_Leech,Leech End,0,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LEECHESEND,300000,0,10,2; },{},{} 12719,Poison_Oblivion,Oblivion Curse,0,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_OBLIVIONCURSE,300000,0,10,2; },{},{} @@ -6547,8 +6718,9 @@ 12722,Poison_Fever,Pyrexia,0,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_PYREXIA,300000,0,10,2; },{},{} 12723,Poison_Laughing,Magic Mushroom,0,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MAGICMUSHROOM,300000,0,10,2; },{},{} 12724,Poison_Fatigue,Venom Bleed,0,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VENOMBLEED,15000,0,10,2; },{},{} - +//=================================================================== // Rune Knight's Rune Stones +//=================================================================== 12725,Runstone_Nosiege,Nauthiz Rune,11,100,,100,,,,,0xFFFFFFFF,56,2,,,,,,{ itemskill "RK_REFRESH",1; },{},{} 12726,Runstone_Rhydo,Raido Rune,11,100,,100,,,,,0xFFFFFFFF,56,2,,,,,,{ itemskill "RK_CRUSHSTRIKE",1; },{},{} 12727,Runstone_Verkana,Berkana Rune,11,100,,100,,,,,0xFFFFFFFF,56,2,,,,,,{ itemskill "RK_MILLENNIUMSHIELD",1; },{},{} @@ -6558,17 +6730,20 @@ 12731,Runstone_Turisus,Thurisaz Rune,11,100,,100,,,,,0xFFFFFFFF,56,2,,,,,,{ itemskill "RK_GIANTGROWTH",1; },{},{} 12732,Runstone_Pertz,Wyrd Rune,11,100,,100,,,,,0xFFFFFFFF,56,2,,,,,,{ itemskill "RK_STORMBLAST",1; },{},{} 12733,Runstone_Hagalas,Hagalaz Rune,11,100,,100,,,,,0xFFFFFFFF,56,2,,,,,,{ itemskill "RK_STONEHARDSKIN",1; },{},{} - +//=================================================================== // Rune Knight Rune Ores +//=================================================================== 12734,Runstone_Quality,Luxurious Rune,0,2,,100,,,,,0x00000080,56,2,,,,,,{ makerune 5; },{},{} 12735,Runstone_Ancient,Ancient Rune,0,2,,100,,,,,0x00000080,56,2,,,,,,{ makerune 11; },{},{} 12736,Runstone_Mystic,Mystic Rune,0,2,,100,,,,,0x00000080,56,2,,,,,,{ makerune 14; },{},{} 12737,Runstone_Ordinary,General Rune,0,2,,100,,,,,0x00000080,56,2,,,,,,{ makerune 2; },{},{} 12738,Runstone_Rare,Rare Rune,0,2,,100,,,,,0x00000080,56,2,,,,,,{ makerune 8; },{},{} - +//=================================================================== +// More usable items +//=================================================================== 12739,Snow_Flower,Snow Flowers,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 10,10; },{},{} -12740,Inc_Str_Scroll,Amplification Scroll,2,1,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; /*bonus_script "{}",60,0,0,SI_STR_SCROLL;*/ },{},{} -12741,Inc_Int_Scroll,Intellect Amplification Scroll,2,1,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; /*bonus_script "{}",60,0,0,SI_INT_SCROLL;*/ },{},{} +12740,Inc_Str_Scroll,Amplification Scroll,2,1,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus bStr,20; }",60,0,0,SI_STR_SCROLL; },{},{} +12741,Inc_Int_Scroll,Intellect Amplification Scroll,2,1,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bInt,20; }",60,0,0,SI_INT_SCROLL; },{},{} 12742,Valentine_Gift_Box1,Valentine Gift Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7946,1; },{},{} 12743,Valentine_Gift_Box2,Valentine Gift Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7947,1; },{},{} 12744,Chocotate_Box,Chocolate Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 558,1; },{},{} @@ -6613,17 +6788,17 @@ 12783,10000_Zeny_Check,10000 Zeny Check,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12784,1000_Zeny_Check,1000 Zeny Check,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12785,Dragon_Egg_Scroll,Dragon Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12786,Change_Slot_Card,Character Position Change Coupon,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ set CharMoves, CharMoves + 1; },{},{} +12786,Change_Slot_Card,Character Position Change Coupon,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ CharMoves++; },{},{} 12787,Diabolic_Scroll,Diabolic Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2342,1800000; },{},{} 12788,No100_Firecracker,No100 Firecracker,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12789,Juicy_Fruit,Juicy Fruit,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12790,Change_Name_Card,Character Name Change Coupon,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ set CharRename, CharRename + 1; },{},{} -12791,Combat_Pill,Combat Pill,2,20,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus2 bAddDamageClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; }",60,0,0,SI_GM_BATTLE; },{},{} +12790,Change_Name_Card,Character Name Change Coupon,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ CharRename++; },{},{} +12791,Combat_Pill,Combat Pill,2,20,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus2 bAddDamageClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; }",60,0,0,SI_GM_BATTLE; /* showscript */ },{},{} 12792,P_Combat_Pill,P Combat Pill,2,20,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus2 bAddDamageClass,Class_All,10; bonus bMatkRate,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; }",60,0,0,SI_GM_BATTLE2; },{},{} 12793,Combat_Pill_Box10,Combat Pill Box10,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12791,10; },{},{} 12794,P_Combat_Pill_Box10,P Combat Pill Box10,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12792,10; },{},{} 12795,2011_RWC_Scroll_Kr,2011 RWC Scroll Kr,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12796,Red_Booster,Red Booster,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AC_CONCENTRATION",(getskilllv(45)<3?3:getskilllv(45)); },{},{} +12796,Red_Booster,Red Booster,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AC_CONCENTRATION",(getskilllv(45)<3?3:getskilllv(45)); specialeffect2 EF_POTION_BERSERK; showscript "Oh My GOODNESS!!! I FEEL AWESOMELY STRONG!!! WOWOW"; },{},{} 12797,Wish_Maiden_Scroll,Wish Maiden Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2344,1800000; },{},{} 12798,Zealotus_Scroll,Zealotus Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2345,1800000; },{},{} 12799,PCBang_Coupon_Box5,PCBang Coupon Box5,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} @@ -6638,7 +6813,7 @@ 12808,Mother_Love_Box,Mother Love Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,40,,,{},{},{} 12809,Level_Up_Box,Level Up Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,120,,,{ getitem 12263,5; getitem 12264,5; getitem 12265,5; getitem 12766,5; getitem 12819,1; },{},{} 12810,Event_Gift_Box,Event Gift Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12811,Event_Gift_Box_,Event Gift Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 607,3; getitem callfunc("F_Rand",22528,22802,12246),1; /*<-- also included in this 'getitem'=Safe to 7-9 armor & weapon certificate (currently not exist)*/},{},{} +12811,Event_Gift_Box_,Event Gift Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 607,3; getitem callfunc("F_Rand",22528,22802,12246,6228,6229,6230,6232,6233,6234),1; },{},{} 12812,Snow_Flip,Snow Flip,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ECL_SNOWFLIP",1; },{},{} 12813,Peony_Mommy,Peony Mamy,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ECL_PEONYMAMY",1; },{},{} 12814,Slapping_Herb,Slapping Herb,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ECL_SADAGUI",1; },{},{} @@ -6670,7 +6845,7 @@ 12845,WOB_Amatsu,WOB Amatsu,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12846,Unripe_Apple2,Unripe Apple2,2,10,,50,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12847,Old_Equipment_Box,Old Equipment Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12848,Falcon_Flute,Falcon Flute,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(getskilllv("HT_FALCON")) { if(checkoption(Option_Wug)||checkoption(Option_Wugrider)) end; if(checkfalcon()==1) { setfalcon 0; } else { setfalcon 1; } } },{},{} +12848,Falcon_Flute,Falcon Flute,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(getskilllv("HT_FALCON")) { if(checkoption(Option_Wug)||checkoption(Option_Wugrider)) end; setfalcon (!checkfalcon()); } },{},{} 12849,Combination_Kit,Combination Kit,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12850,Heaven_Scroll,Heaven Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Heaven_Scroll); },{},{} 12851,Vocation_Scroll,Vocation Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vocation_Scroll); },{},{} @@ -6678,11 +6853,22 @@ 12853,Patron_Scroll,Patron Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Patron_Scroll); },{},{} 12860,Mommy_Day_Cake,Mommy Day Cake,2,0,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; skilleffect "HP_ASSUMPTIO",0; sc_start SC_ASSUMPTIO,100000,5; },{},{} 12863,Treasure_Chest_Summoned_II,Treasure Chest Summoned II,3,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ monster "this",-1,-1,"--ja--",rand(1324,1363),1,""; },{},{} +12873,TE_Potion_Box,TE Potion Box,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem(11558,10); },{},{} +12874,Frost_Giant_Blood,Frost Giant Blood,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +12875,Golem_Stone,Golem Stone,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +12876,Elf_Tear_Stun,Elf Tear Stun,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +12877,Elf_Tear_Stone_Curse,Elf Tear Stone Curse,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +12878,Elf_Tear_Freezing,Elf Tear Freezing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +12879,Elf_Tear_Sleep,Elf Tear Sleep,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +12880,Elf_Tear_Curse,Elf Tear Curse,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +12881,Elf_Tear_Silence,Elf Tear Silence,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +12882,Elf_Tear_Blind,Elf Tear Blind,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12883,Almighty,Almighty,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_BASH3D; sc_start SC_2011RWC_SCROLL,1800000,10; },{},{} 12884,Infinite_Concentration_Potion,Infinite Concentration Potion,11,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION0,1800000,4; },{},{} 12885,Infinite_Awakening_Potion,Infinite Awakening Potion,11,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION1,1800000,6; },{},{} 12886,Infinite_Berserk_Potion,Infinite Berserk Potion,11,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION2,1800000,9; },{},{} -12887,C_Wing_Of_Fly,Infinite Flywing,11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_TELEPORT",1; },{},{} +12887,C_Wing_Of_Fly,Infinite Flywing,11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"AL_TELEPORT",1; },{},{} +12888,Siege_Kit_Box,Siege Kit Box,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 12889,Weapon_Box(Spear),Weapon Box(Spear),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} 12890,Weapon_Box(Mace),Weapon Box(Mace),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} 12891,Weapon_Box(Dagger),Weapon Box(Dagger),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} @@ -6694,7 +6880,6 @@ 12897,Weapon_Box(Guitar),Weapon Box(Guitar),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} 12898,Weapon_Box(Whip),Weapon Box(Whip),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} 12899,Weapon_Box(Staff),Weapon Box(Staff),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -// 12900,Battle_Manual_Box,Battle Manual Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,10; },{},{} 12901,Insurance_Package,Insurance Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12209,10; },{},{} 12902,Bubble_Gum_Box,Bubble Gum Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12210,10; },{},{} @@ -6795,9 +6980,11 @@ 12997,Elunium_Box,Elunium Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 985,5; },{},{} 12998,Oridecon_Box,Oridecon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 984,5; },{},{} 12999,Branch_Of_Dead_Tree_Box,Dead Branch Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 604,3; },{},{} +//=================================================================== // More Weapons //=================================================================== // Daggers and Ninja Weapons +//=================================================================== 13000,Jujube_Dagger,Jujube Dagger,5,10000,,600,39,,1,0,0x3E9F7EEF,63,2,2,1,1,1,1,{ bonus bAtkEle,Ele_Wind; },{},{} 13001,Dragon_Killer,Dragon Killer,5,20,,900,110,,1,0,0x3E9F7EEF,63,2,2,4,60,1,1,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10; },{},{} 13002,Ginnungagap,Ginnungagap,5,20,,700,148,,1,0,0x3E9F7EEF,63,2,2,4,70,1,1,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50; },{},{} @@ -6816,7 +7003,7 @@ 13015,Hakujin_,Hakujin,5,20,,800,120,,1,1,0x02000000,63,2,2,3,42,1,1,{ bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10; },{},{} 13016,Poison_Knife_,Poison Knife,5,20,,800,64,,1,2,0x028F5EEE,63,2,2,3,65,1,1,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000; },{},{} 13017,House_Auger_,Ice Pick,5,20,,600,70,,1,1,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bDefRatioAtkClass,Class_All; },{},{} -13018,Sucsamad_,Sucsamad,5,20,,800,140,,1,1,0x028F5EEE,63,2,2,4,36,1,1,{ bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon,0; },{},{} +13018,Sucsamad_,Sucsamad,5,20,,800,140,,1,1,0x028F5EEE,63,2,2,4,36,1,1,{ bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon,1; },{},{} 13019,Ginnungagap_,Ginnungagap,5,20,,700,148,,1,1,0x3E9F7EEF,63,2,2,4,70,1,1,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50; },{},{} 13020,Warrior_Balmung_,Warrior's Balmung,5,20,,1000,170,,1,0,0x3FFFFFFF,63,2,2,4,48,1,1,{ bonus bAllStats,5; },{},{} 13021,Combat_Knife_C,Combat Knife,5,1,,0,129,,1,0,0x028F5EEE,63,2,2,4,1,0,1,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus2 bSubRace,RC_Demon,-10; bonus bMaxSPrate,10; bonus bSPDrainValue,3; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/},{},{} @@ -6834,13 +7021,13 @@ 13033,Assasin_Dagger_,Assassin Dagger,5,20,,600,140,,1,1,0x00001000,63,2,2,4,36,1,1,{ bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark; },{},{} 13034,Twilight_Desert,Desert Twilight,5,20,,600,130,,1,2,0x00001000,18,2,2,2,70,1,1,{ },{},{} 13035,Sandstorm,Sandstorm,5,20,,600,50,,1,4,0x00001000,18,2,2,2,70,1,1,{},{},{} -13036,BF_Dagger1,Brave Assassin's Damascus,5,20,,0,120:90,,1,0,0x3E9F7EEF,63,2,2,3,80,1,1,{ bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatkRate,15; },{},{} -13037,BF_Dagger2,Valorous Assassin's Damascus,5,20,,0,120:90,,1,0,0x3E9F7EEF,63,2,2,3,80,1,1,{ bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus bUnbreakableWeapon,0; autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatkRate,15; },{},{} +13036,BF_Dagger1,Brave Assassin's Damascus,5,20,,0,120:90,,1,0,0x3E9F7EEF,63,2,2,3,80,1,1,{ bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatkRate,15; },{},{} +13037,BF_Dagger2,Valorous Assassin's Damascus,5,20,,0,120:90,,1,0,0x3E9F7EEF,63,2,2,3,80,1,1,{ bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus bUnbreakableWeapon,1; autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatkRate,15; },{},{} 13038,Dagger_Of_Hunter,Dagger of Hunter,5,20,,700,120,,1,3,0x00020000,18,2,2,3,70,1,1,{ bonus bStr,1; bonus bAgi,2; bonus bDex,1; bonus4 bAutoSpellOnSkill,"RG_BACKSTAP","SM_BASH",10,100; bonus2 bSkillAtk,"RG_BACKSTAP",20; },{},{} 13039,Ivory_Knife,Ivory Knife,5,20,,700,130,,1,2,0x028F5EEE,18,2,2,3,50,1,1,{ bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; },{},{} 13040,N_Cutter,Novice Cutter,5,0,,0,50,,1,3,0x3E9F7EEF,63,2,2,1,1,0,1,{},{},{} 13041,N_Main_Gauche,Novice Main Gauche,5,0,,0,63,,1,3,0x3E9F7EEF,63,2,2,1,1,0,1,{},{},{} -13042,Krieger_Dagger1,Glorious Gladius,5,20,,0,120,,1,0,0x3E9F7EEF,63,2,2,4,80,1,1,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250; },{},{} +13042,Krieger_Dagger1,Glorious Gladius,5,20,,0,120,,1,0,0x3E9F7EEF,63,2,2,4,80,1,1,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250; },{},{} 13043,Fortune_Sword_I,Fortune Sword,5,0,,0,120,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{ bonus bLuk,5; },{},{} 13044,House_Auger_I,Ice Pick,5,0,,0,105,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{},{},{} 13045,Kamaitachi_I,Kamaitachi,5,0,,0,155,,2,0,0x02000000,63,2,2,4,0,0,1,{},{},{} @@ -6856,17 +7043,17 @@ 13055,F_Asura_C,Asura,5,1,,0,120,,1,0,0x02000000,63,2,2,1,1,0,1,{},{},{} 13056,F_Counter_Dagger_C,Counter Dagger,5,1,,0,209,,1,0,0x00810204,63,2,2,4,1,0,1,{},{},{} 13057,E_Moonlight_Sword_C,Moonlight Sword,5,2,,0,85,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{},{},{} -13058,E_Combat_Knife_C,Combad Knife,5,1,,0,129,,1,0,0x028F5EEE,63,2,2,4,1,0,1,{},{},{} +13058,E_Combat_Knife_C,Combat Knife,5,1,,0,129,,1,0,0x028F5EEE,63,2,2,4,1,0,1,{},{},{} 13059,E_Asura_C,Asura,5,1,,0,120,,1,0,0x02000000,63,2,2,1,1,0,1,{},{},{} 13060,E_Counter_Dagger_C,Counter Dagger,5,1,,0,209,,1,0,0x00810204,63,2,2,4,1,0,1,{},{},{} 13061,Black_Wing,Black Wing,5,20,,600,142,,1,1,0x00020000,63,2,2,3,102,1,1,{ .@r = getrefine(); bonus2 bSkillAtk,"SC_FATALMENACE",30+(.@r*2); bonus bMatkRate,(.@r*3); },{},{} 13062,Ancient_Dagger,Ancient Dagger,5,20,,600,107,,0,0,0x028F5EEE,18,2,2,4,120,1,1,{ bonus bMatk,120; bonus bMaxSP,100; bonus bSPrecovRate,5; bonus2 bAddEff2,Eff_Curse,20; bonus3 bAddEff,Eff_Curse,20,ATF_SELF|ATF_SKILL; },{},{} -13063,Adventure_Knife,Adventure Knife,5,0,,0,60,,1,0,0x02021040,63,2,2,1,1,0,1,{ bonus bUnbreakableWeapon,0; },{},{} -13064,Academy_Knife,Academy Knife,5,0,,700,110,,1,1,0x02021040,63,2,2,1,1,1,1,{ bonus bUnbreakableWeapon,0; },{},{} -13065,Academy_Eti_Knife,Academy Eti Knife,5,0,,1200,120,,1,1,0x00000001,63,2,2,1,1,1,1,{ bonus bUnbreakableWeapon,0; },{},{} +13063,Adventure_Knife,Adventure Knife,5,0,,0,60,,1,0,0x02021040,63,2,2,1,1,0,1,{ bonus bUnbreakableWeapon,1; },{},{} +13064,Academy_Knife,Academy Knife,5,0,,700,110,,1,1,0x02021040,63,2,2,1,1,1,1,{ bonus bUnbreakableWeapon,1; },{},{} +13065,Academy_Eti_Knife,Academy Eti Knife,5,0,,1200,120,,1,1,0x00000001,63,2,2,1,1,1,1,{ bonus bUnbreakableWeapon,1; },{},{} 13066,P_Dagger3,Eden Dagger III,5,0,,0,165:80,,1,0,0x3E9F7EEF,63,2,2,3,60,0,1,{},{},{} -13067,Caress,Keris,5,20,,700,107:70,,1,1,0x3E9F7EEF,18,2,2,3,30,1,1,{ bonus2 bHpDrainRate,20,10; },{},{} -13068,Saurel,Pompano,5,0,,0,160:100,,3,0,0x3E9F7EEF,63,2,2,1,50,0,1,{ bonus bUnbreakableWeapon,0; autobonus "{ bonus bBaseAtk,30; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,20; }",10,7000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; if(BaseLevel>99) { bonus bBaseAtk,10; bonus bMatk,10; } },{},{} +13067,Caress,Keris,5,20,,700,107:70,,1,1,0x3E9F7EEF,18,2,2,3,30,1,1,{ bonus2 bHPDrainRate,20,10; },{},{} +13068,Saurel,Pompano,5,0,,0,160:100,,3,0,0x3E9F7EEF,63,2,2,1,50,0,1,{ bonus bUnbreakableWeapon,1; autobonus "{ bonus bBaseAtk,30; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,20; }",10,7000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; if(BaseLevel>99) { bonus bBaseAtk,10; bonus bMatk,10; } },{},{} 13069,Aztoe_Nail,As-nail,5,56000,,500,160:80,,1,0,0x000654E2,63,2,2,4,110,1,1,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Freeze,100+(getrefine()*50); },{},{} 13070,Scarletto_Nail,Scarlet-nail,5,56000,,500,160:80,,1,0,0x000654E2,63,2,2,4,110,1,1,{ bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Stone,100+(getrefine()*50); },{},{} 13071,Upg_Dagger,Upg Dagger,5,20,,600,55,,1,1,0x3E9F7EEF,63,2,2,3,1,1,1,{ .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); },{},{} @@ -6877,21 +7064,23 @@ 13076,Raksasa_Dagger,Nachal Sword,5,40000,,600,120:100,,1,1,0x02000000,63,2,2,3,110,1,1,{ bonus bInt,3; },{},{} 13077,Kagekiri,Kagekiri,5,40000,,600,50:120,,1,0,74,7,2,2,4,100,1,1,{},{},{} 13078,Mikatsuki,Mikacheuki,5,40000,,600,50:120,,1,1,0x02000000,63,2,2,4,100,1,1,{ bonus bUseSPrate,-5; bonus bVariableCastrate,-5; },{},{} -13079,Metal_Dagger,Metal Dagger,5,20,,0,55,0,,1,0x02021040,63,2,2,3,1,1,1,{ .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); set .@i,((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} -// +13079,Metal_Dagger,Metal Dagger,5,20,,0,55,0,,1,0x02021040,63,2,2,3,1,1,1,{ .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = ((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} 13081,Octo_kitchen_Knife,Discount knife Octopus,5,200000,,700,140,0,,3,0x228F5EEE,63,2,2,4,105,1,1,{},{},{} +13083,TE_Woe_Knife,TE Woe Knife,5,0,,0,100:100,,1,0,0x3E9F7EEF,63,2,2,3,40,1,1,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Silence,3000; },{},{} 13085,Volcano_Knife,Volcano Knife,5,10,,200,80,,,0,0x280002E,63,2,2,4,60,,1,{ bonus bAgi,2; bonus bMaxHPrate,2; bonus2 bSubEle,Ele_Fire,2; bonus2 bSubEle,Ele_Water,-5; .@r = getrefine(); if(.@r==7){ bonus bMaxHPrate,1; bonus2 bSubEle,Ele_Fire,3; } if (.@r>7) { bonus bMaxHPrate,.@r-7; bonus2 bSubEle,Ele_Fire,.@r-7; } },{},{} 13088,Greater_Lease,Greater Lease,5,10,,500,110:50,,,1,0x280006E,63,2,2,4,30,1,1,{ .@r = getrefine(); if (.@r >= 5) bonus bMatk,30; if (.@r >= 7) bonus bMatk,10; if (.@r >= 9) bonus bMatk,10; },{},{} 13089,FaceWorm_Leg,FaceWorm Leg,5,10,,500,0:50,110,,1,0x3FFFFFFF,63,2,2,3,24,1,1,{ bonus bAtkEle,Ele_Poison; },{},{} 13090,Faceworm_Queen's_Leg,Faceworm Queen's Leg,5,10,,500,180:120,,,2,0x280006F,63,2,2,4,100,1,1,{ bonus bInt,3; },{},{} -13092,RWC_Memory_Knife,RWC Memory Knife,5,1000,500,650,50,0,1,1,0x02800075,63,2,2,3,1,1,1,{ .@r = getrefine(); bonus bBaseAtk,20*(.@r/3); bonus bMatk,20*(.@r/3); if(.@r>=9){ set .@i,1; bonus4 bAutoSpell,"BS_WEAPONPERFECT",1,20,0; } if(.@r>=6){ set .@rate,5*(.@i+1); bonus2 bAddClass,Class_All,.@rate; bonus2 bMagicAddClass,Class_All,.@rate; } },{},{} +13092,RWC_Memory_Knife,RWC Memory Knife,5,1000,500,650,50,0,1,1,0x02800075,63,2,2,3,1,1,1,{ .@r = getrefine(); bonus bBaseAtk,20*(.@r/3); bonus bMatk,20*(.@r/3); if(.@r>=9){ .@i = 1; bonus4 bAutoSpell,"BS_WEAPONPERFECT",1,20,0; } if(.@r>=6){ .@rate = 5*(.@i+1); bonus2 bAddClass,Class_All,.@rate; bonus2 bMagicAddClass,Class_All,.@rate; } },{},{} 13093,Tanos_Dagger,Tanos Dagger,5,10,,800,100:130,,,1,0x280006F,63,2,2,4,120,1,1,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bAtkRate,5; bonus2 bHPLossRate,100,10000; },{},{} -13094,Devil_Pierced_Dagger,Devil Pierced Dagger,5,10,,900,120,,,1,0x3E9F7EEF,63,2,2,3,100,1,1,{ bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if (.@r>=12) { bonus bAtkRate,7; } else if (.@r>=9) { bonus bAtkRate,5; } },{},{} -13096,Half_BF_Dagger2,Half BF Dagger2,5,20,,0,120:90,,1,0,0x3E9F7EEF,63,2,2,3,80,1,1,{ bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon,0; autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatkRate,45; },{},{} +13094,Devil_Pierced_Dagger,Devil Pierced Dagger,5,10,,900,120,,,1,0x3E9F7EEF,63,2,2,3,100,1,1,{ bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus bAtkRate,(.@r>=12)?(7):((.@r>=9)?(5):(0)); },{},{} +13096,Half_BF_Dagger2,Half BF Dagger2,5,20,,0,120:90,,1,0,0x3E9F7EEF,63,2,2,3,80,1,1,{ bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon,1; autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatkRate,45; },{},{} 13097,Blue_Dagger,Blue Dagger,5,10,,1000,160,,1,1,0x00020000,56,2,2,3,100,1,1,{ bonus bStr,5; bonus bInt,5; },{},{} 13098,Blue_Ashura,Blue Ashura,5,10,,1000,150,,1,1,0x02000000,7,2,2,3,100,1,1,{ bonus bMatk,120; },{},{} 13099,Blue_Knife,Blue Knife,5,10,,500,160,,1,1,0x00010000,56,2,2,3,100,1,1,{ bonus bStr,5; bonus bInt,5; },{},{} +//=================================================================== // Revolvers +//=================================================================== 13100,Six_Shooter,Six Shooter,5,4500,,400,30,,7,1,0x41000000,63,2,34,1,10,1,17,{ bonus bHit,-10; },{},{} 13101,Six_Shooter_,Six Shooter,5,4500,,400,30,,7,2,0x41000000,63,2,34,1,10,1,17,{ bonus bHit,-10; },{},{} 13102,Crimson_Bolt,Crimson Bolt,5,20000,,450,45,,7,1,0x41000000,63,2,34,2,35,1,17,{ bonus bHit,-10; },{},{} @@ -6900,15 +7089,16 @@ 13105,The_Garrison_,Garrison,5,48000,,500,70,,7,2,0x41000000,63,2,34,2,55,1,17,{ bonus bHit,-10; },{},{} 13106,Gold_Lux,Gold Lux,5,100000,,500,20,,7,0,0x41000000,63,2,34,3,12,1,17,{ bonus bHit,-10; if(getskilllv("GS_GLITTERING")>0) bonus3 bAutoSpell,"GS_GLITTERING",getskilllv("GS_GLITTERING"),100; },{},{} 13107,Wasteland_Outlaw,Wasteland's Outlaw,5,20,,580,68,,7,2,0x41000000,63,2,34,3,70,1,17,{ bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; },{},{} -13108,BF_Pistol1,Soldier Revolver,5,0,,0,70,,7,0,0x41000000,63,2,34,3,80,1,17,{ bonus bDex,2; bonus bHit,-10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; autobonus "{ bonus bAspdRate,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon,0; },{},{} +13108,BF_Pistol1,Soldier Revolver,5,0,,0,70,,7,0,0x41000000,63,2,34,3,80,1,17,{ bonus bDex,2; bonus bHit,-10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; autobonus "{ bonus bAspdRate,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon,1; },{},{} 13109,Wasteland_Outlaw_C,Wasteland Outlaw,5,20,,0,100,,7,0,0x41000000,63,2,34,3,0,0,17,{ bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; bonus2 bAddClass,Class_All,40; },{},{} -13110,Krieger_Pistol1,Glorious Pistol,5,0,,0,80,,7,0,0x41000000,63,2,34,4,80,1,17,{ bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5){ bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000; bonus2 bSkillAtk,"GS_RAPIDSHOWER",.@r*2; } },{},{} +13110,Krieger_Pistol1,Glorious Pistol,5,0,,0,80,,7,0,0x41000000,63,2,34,4,80,1,17,{ bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5){ bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000; bonus2 bSkillAtk,"GS_RAPIDSHOWER",.@r*2; } },{},{} 13111,Sharpshooter_Revolver,Sharpshooter Revolver,5,20,,0,105,,7,0,0x41000000,63,2,34,4,1,1,17,{ bonus bDex,2; bonus2 bSkillAtk,"GS_DESPERADO",25; },{},{} 13112,P_Revolver1,Eden Revlover I,5,0,,0,44,,7,0,0x41000000,63,2,34,1,26,0,17,{ bonus bHit,-5; },{},{} 13113,P_Revolver2,Eden Revlover II,5,0,,0,60,,7,0,0x41000000,63,2,34,1,40,0,17,{ bonus bHit,-5; },{},{} 13114,P_Revolver3,Eden Revolver III,5,0,,0,76,,7,0,0x41000000,63,2,34,3,60,0,17,{ bonus bHit,-5; },{},{} 13115,Upg_Revolver,Upg Revolver,5,20,,500,35,,7,1,0x41000000,63,2,34,3,1,1,17,{ .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bLongAtkRate,(.@r*2); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); },{},{} 13116,Novice_Revolver,Novice Revolver,5,0,,500,20,,7,0,0x41000000,63,2,34,1,1,0,17,{ bonus bHit,-5; },{},{} +13117,TE_Woe_Pistol,TE Woe Pistol,5,0,,0,60,,7,0,0x41000000,63,2,34,3,40,1,17,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Curse,3000; },{},{} 13118,Spark_Light,Spark Light,5,1,,100,0,,9,0,0x41000000,63,2,34,1,1,1,17,{},{},{} 13119,Spark_Of_Freedom,Spark Of Freedom,5,1,,100,100,,9,2,0x41000000,63,2,34,3,99,1,17,{},{},{} 13120,Heaven's_Feather_and_Hell's_Fire,Heaven's Feather & Hell's Fire,5,1250000,,800,150,,9,1,0x41000000,63,2,34,3,99,1,17,{ bonus2 bSkillAtk,"GS_DESPERADO",20; bonus2 bSkillAtk,"RL_FALLEN_ANGEL",20; },{},{} @@ -6916,7 +7106,10 @@ 13124,Altea_and_Ares_,Altea & Ares,5,1450000,,1000,200,,9,1,0x40000000,63,2,34,3,140,1,17,{ bonus bHit,5; bonus bDelayrate,10; bonus bLongAtkRate,30; },{},{} 13125,Metal_Revolver,Metal Revolver,5,0,,0,30,,7,1,0x41000000,63,2,34,3,1,0,17,{ bonus bBaseAtk,getrefine(); bonus bLongAtkRate,1; if (BaseLevel >= 20 && BaseLevel <= 120) { bonus bBaseAtk,3*(BaseLevel/10); } },{},{} 13126,Infinity_Pistol,Infinity Pistol,5,10,,500,175,,7,1,0x41000000,63,2,34,4,100,0,17,{},{},{} +13127,Crimson_Revolver,Crimson Revolver,5,20,,1000,100,,7,2,0x41000000,63,2,34,3,70,1,17,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{} +//=================================================================== // Guns +//=================================================================== 13150,Branch,Branch,5,3000,,500,50,,9,3,0x41000000,63,2,34,1,1,1,18,{},{},{} 13151,The_Cyclone,Cyclone,5,17500,,700,120,,9,1,0x41000000,63,2,34,2,24,1,18,{ bonus bHit,10; bonus bCritical,10; },{},{} 13152,The_Cyclone_,Cyclone,5,17500,,700,120,,9,2,0x41000000,63,2,34,2,24,1,18,{ bonus bHit,10; bonus bCritical,10; },{},{} @@ -6938,19 +7131,23 @@ 13168,Thunder_P,Thunder P,5,76000,,700,80,,9,1,0x41000000,63,2,34,3,70,1,20,{ bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20; },{},{} 13169,Thunder_P_,Thunder P,5,76000,,700,80,,9,2,0x41000000,63,2,34,3,70,1,20,{ bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20; },{},{} 13170,Lever_Action_Rifle,Lever Action Rifle,5,20,,770,138,,9,2,0x41000000,63,2,34,3,70,1,18,{ bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; },{},{} -13171,BF_Rifle1,Soldier Rifle,5,0,,0,50,,9,0,0x41000000,63,2,34,3,80,1,18,{ bonus bDex,2; bonus bHit,10; bonus bCritical,10; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bVariableCastrate,"GS_TRACKING",-25; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; },{},{} -13172,BF_Gatling_Gun1,Soldier Gatling Gun,5,0,,0,80,,9,0,0x41000000,63,2,34,3,80,1,19,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,120,1000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon,0; },{},{} -13173,BF_Shotgun1,Soldier Shotgun,5,0,,0,100,,9,0,0x41000000,63,2,34,3,80,1,20,{ bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon,0; },{},{} -13174,BF_Launcher1,Soldier Grenade Launcher,5,0,,0,300,,9,0,0x41000000,63,2,34,3,80,1,21,{ bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon,0; },{},{} +13171,BF_Rifle1,Soldier Rifle,5,0,,0,50,,9,0,0x41000000,63,2,34,3,80,1,18,{ bonus bDex,2; bonus bHit,10; bonus bCritical,10; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bVariableCastrate,"GS_TRACKING",-25; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; },{},{} +13172,BF_Gatling_Gun1,Soldier Gatling Gun,5,0,,0,80,,9,0,0x41000000,63,2,34,3,80,1,19,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,120,1000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon,1; },{},{} +13173,BF_Shotgun1,Soldier Shotgun,5,0,,0,100,,9,0,0x41000000,63,2,34,3,80,1,20,{ bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon,1; },{},{} +13174,BF_Launcher1,Soldier Grenade Launcher,5,0,,0,300,,9,0,0x41000000,63,2,34,3,80,1,21,{ bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon,1; },{},{} 13175,Lever_Action_Rifle_C,Lever Action Rifle,5,20,,0,170,,9,0,0x41000000,63,2,34,3,1,0,18,{ bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; bonus2 bAddClass,Class_All,40; },{},{} -13176,Krieger_Rifle1,Glorious Rifle,5,0,,0,90,,9,0,0x41000000,63,2,34,4,80,1,18,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus2 bVariableCastrate,"GS_TRACKING",25; bonus2 bSkillAtk,"GS_TRACKING",.@r * 3; } },{},{} -13177,Krieger_Gatling1,Glorious Gatling Gun,5,0,,0,90,,9,0,0x41000000,63,2,34,4,80,1,19,{ bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>10)?10:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>10)?10:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus2 bAddClass,Class_All,.@r; } },{},{} -13178,Krieger_Shotgun1,Glorious Shotgun,5,0,,0,110,,9,0,0x41000000,63,2,34,4,80,1,20,{ bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bSplashRange,1; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>10)?10:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>10)?10:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus2 bSkillAtk,"GS_SPREADATTACK",.@r * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; } },{},{} -13179,Krieger_Launcher1,Glorious Grenade Launcher,5,0,,0,330,,9,0,0x41000000,63,2,34,4,80,1,21,{ bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>10)?10:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>10)?10:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus2 bSkillAtk,"GS_GROUNDDRIFT",.@r * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; autobonus "{ bonus bAspdRate,20; }",200,20000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; } },{},{} +13176,Krieger_Rifle1,Glorious Rifle,5,0,,0,90,,9,0,0x41000000,63,2,34,4,80,1,18,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus2 bVariableCastrate,"GS_TRACKING",25; bonus2 bSkillAtk,"GS_TRACKING",.@r * 3; } },{},{} +13177,Krieger_Gatling1,Glorious Gatling Gun,5,0,,0,90,,9,0,0x41000000,63,2,34,4,80,1,19,{ bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>10)?10:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>10)?10:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus2 bAddClass,Class_All,.@r; } },{},{} +13178,Krieger_Shotgun1,Glorious Shotgun,5,0,,0,110,,9,0,0x41000000,63,2,34,4,80,1,20,{ bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bSplashRange,1; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>10)?10:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>10)?10:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus2 bSkillAtk,"GS_SPREADATTACK",.@r * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; } },{},{} +13179,Krieger_Launcher1,Glorious Grenade Launcher,5,0,,0,330,,9,0,0x41000000,63,2,34,4,80,1,21,{ bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>10)?10:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>10)?10:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus2 bSkillAtk,"GS_GROUNDDRIFT",.@r * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; autobonus "{ bonus bAspdRate,20; }",200,20000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; } },{},{} 13180,Novice_Rifle,Novice Rifle,5,0,,500,50,,9,3,0x41000000,1,2,34,4,1,0,18,{},{},{} 13181,Novice_Shotgun,Novice Shotgun,5,0,,1000,80,,9,0,0x41000000,1,2,34,4,1,0,20,{},{},{} 13182,Novice_Gatling,Novice Gatling,5,0,,1500,40,,9,0,0x41000000,1,2,34,4,1,0,19,{},{},{} 13183,Novice_Grenade_Launcher,Novice Grenade Launcher,5,0,,1500,40,,9,0,0x41000000,1,2,34,4,1,0,21,{},{},{} +13184,TE_Woe_Rifle,TE Woe Rifle,5,0,,0,80,,9,0,0x41000000,63,2,34,3,40,1,18,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Silence,3000; },{},{} +13185,TE_Woe_Gatling,TE Woe Gatling,5,0,,0,100,,7,0,0x41000000,63,2,34,3,40,1,19,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Stun,3000; },{},{} +13186,TE_Woe_Shotgun,TE Woe Shotgun,5,0,,0,100,,7,0,0x41000000,63,2,34,3,40,1,20,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Poison,3000; },{},{} +13187,TE_Woe_Grenade,TE Woe Grenade,5,0,,0,100,,9,0,0x41000000,63,2,34,3,40,1,21,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Blind,3000; },{},{} 13189,Color_Scope,Color Scope,5,1350000,,1200,240,,9,2,0x40000000,63,2,34,3,105,1,18,{ bonus bHit,20; bonus bCriticalRate,30; },{},{} 13190,RAG203,RAG203,5,1800000,,1300,260,,9,1,0x40000000,63,2,34,3,140,1,18,{ bonus bHit,10; bonus bCriticalRate,15; bonus4 bAutoSpell,"AL_DECAGI",1,500,0; },{},{} 13192,Death_Fire,Death Fire,5,1250000,,2000,400,,9,1,0x40000000,63,2,34,3,108,1,20,{ bonus bLongAtkRate,5; bonus bHit,-50; bonus bDelayrate,-10; },{},{} @@ -6961,7 +7158,9 @@ 13197,Mini_Mei,Mini Mei,5,1600000,,2500,220,,9,2,0x41000000,63,2,34,2,106,1,19,{},{},{} 13198,Tempest_,Tempest,5,2200000,,2500,250,,9,0,0x41000000,63,2,34,2,140,1,19,{ bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20; },{},{} 13199,Tempest,Tempest,5,2200000,,2500,250,,9,1,0x41000000,63,2,34,2,140,1,19,{ bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20; },{},{} +//=================================================================== // Bullets +//=================================================================== 13200,Bullet,Bullet,10,1,,2,10,,,,0x41000000,63,2,32768,,1,,3,{},{},{} 13201,Silver_Bullet,Silver Bullet,10,15,,2,15,,,,0x41000000,63,2,32768,,1,,3,{ bonus bAtkEle,Ele_Holy; },{},{} 13202,Shell_Of_Blood,Bloody Shell,10,30,,2,30,,,,0x41000000,63,2,32768,,1,,3,{ bonus2 bAddEff,Eff_Bleeding,100; },{},{} @@ -6989,7 +7188,9 @@ 13225,Poison_Sphere,Poison Sphere,10,10,,5,50,,,0,0xFFFFFFFF,63,2,32768,,1,,5,{ bonus bAtkEle,Ele_Poison; },{},{} 13226,Blind_Sphere,Blind Sphere,10,10,,5,50,,,0,0xFFFFFFFF,63,2,32768,,1,,5,{ bonus bAtkEle,Ele_Dark; },{},{} 13227,Freezing_Sphere,Freezing Sphere,10,10,,5,50,,,0,0xFFFFFFFF,63,2,32768,,1,,5,{ bonus bAtkEle,Ele_Water; },{},{} +//=================================================================== // Shurikens & Kunais +//=================================================================== 13250,Shuriken,Shuriken,10,4,,5,10,,,,0x02000000,63,2,32768,,1,,6,{},{},{} 13251,Nimbus_Shuriken,Nimbus Shuriken,10,10,,5,30,,,,0x02000000,63,2,32768,,20,,6,{},{},{} 13252,Flash_Shuriken,Flash Shuriken,10,20,,5,45,,,,0x02000000,63,2,32768,,40,,6,{},{},{} @@ -7000,7 +7201,9 @@ 13257,Kunai_Of_Furious_Wind,High Wind Kunai,10,10,,20,30,,,,0x02000000,63,2,32768,,1,,7,{ bonus bAtkEle,Ele_Wind; },{},{} 13258,Kunai_Of_Fierce_Flame,Heat Wave Kunai,10,10,,20,30,,,,0x02000000,63,2,32768,,1,,7,{ bonus bAtkEle,Ele_Fire; },{},{} 13259,Kunai_Of_Deadly_Poison,Fell Poison Kunai,10,10,,20,30,,,,0x02000000,63,2,32768,,1,,7,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; },{},{} +//=================================================================== // Genetic Created Bombs And Throwing Items +//=================================================================== 13260,Apple_Bomb,Apple Bomb,10,100,,1,0,,,,0x00040000,56,2,32768,,99,,9,{},{},{} 13261,Coconut_Bomb,Coconut Bomb,10,100,,1,0,,,,0x00040000,56,2,32768,,99,,9,{},{},{} 13262,Melon_Bomb,Melon Bomb,10,100,,1,0,,,,0x00040000,56,2,32768,,99,,9,{},{},{} @@ -7013,7 +7216,7 @@ 13269,Boost500_To_Throw,Throwing Boost 500,10,100,,10,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_BOOST500,500000,10; },{},{} 13270,Full_SwingK_To_Throw,Throwing Full Swing K,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_FULL_SWING_K,500000,50; },{},{} 13271,Mana_Plus_To_Throw,Throwing Mana Plus,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_MANA_PLUS,500000,50; },{},{} -13272,Cure_Free_To_Throw,Throwing Cure Free,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_end SC_BLEEDING; sc_end SC_CURSE; sc_end SC_SILENCE; itemheal rand(1000,1200),0; },{},{} +13272,Cure_Free_To_Throw,Throwing Cure Free,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_end SC_BLEEDING; sc_end SC_CURSE; sc_end SC_SILENCE; sc_end SC_POISON; sc_end SC_ORCISH; sc_end SC_CHANGEUNDEAD; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_DPOISON; itemheal 500,0; },{},{} 13273,Stamina_Up_M_To_Throw,Throwing Muramura M,10,100,,10,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_MUSTLE_M,500000,5; },{},{} 13274,Digestive_F_To_Throw,Throwing Falmons F,10,100,,10,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_LIFE_FORCE_F,500000,5; },{},{} 13275,HP_Inc_PotS_To_Throw,Throwing Increase HP Potion (Small),10,100,,20,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_INCMHP,500000,(500+(BaseLevel*10/3)); percentheal 1,0; },{},{} @@ -7032,22 +7235,26 @@ 13288,Drocera_Stew_To_Throw,Throwing Drosera Herb Salad,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_DROCERA_HERB_STEAMED,300000,20; },{},{} 13289,Petti_Noodle_To_Throw,Throwing Petite Tail Soup,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_PUTTI_TAILS_NOODLES,300000,20; },{},{} 13290,Black_Thing_To_Throw,Throwing Black Mass,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_STOMACHACHE,60000,rand(5,10); },{},{} +//=================================================================== // More Shurikens & Kunais -13291,Starfish,Starfish,10,0,,5,110,,,,0x02000000,63,2,32768,,50,,7,{ bonus bAtkEle,Ele_Neutral; bonus2 bAddEff,Eff_Stun,1000; },{},{} +//=================================================================== +13291,Starfish,Starfish,10,0,,5,110,,,,0x02000000,63,2,32768,,50,,6,{ bonus bAtkEle,Ele_Neutral; bonus2 bAddEff,Eff_Stun,1000; },{},{} 13292,Dried_Squid,Dried Squid,10,10,,20,50,,,,0x02000000,63,2,32768,,1,,7,{ bonus bAtkEle,Ele_Neutral; bonus2 bAddEff,Eff_Stun,1000; },{},{} -13293,Flying_Fish,Flying Fish,10,10,,20,50,,,,0x02000000,63,2,32768,,1,,6,{ bonus bAtkEle,Ele_Neutral; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,3; },{},{} -13294,Explosive_Kunai,Explosive Kunai,10,100,,30,50,,,,0x02000000,63,2,32768,,1:100,,7,{ bonus bAtkEle,Ele_Neutral; },{},{} +13293,Flying_Fish,Flying Fish,10,10,,20,50,,,,0x02000000,63,2,32768,,1,,7,{ bonus bAtkEle,Ele_Neutral; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,3; },{},{} +13294,Explosive_Kunai,Explosive Kunai,10,100,,30,50,,,,0x02000000,63,2,32768,,100,,7,{ bonus bAtkEle,Ele_Neutral; },{},{} 13295,Light_Shuriken,Light Shuriken,10,0,,5,5,,,,0xFFFFFFFF,63,2,32768,,,,0,{},{},{} +//=================================================================== // Ninja Fuuma Shurikens -13300,Huuma_Bird_Wing,Huuma Wing Shuriken,5,90000,,3000,150,,1,0,0x02000000,63,2,34,4,65,1,22,{ bonus bUnbreakableWeapon,0; bonus bAtkEle,Ele_Wind; bonus bDex,-2; bonus bAgi,-1; },{},{} -13301,Huuma_Giant_Wheel,Huuma Giant Wheel Shuriken,5,40000,,2500,50,,1,3,0x02000000,63,2,34,4,42,1,22,{ bonus bUnbreakableWeapon,0; bonus2 bAddEff,Eff_Bleeding,100; },{},{} -13302,Huuma_Giant_Wheel_,Huuma Giant Wheel Shuriken,5,40000,,2500,50,,1,4,0x02000000,63,2,34,4,42,1,22,{ bonus bUnbreakableWeapon,0; bonus2 bAddEff,Eff_Bleeding,100; },{},{} -13303,Huuma_Blaze,Huuma Blaze Shuriken,5,78000,,1500,185,,1,0,0x02000000,63,2,34,4,55,1,22,{ bonus bUnbreakableWeapon,0; bonus bAtkEle,Ele_Fire; bonus bDex,-2; bonus3 bAutoSpell,"MG_FIREBALL",5,30; },{},{} -13304,Huuma_Calm_Mind,Huuma Calm Mind,5,20,,1550,112,,1,2,0x02000000,63,2,34,3,70,1,22,{ bonus bUnbreakableWeapon,0; bonus2 bSkillAtk,"NJ_HUUMA",30; bonus bNoCastCancel,0; },{},{} -13305,BF_Huuma_Shuriken1,Brave Huuma Front Shuriken,5,20,,0,55,,1,0,0x02000000,63,2,34,3,80,1,22,{ bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; },{},{} -13306,BF_Huuma_Shuriken2,Valorous Huuma Front Shuriken,5,20,,0,55,,1,0,0x02000000,63,2,34,3,80,1,22,{ bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon,0; },{},{} -13307,Krieger_Huuma_Shuriken1,Glorious Shuriken,5,20,,0,55:90,,1,0,0x02000000,63,2,34,4,80,1,22,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bMatkRate,15; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-3,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1; bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200; } },{},{} -13308,Huuma_Blaze_I,Huuma Blaze Shuriken,5,0,,0,230,,1,0,0x02000000,63,2,34,4,0,0,22,{ bonus bUnbreakableWeapon,0; bonus bAtkEle,Ele_Fire; bonus bDex,2; },{},{} +//=================================================================== +13300,Huuma_Bird_Wing,Huuma Wing Shuriken,5,90000,,3000,150,,1,0,0x02000000,63,2,34,4,65,1,22,{ bonus bUnbreakableWeapon,1; bonus bAtkEle,Ele_Wind; bonus bDex,-2; bonus bAgi,-1; },{},{} +13301,Huuma_Giant_Wheel,Huuma Giant Wheel Shuriken,5,40000,,2500,50,,1,3,0x02000000,63,2,34,4,42,1,22,{ bonus bUnbreakableWeapon,1; bonus2 bAddEff,Eff_Bleeding,100; },{},{} +13302,Huuma_Giant_Wheel_,Huuma Giant Wheel Shuriken,5,40000,,2500,50,,1,4,0x02000000,63,2,34,4,42,1,22,{ bonus bUnbreakableWeapon,1; bonus2 bAddEff,Eff_Bleeding,100; },{},{} +13303,Huuma_Blaze,Huuma Blaze Shuriken,5,78000,,1500,185,,1,0,0x02000000,63,2,34,4,55,1,22,{ bonus bUnbreakableWeapon,1; bonus bAtkEle,Ele_Fire; bonus bDex,-2; bonus3 bAutoSpell,"MG_FIREBALL",5,30; },{},{} +13304,Huuma_Calm_Mind,Huuma Calm Mind,5,20,,1550,112,,1,2,0x02000000,63,2,34,3,70,1,22,{ bonus bUnbreakableWeapon,1; bonus2 bSkillAtk,"NJ_HUUMA",30; bonus bNoCastCancel,0; },{},{} +13305,BF_Huuma_Shuriken1,Brave Huuma Front Shuriken,5,20,,0,55,,1,0,0x02000000,63,2,34,3,80,1,22,{ bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; },{},{} +13306,BF_Huuma_Shuriken2,Valorous Huuma Front Shuriken,5,20,,0,55,,1,0,0x02000000,63,2,34,3,80,1,22,{ bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon,1; },{},{} +13307,Krieger_Huuma_Shuriken1,Glorious Shuriken,5,20,,0,55:90,,1,0,0x02000000,63,2,34,4,80,1,22,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bMatkRate,15; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-3,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>8) { bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1; bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200; } },{},{} +13308,Huuma_Blaze_I,Huuma Blaze Shuriken,5,0,,0,230,,1,0,0x02000000,63,2,34,4,0,0,22,{ bonus bUnbreakableWeapon,1; bonus bAtkEle,Ele_Fire; bonus bDex,2; },{},{} 13309,Huuma_Giant_Wheel_C,Huuma Giant Wheel Shuriken,5,0,,0,99,,1,0,0x02000000,63,2,34,4,1,0,22,{ bonus2 bAddSize,Size_All,80; },{},{} 13310,P_Huuma_Suriken1,P.Huuma Suriken I,5,0,,0,170,,1,0,0x02000000,63,2,34,3,60,0,22,{ bonus bMatk,50; },{},{} 13311,Huuma_Shadow,Sword Huuma Shuriken,5,5000,,1500,170,,1,0,0x02000000,63,2,34,3,99,1,22,{ bonus bStr,3; },{},{} @@ -7056,33 +7263,37 @@ 13314,Huuma_Fluttering_Snow,Wave Huuma Shuriken,5,100000,,1500,200,,1,0,0x02000000,63,2,34,4,110,1,22,{ bonus bMatk,50; bonus bAtkEle,Ele_Water; bonus3 bAutoSpell,"NJ_HYOUSYOURAKU",(getskilllv("NJ_HYOUSYOURAKU")?getskilllv("NJ_HYOUSYOURAKU"):1),30; },{},{} 13315,Huuma_Thunderstorm,Thunderstorm Huuma Shuriken,5,100000,,1500,200,,1,0,0x02000000,63,2,34,4,110,1,22,{ bonus bMatk,50; bonus bAtkEle,Ele_Wind; bonus3 bAutoSpell,"NJ_RAIGEKISAI",(getskilllv("NJ_RAIGEKISAI")?getskilllv("NJ_RAIGEKISAI"):1),30; },{},{} 13316,Upg_Huuma_Shuriken,Upg Huuma Shuriken,5,20,,1500,55,,1,1,0x02000000,63,2,34,3,1,1,22,{ .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); bonus bLongAtkRate,(.@r); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); },{},{} -13321,Half_BF_Huuma_Shuriken2,Half BF Huuma Shuriken,5,20,,0,55,,1,0,0x02000000,63,2,34,3,80,1,22,{ bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player,40; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon,0; },{},{} -13322,Huuma_Metal_Shuriken,Huuma Metal Shuriken,5,20,,0,50,,1,1,0x02000000,63,2,34,3,1,1,22,{ bonus bUnbreakableWeapon,0; .@r = getrefine(); bonus bBaseAtk,.@r*5; bonus bMatk,.@r*3; if(.@r>=2) bonus bNearAtkDef,1*.@r/2; if (BaseLevel >= 20 && BaseLevel <= 120) bonus bBaseAtk,3*.@r/10; },{},{} -13323,Infinity_Shuriken,Infinity Shuriken,5,0,,500,150,,1,0,0x02000000,63,2,34,4,100,1,22,{ bonus bMatk,40; },{},{} +13317,TE_Woe_Huuma,TE Woe Huuma,5,0,,0,80:100,,1,0,0x22000000,63,2,2,3,40,1,22,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Bleeding,3000; },{},{} +13321,Half_BF_Huuma_Shuriken2,Half BF Huuma Shuriken,5,20,,0,55,,1,0,0x02000000,63,2,34,3,80,1,22,{ bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player,40; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon,1; },{},{} +13322,Huuma_Metal_Shuriken,Huuma Metal Shuriken,5,20,,0,50,,1,1,0x02000000,63,2,34,3,1,1,22,{ bonus bUnbreakableWeapon,1; .@r = getrefine(); bonus bBaseAtk,.@r*5; bonus bMatk,.@r*3; if(.@r>=2) bonus bNearAtkDef,1*.@r/2; if (BaseLevel >= 20 && BaseLevel <= 120) bonus bBaseAtk,3*.@r/10; },{},{} +13323,Infinity_Shuriken,Infinity Shuriken,5,0,,500,150,,1,1,0x02000000,63,2,34,4,100,1,22,{ bonus bMatk,40; },{},{} +13327,Crimson_Huuma_Shuriken,Crimson Huuma Shuriken,5,20,,1000,100,,1,2,0x02000000,63,2,34,3,70,1,22,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); },{},{} +//=================================================================== // More 1-Handed Swords +//=================================================================== 13400,Cutlas_,Cutlus,5,20,,900,150,,1,1,0x000654E2,63,2,2,4,40,1,2,{ skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; },{},{} 13401,Excalibur_C,Excalibur,5,1,,0,199,,1,0,0x000654E2,63,2,2,4,1,0,2,{ bonus bInt,10; bonus bLuk,10; bonus bAtkEle,Ele_Holy; },{},{} 13402,Cutlas_C,Cutlus,5,2,,0,185,,1,0,0x000654E2,63,2,2,4,0,0,2,{ skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; },{},{} -13403,Solar_Sword_C,Solar Sword,5,2,,0,120,,1,0,0x000654E2,63,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Fire; bonus2 bSPLossRate,15,10; /*bonus3 bHPDrainRate,1000,1,0;*/},{},{} +13403,Solar_Sword_C,Solar Sword,5,2,,0,120,,1,0,0x000654E2,63,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Fire; bonus2 bSPLossRate,15,10; bonus2 bHPDrainRate,1000,1; },{},{} 13404,Platinum_Shotel,Platinum Shotel,5,20,,1500,130,,1,1,0x000654E2,63,2,2,4,55,1,2,{ bonus bCritical,50; },{},{} 13405,Curved_Sword,Curved Sword,5,20,,800,125,,1,2,0x000654E2,63,2,2,4,55,1,2,{ bonus bAspdRate,10; bonus2 bAddEff,Eff_Curse,300; },{},{} 13406,Edger,Edger,5,20,,0,120,,1,0,0x000654E2,63,2,2,1,0,0,2,{ bonus2 bAddClass,Class_All,50; },{},{} 13407,Nagan_C,Refined Nagan,5,1,,0,148,,1,0,0x000654E2,63,2,2,4,0,0,2,{ skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player,40; },{},{} 13408,Fire_Brand_C,Refined Fireblend,5,1,,0,120,,1,0,0x000654E2,63,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Fire; bonus bInt,2; skill "MG_FIREBOLT",5; bonus3 bAutoSpell,"MG_FIREBOLT",5,100; },{},{} -13409,Immaterial_Sword_C,Refined Immaterial Sword,5,1,,0,160,,1,0,0x000654E2,63,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Ghost; bonus2 bSPVanishRate,80,45; bonus bUnbreakableWeapon,0; },{},{} -13410,BF_Sword1,Valorous Gladiator Blade,5,20,,0,115,,1,0,0x000654E3,63,2,2,3,80,1,2,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; },{},{} -13411,BF_Sword2,Brave Gladiator Blade,5,20,,0,115,,1,0,0x000654E3,63,2,2,3,80,1,2,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus bMatkRate,10; bonus bUnbreakableWeapon,0; },{},{} +13409,Immaterial_Sword_C,Refined Immaterial Sword,5,1,,0,160,,1,0,0x000654E2,63,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Ghost; bonus2 bSPVanishRate,80,45; bonus bUnbreakableWeapon,1; },{},{} +13410,BF_Sword1,Valorous Gladiator Blade,5,20,,0,115,,1,0,0x000654E3,63,2,2,3,80,1,2,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; },{},{} +13411,BF_Sword2,Brave Gladiator Blade,5,20,,0,115,,1,0,0x000654E3,63,2,2,3,80,1,2,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus bMatkRate,10; bonus bUnbreakableWeapon,1; },{},{} 13412,Twin_Edge_B,Twin Edge of Naght Sieger,5,20,,1500,150,,1,3,0x000654E2,18,2,2,4,75,1,2,{ bonus bAtkEle,Ele_Water; skill "MG_FROSTDIVER",5; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; },{},{} 13413,Twin_Edge_R,Twin Edge of Naght Sieger,5,20,,1500,160,,1,3,0x000654E2,18,2,2,4,75,1,2,{ bonus bAtkEle,Ele_Fire; skill "WZ_METEOR",3; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; },{},{} 13414,Elemental_Sword,Elemental Sword,5,20,,1200,105:95,,1,3,0x000654E2,18,2,2,3,70,1,2,{ bonus bStr,2; bonus bInt,4; bonus bDex,1; bonus2 bAddEle,Ele_Neutral,10; bonus3 bAutoSpell,"MG_COLDBOLT",3,50; bonus4 bAutoSpellOnSkill,"MG_COLDBOLT","MG_FIREBOLT",3,1000; bonus4 bAutoSpellOnSkill,"MG_FIREBOLT","MG_LIGHTNINGBOLT",3,10000; bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",3,10000; },{},{} 13415,N_Falchion,Novice Falchion,5,0,,0,59,,1,3,0x000654E3,63,2,2,1,2,0,2,{},{},{} -13416,Krieger_Onehand_Sword1,Glorious Flamberge,5,20,,0,130,,1,0,0x000654E3,63,2,2,4,80,1,2,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,0; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>6) bonus bAspdRate,5; if(.@r>8) { bonus bAspdRate,5; bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200; } },{},{} -13417,Krieger_Onehand_Sword2,Glorious Rapier,5,20,,0,130:80,,1,0,0x000654E3,63,2,2,4,80,1,2,{ .@r = getrefine(); bonus bInt,.@r-5; bonus bUnbreakableWeapon,0; if(.@r>5) bonus bUseSPrate,-10; if(.@r>8) bonus bInt,5; },{},{} -13418,Krieger_Onehand_Sword3,Glorious Holy Avenger,5,20,,0,130:80,,1,0,0x000444A2,63,2,2,4,80,1,2,{ .@r = getrefine(); bonus bInt,.@r-5; bonus bUnbreakableWeapon,0; if(.@r>5) bonus bUseSPrate,-10; if(.@r>8) bonus4 bAutoSpellOnSkill,"PA_PRESSURE","PR_LEXAETERNA",1,1000; if(.@r>9) bonus bInt,5; },{},{} +13416,Krieger_Onehand_Sword1,Glorious Flamberge,5,20,,0,130,,1,0,0x000654E3,63,2,2,4,80,1,2,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player,20; bonus bUnbreakableWeapon,1; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(((.@r>14)?14:.@r)-4,2); bonus2 bAddRace,RC_Player,pow(((.@r>14)?14:.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player,5; } if(.@r>6) bonus bAspdRate,5; if(.@r>8) { bonus bAspdRate,5; bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200; } },{},{} +13417,Krieger_Onehand_Sword2,Glorious Rapier,5,20,,0,130:80,,1,0,0x000654E3,63,2,2,4,80,1,2,{ .@r = getrefine(); bonus bInt,.@r-5; bonus bUnbreakableWeapon,1; if(.@r>5) bonus bUseSPrate,-10; if(.@r>8) bonus bInt,5; },{},{} +13418,Krieger_Onehand_Sword3,Glorious Holy Avenger,5,20,,0,130:80,,1,0,0x000444A2,63,2,2,4,80,1,2,{ .@r = getrefine(); bonus bInt,.@r-5; bonus bUnbreakableWeapon,1; if(.@r>5) bonus bUseSPrate,-10; if(.@r>8) bonus4 bAutoSpellOnSkill,"PA_PRESSURE","PR_LEXAETERNA",1,1000; if(.@r>9) bonus bInt,5; },{},{} 13419,Holy_Saber,Holy saber,5,20,,0,160,,1,0,0x000654E2,63,2,2,3,0,0,2,{ bonus2 bAtkEle,Ele_Undead,40; bonus2 bMagicAddEle,Ele_Undead,40; },{},{} 13420,Honglyun's_Sword,Honglyun's Sword,5,20,,1200,160,,1,1,0x000654E2,63,2,2,4,70,1,2,{ bonus bAtkEle,Ele_Fire; bonus bStr,2; bonus bInt,2; bonus3 bAutoSpell,"WZ_METEOR",1,5; },{},{} 13421,Ruber,Ruber,5,20,,1500,170,,1,1,0x000444A2,18,2,2,3,50,1,2,{ autobonus "{ bonus2 bSkillAtk,\"KN_BOWLINGBASH\",20; bonus2 bSkillAtk,\"SM_BASH\",20; }",5,15000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; },{},{} -13422,Flamberge_C,Flamberge,5,0,,0,185,,1,0,0x00004080,63,2,2,3,1,0,2,{ bonus bUnbreakableWeapon,0; bonus2 bAddSize,Size_All,40; },{},{} +13422,Flamberge_C,Flamberge,5,0,,0,185,,1,0,0x00004080,63,2,2,3,1,0,2,{ bonus bUnbreakableWeapon,1; bonus2 bAddSize,Size_All,40; },{},{} 13423,P_Sabre1,Eden Sabre I,5,0,,0,147,,1,0,0x000654E2,63,2,2,2,26,0,2,{},{},{} 13424,P_Sabre2,Eden Sabre II,5,0,,0,170,,1,0,0x000654E2,63,2,2,2,40,0,2,{},{},{} 13425,Tourist_Sword,Tourist Sword,5,0,,500,61,,1,0,0x000654E3,63,2,2,1,1,0,2,{ bonus bStr,1; bonus bDex,1; },{},{} @@ -7096,15 +7307,20 @@ 13433,Academy_Sword,Academy Sword,5,0,,1200,120,,1,1,0x00004082,63,2,2,1,1,1,2,{},{},{} 13434,P_Saber3,Eden Saber III,5,0,,0,185,,1,0,0x000654E2,63,2,2,3,60,0,2,{},{},{} 13438,Magical_Blade,Magical Blade,5,60000,,2000,165:110,,1,2,0x000654E3,63,2,2,4,105,1,2,{},{},{} +13439,TE_Woe_Sword,TE Woe Sword,5,0,,0,120:100,,1,0,0x000654E3,63,2,2,3,40,1,2,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Poison,3000; },{},{} 13440,Ceremonial_Sword,Ceremonial Sword,5,20,,500,60,,1,0,0x00000063,5,2,2,1,1,1,2,{ bonus bAtkEle,Ele_Holy; },{},{} 13441,Tanos_Sword,Tanos Sword,5,10,,700,150:100,,,1,0x000654E3,63,2,4,120,,1,2,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bAtkRate,5; bonus2 bHPLossRate,100,10000; },{},{} 13442,Old_Yangsan,Old Yangsan,5,10,,500,120:80,,,3,0x62,63,2,2,3,80,1,2,{ bonus bMatk,getrefine(); skill "MG_SOULSTRIKE",10; },{},{} 13444,Pala,Pala,5,20,,700,190,,0,1,0x000654E2,63,2,2,3,0,1,2,{ bonus bAspdRate,8; },{},{} -13445,Half_BF_Sword1,Half BF Sword1,5,20,,0,115,,1,0,0x000654E3,63,2,2,3,80,1,2,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon,0; },{},{} +13445,Half_BF_Sword1,Half BF Sword1,5,20,,0,115,,1,0,0x000654E3,63,2,2,3,80,1,2,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon,1; },{},{} //13449,Gladius_Daemonicus,Gladius_Daemonicus,5 13450,Saber,Saber,5,10,,1000,115,,,2,0x000654E2,63,2,2,3,27,1,0,{},{},{} 13451,Blue_Sword,Blue Sword,5,10,,1200,190,,1,1,0x00000080,56,2,2,3,100,1,2,{ bonus bStr,5; bonus bAgi,5; },{},{} +13452,Ru_Gold_Sword,Ru Gold Sword,5,0,,1200,190,,1,2,0x00000080,56,2,2,3,120,1,2,{ bonus bStr,8; bonus bAgi,8; },{},{} +13454,Crimson_Saber,Crimson Saber,5,20,,850,85,,1,2,0x00000063,56,2,2,3,70,1,2,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{} +//=================================================================== // More Cash Shop Items +//=================================================================== 13500,Insurance60_Package,Life Insurrance Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14500,10; },{},{} 13501,Assorted_Scroll_Box,Experience Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 13502,Drooping_Kitty_Box,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5279,604800; },{},{} @@ -7337,8 +7553,6 @@ 13729,Gold_Key5_Box,Golden Key 5 Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7779,5; },{},{} 13730,Silver_Key1_Box,Silver Key 1 Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7780,1; },{},{} 13731,Silver_Key5_Box,Silver Key 5 Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7780,5; },{},{} -// -// 13734,Pecopeco_Hairband_Box1,Peco Peco Hairband Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5286,1; },{},{} 13735,Red_Glasses_Box1,Red Glasses Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5288,1; },{},{} 13736,Whisper_Mask_Box1,Whisper Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5294,1; },{},{} @@ -7914,18 +8128,16 @@ 14315,GhostringS_Box,Ghostring Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14598,10; },{},{} 14316,July7_Scroll,July7 Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_July7_Scroll); },{},{} 14317,Bacsojin_Scroll,Bacsojin Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Bacsojin_Scroll); },{},{} -// 14321,Holy_Sabre_Box,Holy Sabre Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13419,86400; },{},{} 14322,Book_Of_Prayer_Box,Book of Prayer Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1578,86400; },{},{} 14323,Phenomena_Whip_Box,Phenomena Whip Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1982,86400; },{},{} -14324,Staff_Of_Darkness_Box,Satff of Darkness Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1642,86400; },{},{} +14324,Staff_Of_Darkness_Box,Staff of Darkness Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1642,86400; },{},{} 14325,Monk_Knuckle_Box,Monk Knuckle Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1828,86400; },{},{} 14326,Mace_Of_Madness_Box,Mace of Madness Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1547,86400; },{},{} 14327,Spear_Of_Excellent_Box,Spear of Excellent Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1427,86400; },{},{} 14328,Bow_Of_Evil_Box,Bow of Evil Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1744,86400; },{},{} 14329,Katar_Of_Speed_Box,Katar of Speed Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1283,86400; },{},{} 14330,Sharpshooter_Revolver_Box,Sharpshooter Revolver Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13111,86400; },{},{} -// 14343,Spiked_Scarf_Box,Spiked Scarf Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5462,1; },{},{} 14344,Rainbow_Scarf_Box,Rainbow Scarf Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5463,1; },{},{} 14345,Animal_Scroll,Animal Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Animal_Scroll); },{},{} @@ -7936,7 +8148,6 @@ 14361,Orc_HeroS_Box,Orc HeroS Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14604,10; },{},{} 14362,Orc_LoadS_Box,Orc LoadS Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14605,10; },{},{} 14363,Heart_Scroll,Heart Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Heart_Scroll); },{},{} -// 14372,Powder_Snow_Box,Powder Snow Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12317,1; },{},{} 14375,Holy_Celestial_Axe_Box,Celestial Axe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1383,1; },{},{} 14376,Angeling_Pot_Box,Angeling Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12350,1; },{},{} @@ -7956,7 +8167,6 @@ 14391,Spiritual_Box_M,Spiritual Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2786,1; },{},{} 14392,Variant_Box_M,Variant Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2449,1; },{},{} 14393,Almighty_Charm_Box,Universal Amulet Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7945,1; },{},{} -// 14407,Xmas_Scroll,Xmas Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 14408,New_Year_Scroll,New Year Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_New_Year_Scroll); },{},{} // @@ -8001,7 +8211,6 @@ //14482,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} //14483,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} //14484,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -// 14485,Academy_Badge_Box,Academy Badge Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2751,1; },{},{} 14486,Academy_Fresh_Hat_Box,Academy Fresh Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5406,1; },{},{} 14487,Academy_Gradu_Cap_Box,Academy Gradu Cap Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5407,1; },{},{} @@ -8014,8 +8223,10 @@ 14497,Pisces_Diadem_Box,Pisces Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5514,1; },{},{} 14498,Pisces_Crown_Box,Pisces Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5515,1; },{},{} 14499,Peacock_Feather_Box,Peacock Feather Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5519,1; },{},{} -14500,Insurance60,Life Insurrance Certificate,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LIFEINSURANCE,3600000,0; },{},{} -14508,Zeny_Scroll,Zeny Pet Egg Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ set Zeny,Zeny+rand(1000,77777);},{},{} +14500,Insurance60,Life Insurrance Certificate,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LIFEINSURANCE,3600000,0; },{},{} +14505,Dungeon_1_hour_Ticket,Dungeon 1 Hour Ticket,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "1@sthb",0,0; /*No map+coord info*/ },{},{} +14506,Dungeon_Ticket,Dungeon Ticket,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,145,,{ warp "1@sthc",0,0; /*No map+coord info*/ },{},{} +14508,Zeny_Scroll,Zeny Pet Egg Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ Zeny += rand(1000,77777);},{},{} 14509,Light_Center_Pot,Light Concentration Potion,2,800,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION0,1800000,0; },{},{} 14510,Light_Awakening_Pot,Light Awakening Potion,2,1500,,20,,,,,0xFFF7FEEF,63,2,,,40,,,{ sc_start SC_ASPDPOTION1,1800000,0; },{},{} 14511,Light_Berserk_Pot,Light Berserk Potion,2,3000,,20,,,,,0x01E646A6,63,2,,,85,,,{ sc_start SC_ASPDPOTION2,1800000,0; },{},{} @@ -8098,7 +8309,7 @@ 14588,Pty_Blessing_Scroll,Party Blessing 10 Scroll,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "CASH_BLESSING",10; },{},{} 14589,Pty_Inc_Agi_Scroll,Party Increase Agi 10 Scroll,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "CASH_INCAGI",10; },{},{} 14590,Pty_Assumptio_Scroll,Party Assumptio 5 Scroll,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "CASH_ASSUMPTIO",5; },{},{} -14591,Siege_Teleport_Scroll,WoE Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashSeigeTele"; },{},{} +14591,Siege_Teleport_Scroll,WoE Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashSiegeTele"; },{},{} 14592,Job_Manual50,JOB Battle Manual,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_JEXPBOOST,1800000,50; },{},{} 14593,Magic_Power_Scroll,Mystical Amplification Scroll,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "HW_MAGICPOWER",10; },{},{} 14594,Quagmire_Scroll,Quagmire Scroll,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WZ_QUAGMIRE",5; },{},{} @@ -8126,8 +8337,8 @@ 14618,AGI_Biscuit_Stick,Bar Cookie Of Agility,18,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1800000,15; sc_start SC_FLEEFOOD,600000,rand(11,33); },{},{} 14619,INT_Biscuit_Stick,Bar Cookie Of Intelligence,18,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1800000,15; sc_start SC_INCMATKRATE,600000,rand(11,111); },{},{} 14620,DEX_Biscuit_Stick,Bar Cookie Of Dexterity,18,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1800000,15; sc_start SC_HITFOOD,600000,rand(11,33); },{},{} -14621,LUK_Biscuit_Stick,Bar Cookie Of Lucky,18,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1800000,15; sc_start SC_INCCRI,600000,rand(11,33); },{},{} -14623,Golden_Treasure_Box,Golden Treasure Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*Items*/ },{},{} +14621,LUK_Biscuit_Stick,Bar Cookie Of Lucky,18,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1800000,15; sc_start SC_CRIFOOD,600000,rand(11,33); },{},{} +14623,Golden_Treasure_Box,Golden Treasure Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*getitem callfunc("F_Rand",Devilring card, Angeling card, 11 weapons smelting ticket, armor smelting 11 ticket , horns of the buffalo, ring of recovery, pink bunny costume hair band)*/ },{},{} 14624,Blue_Scroll,Blue Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Blue_Scroll); },{},{} 14626,Indigo_Scroll,Indigo Scroll,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Indigo_Scroll); },{},{} 14627,Christmas_Scroll,Christmas Scroll,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} @@ -8142,18 +8353,19 @@ 14667,Yong_Kwang_Scroll,Yong Kwang Scroll,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Yong_Kwang_Scroll); },{},{} 14672,Steel_Fighter_Scroll_Lv20,Steel Fighter Scroll (Lv20),0,20,,10,,,,,0xFFFFFFFF,,,,,,,,{},{},{} 14673,Steel_Fighter_Scroll_Lv25,Steel Fighter Scroll (Lv25),0,20,,10,,,,,0xFFFFFFFF,,,,,,,,{},{},{} -14674,Cup_Of_Boza,Cup Of Boza,2,20,,10,,,,,,,,,,,,,{ /*EFST_CUP_OF_BOZA 120000*/ },{},{} +14674,Cup_Of_Boza,Cup Of Boza,2,20,,10,,,,,,,,,,,,,{ bonus_script "{ bonus bVit,10; bonus2 bSubEle,Ele_Fire,5; }",120; /*EFST_CUP_OF_BOZA 120000*/ },{},{} 14675,Shadow_Box_II,Shadow Box II,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} 14679,Article_Sealed_Storm_Scroll,Article Sealed Storm Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} 14681,Costume_Enchantment_Stone_Box_II,Costume Enchantment Stone Box II,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} 14682,Sealed_Beelzebub_Scroll,Sealed Beelzebub Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} 14689,Sealed_Kiel-D-01_Scroll,Sealed Kiel-D-01 Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} 14695,Costume_Enchant_Stone_Box_3,Costume Enchant Stone Box III,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem rand(6790,6792),1; getitem 4936,1; getitem 4937,1; getitem 4938,1; },{},{} -14696,Sealed_Gloom_Under_Night_Gachapon,Sealed Gloom Under Night Gachapon,18,0,,10,,,,,,,,,,,,,{ /*TODO*/ },{},{} -14699,Memorial_Garuda_Lucky_Egg,Memorial Garuda Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ /*TODO: Many items. xD*/ },{},{} +14696,Sealed_Gloom_Under_Night_Gachapon,Sealed Gloom Under Night Gachapon,18,0,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /* getitem callfunc("F_Rand",Sealed Cards Gloom Under Night, 9 weapons smelting ticket, Armor 9 smelting ticket, medium armor Shadow, Shadow Weapon Medium, costume Wings of the Kirin, costume enchant stone box); */ },{},{} +14699,Memorial_Garuda_Lucky_Egg,Memorial Garuda Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Memorial_Garuda_Lucky_Egg); },{},{} +14701,Rune_Midgard_Imortal_Lucky_Egg,Rune Midgard Imortal Lucky Egg,18,0,,0,,,,0,,,,,,,,,{ getgroupitem(IG_Rune_Midgard_Imortal_Lucky_Egg); },{},{} 14704,Gemstone_Shadow_Box,Gemstone Shadow Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 24084,1; getitem 24085,1; getitem 24086,1; getitem 24087,1; getitem 24088,1; getitem 24089,1; },{},{} 14705,Sealed_Fallen_Bishop_Hibram_Scroll,Sealed Fallen Bishop Hibram Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: COnfirm the rates*/ getitem callfunc("F_Rand",6228,6232,14704,19884,14695,6697),1; },{},{} -14713,Sealed_Ifrit_Scroll,Sealed Ifrit Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{} +14713,Sealed_Ifrit_Scroll,Sealed Ifrit Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* getitem callfunc("F_Rand",Sealed ifrit card, 9 weapons smelting ticket, Armor 9 smelting ticket, costume Noah's hats, costumes Enchantment Stone Box); */ },{},{} 14717,2013_RWC_Scroll,2013 RWC Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_2013_RWC_Scroll); },{},{} 14718,Scroll_Turtle_General_Sealed,Scroll Turtle General Sealed,3,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,19751,14695),1; },{},{} 14723,(Limited)Neuralizer_I,(Limited)Neuralizer I,11,2,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReset"; },{},{} @@ -8167,18 +8379,23 @@ 14731,Teleport_Shadow_Box,Teleport Shadow Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 24138,1; getitem 24139,1; getitem 24140,1; getitem 24141,1; getitem 24142,1; getitem 24143,1; },{},{} 14732,Steal_Shadow_Box,Steal Shadow Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 24144,1; getitem 24145,1; getitem 24146,1; getitem 24147,1; getitem 24148,1; getitem 24149,1; },{},{} 14733,Sealed_Pharaoh_Scroll,Sealed Pharaoh Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,14726,20034,17474),1; },{},{} -14739,Sealed_General_Egnigem_Cenia_Scroll,Sealed General Egnigem Cenia Scroll,18,10,,10,,,,,,,,,,,,,{ /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",4482,6228,6232,24156,19935),1; },{},{} -14740,Sealed_Vesper_Scroll,Sealed Vesper Scroll,18,10,,10,,,,,,,,,,,,,{},{},{} -14758,Safe_To_Smelting_Scroll,Safe To Smelting Scroll,18,10,,10,,,,,,,,,,,,,{ getitem callfunc("F_Rand",6238,6239,6228,6232,24216,17474,969),1; },{},{} -14765,Limited_Edition_JOB_Battle_Manual,Limited Edition JOB Battle Manual,18,10,,10,,,,,,,,,,,,,{ sc_start SC_JEXPBOOST,3600000,35; },{},{} +14739,Sealed_General_Egnigem_Cenia_Scroll,Sealed General Egnigem Cenia Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",4482,6228,6232,24156,19935),1; },{},{} +14740,Sealed_Vesper_Scroll,Sealed Vesper Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} +14741,Midgard_Celebration_Lucky_Egg,Midgard Celebration Lucky Egg,18,0,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Midgard_Celebration_Lucky_Egg); },{},{} +14753,Hero_Midgard_Egg,Hero Midgard Egg,18,0,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Hero_Midgard_Egg); },{},{} +14758,Safe_To_Smelting_Scroll,Safe To Smelting Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",6238,6239,6228,6232,24216,17474,969),1; },{},{} +14765,Limited_Edition_JOB_Battle_Manual,Limited Edition JOB Battle Manual,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_JEXPBOOST,3600000,35; },{},{} +14766,Limited_Power_Booster,Limited Power Booster,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bBaseAtk,30; bonus bMatk,30; bonus bAtkRate,1; bonus bMatkRate,1; bonus bHit,30; bonus bFlee,30; bonus bAspd,1; bonus bUseSPrate,-5; bonus bFixedCastrate,-30; }",1800,1,1; },{},{} +//=================================================================== // More Armors +//=================================================================== 15000,Bone_Plate,Bone Plate,4,20,,1000,,60,,1,0x000654E2,18,2,16,,85,1,0,{ bonus bStr,1; bonus bMdef,3; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10; },{},{} 15001,Odin's_Blessing_I,Odin's Blessing,4,0,,0,,10,,0,0xFFFFFFFE,63,2,16,,0,0,0,{},{},{} 15002,Rune_Plate,Rune Plate,4,0,,0,,95,,1,0x00000080,63,2,16,,99,1,0,{},{},{} -15003,Freyja_SRobe7,Freyja SRobe7,4,0,,300,,7,,0,0xFFFFFFFF,63,2,16,,20,0,0,{ bonus bMaxHP,700; },{},{} -15004,Freyja_SRobe30,Freyja SRobe30,4,0,,300,,7,,0,0xFFFFFFFF,63,2,16,,20,0,0,{ bonus bMaxHP,700; },{},{} -15005,Freyja_SRobe60,Freyja SRobe60,4,0,,300,,7,,0,0xFFFFFFFF,63,2,16,,20,0,0,{ bonus bMaxHP,700; },{},{} -15006,Freyja_SRobe90,Freyja SRobe90,4,0,,300,,7,,0,0xFFFFFFFF,63,2,16,,20,0,0,{ bonus bMaxHP,700; },{},{} +15003,Freyja_SRobe7,Freyja Soul Robe7,4,0,,300,,7,,0,0xFFFFFFFF,63,2,16,,20,0,0,{ bonus bMaxHP,700; },{},{} +15004,Freyja_SRobe30,Freyja Soul Robe30,4,0,,300,,7,,0,0xFFFFFFFF,63,2,16,,20,0,0,{ bonus bMaxHP,700; },{},{} +15005,Freyja_SRobe60,Freyja Soul Robe60,4,0,,300,,7,,0,0xFFFFFFFF,63,2,16,,20,0,0,{ bonus bMaxHP,700; },{},{} +15006,Freyja_SRobe90,Freyja Soul Robe90,4,0,,300,,7,,0,0xFFFFFFFF,63,2,16,,20,0,0,{ bonus bMaxHP,700; },{},{} 15007,Time_Keepr_Robe,Time Keeper Robe,4,30000,,0,,62,,0,0xFFFFFFFF,63,2,16,,1,1,0,{ bonus bMdef,1; bonus bStr,2; bonus bMaxHP,200; },{},{} 15008,Flame_Sprits_Armor__,Flame Sprits Armor,4,20,,1000,,25,,0,0xFFFFFFFF,63,2,16,,1,1,0,{ bonus bMdef,1; bonus2 bSubEle,Ele_Fire,5; },{},{} 15009,Para_Team_Uniform1,Eden Team Uniform I,4,0,,0,,35,,0,0xFFFFFFFF,63,2,16,,12,0,0,{ bonus bMaxHP,100; bonus bMaxSP,10; },{},{} @@ -8195,7 +8412,7 @@ 15020,Upg_Mail,Upg Mail,4,20,,1650,,60,,1,0x000654E2,63,2,16,,1,1,0,{ bonus bMaxHPrate,3; },{},{} 15021,Upg_Formal_Dress,Upg Formal Dress,4,20,,150,,45,,1,0xFFFFFFFE,63,2,16,,1,1,0,{ bonus bMaxHPrate,3; },{},{} 15022,Brazil_Swimsuit,Brazil Swimsuit,4,20,,100,,1,,0,0xFFFFFFFF,63,2,16,,1,1,0,{ bonus bStr,4; bonus bInt,4; bonus bMdef,3; bonus2 bSubEle,Ele_Water,20; },{},{} -15023,Half_Brynhild,Half Brynhild,4,20,,0,,60,,0,0xFFFFFFFF,63,2,16,,47,0,0,{ bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bUnbreakableArmor,0; bonus bNoKnockback,0; },{},{} +15023,Half_Brynhild,Half Brynhild,4,20,,0,,60,,0,0xFFFFFFFF,63,2,16,,47,0,0,{ bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bUnbreakableArmor,1; bonus bNoKnockback,0; },{},{} 15024,Army_Padding,Army Padding,4,0,,10,,10,,0,0xFFFFFFFF,63,2,16,,1,1,0,{},{},{} 15025,Golden_Rod_Robe,Golden Rod Robe,4,20,,500,,40,,0,0x00000200,63,2,16,,100,1,0,{ bonus bDefEle,Ele_Wind; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_VERMILION",-3000; if(readparam(bInt)>=120){ bonus bInt,1; } },{},{} 15026,Aqua_Robe,Aqua Robe,4,20,,500,,40,,0,0x00000200,63,2,16,,100,1,0,{ bonus bDefEle,Ele_Water; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_STORMGUST",-3000; if(readparam(bInt)>=120){ bonus bInt,1; } },{},{} @@ -8212,7 +8429,7 @@ 15037,Peuz_Plate,Peuz's Plate,4,20,,3000,,110,,0,0x00000080,56,2,16,,100,1,0,{ bonus bMdef,10; bonus bBaseAtk,20; bonus bFlee,17; },{},{} 15038,Sabah_Cloth,Sapha's Cloth,4,20,,100,,45,,1,0x00001000,63,2,16,,100,1,0,{ bonus bLuk,3; bonus3 bAutoSpell,"ASC_METEORASSAULT",(getskilllv("ASC_METEORASSAULT")?getskilllv("ASC_METEORASSAULT"):1),20; },{},{} 15039,Nab_Cloth,Nab's Cloth,4,20,,100,,45,,1,0x00001000,63,2,16,,100,1,0,{ bonus bStr,2; bonus bInt,2; },{},{} -15040,Prison_Uniform,Prison Uniform,4,10,,1500,,5,,0,0xFFFFFFFF,63,2,16,,50,1,0,{ .@r = getrefine(); set .@rate,(.@r>10?10:.@r); bonus bHit,.@rate; bonus bFlee,.@rate; },{},{} +15040,Prison_Uniform,Prison Uniform,4,10,,1500,,5,,0,0xFFFFFFFF,63,2,16,,50,1,0,{ .@r = getrefine(); .@rate = (.@r>10?10:.@r); bonus bHit,.@rate; bonus bFlee,.@rate; },{},{} 15041,Boitata_Armor,Boitata Armor,4,20,,600,,45,,1,0xFFFFFFFF,63,2,16,,60,1,0,{ bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,7; bonus bMaxHPrate,5; bonus bFlee,5; },{},{} 15042,White_Wing_Suits,White Wing Suits,4,20,,100,,45,,1,0x00000800,63,2,16,,100,1,0,{ .@r = getrefine(); bonus bLongAtkRate,.@r*2; bonus bFlee,.@r; },{},{} 15043,Black_Wing_Suits,Black Wing Suits,4,20,,100,,45,,1,0x00000800,56,2,16,,100,1,0,{ bonus bInt,2; bonus bBaseAtk,getrefine()*3; },{},{} @@ -8234,6 +8451,10 @@ 15059,2011Love_Daddy,2011Love Daddy,4,20,,100,0,80,0,1,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{} 15060,Sky_Blue_Smock,Sky Blue Smock,4,20,,300,0,1,0,1,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{} 15061,Egir_Armor,Egir Armor,4,200000,,2600,,55,,1,0xFFFFFFFF,63,2,16,,110,1,0,{ bonus bAllStats,1; if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) bonus2 bResEff,Eff_Silence,5000; else if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) bonus2 bResEff,Eff_Stun,5000; },{},{} +15062,TE_Woe_Coat,TE Woe Coat,4,0,,0,,15,,0,0xFFFFFFFF,63,2,16,1,40,1,,{ bonus bMdef,15; bonus bMaxHP,250; bonus bMaxSP,250; bonus2 bSubRace,RC_Player,10; bonus2 bResEff,Eff_Freeze,25; },{},{} +15063,TE_Woe_Chain_Mail,TE Woe Chain Mail,4,0,,0,,25,,0,0x000444A2,63,2,16,1,40,1,,{ bonus bMdef,5; bonus bMaxHP,450; bonus bMaxSP,50; bonus2 bSubRace,RC_Player,15; bonus2 bResEff,Eff_Freeze,25; },{},{} +15064,TE_Woe_Mage_Coat,TE Woe Mage Coat,4,0,,0,,5,,0,0x00818315,63,2,16,1,40,1,,{ bonus bMdef,25; bonus bMaxHP,200; bonus bMaxSP,200; bonus2 bSubRace,RC_Player,5; bonus2 bResEff,Eff_Freeze,25; },{},{} +15067,Rune_Suit,Rune Suit,4,0,,0,,,,0,0xFFFFFFFF,63,2,16,1,1,1,,{ bonus2 bExpAddRace,RC_All,10; },{},{} 15068,Im_Angel's_Protection,Advanced Angelic Protection,4,10000,,600,,40,,1,0x00000001,63,2,16,,99,1,0,{ bonus bMdef,30; },{},{} 15069,Suit_Of_Sid,Suit Of Sid,4,20,,1000,,30,,0,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{} 15070,Clothes_of_Happiness,Clothes of Happiness,4,10,,1000,,5,,1,0xFFFFFFFF,63,2,16,,1,1,,{ bonus bMdef,5; bonus bLuk,getrefine(); },{},{} @@ -8251,17 +8472,23 @@ 15098,Heroic_Target_Suit,Heroic Target Suit,4,10,,200,,60,,1,0x00080808,56,2,16,,160,1,,{ bonus bMaxHPrate,5; bonus bMaxSPrate,5; .@r = getrefine(); bonus bAllStats,1; bonus5 bAutoSpell,"AC_CONCENTRATION",10,(5+.@r)*5,BG_WEAPON,0; bonus5 bAutoSpell,"AC_DOUBLE",10,(5+.@r)*5,BG_WEAPON,1; bonus5 bAutoSpell,"AC_CHARGEARROW",10,(5+.@r)*5,BG_WEAPON,0; },{},{} 15100,Frozen_Breastplate,Frozen Breastplate,4,20,,1500,,20,,1,0xFFFFFFFF,63,2,16,,130,1,0,{ bonus bDefEle,Ele_Water; },{},{} 15101,Hardened_Breastplate,Hardened Breastplate,4,20,,1500,,20,,1,0xFFFFFFFF,63,2,16,,130,1,0,{},{},{} -15103,Kirin_Armor,Kirin Armor,4,10,,500,,55,,0,0xFFFFFFFF,63,2,16,,70,,,{ bonus bDefEle,Ele_Holy; },{},{} -15104,FishingMan_Mail,FishingMan Mail,4,10,,500,,30,,0,0xFFFFFFFF,63,2,16,,50,,,{ bonus2 bAddRace,RC_Fish,10; bonus2 bMagicAddRace,RC_Fish,10; .@r = getrefine(); if(.@r>5){ bonus2 bAddRace,RC_All,.@r; bonus2 bMagicAddRace,RC_All,.@r; } },{},{} +15103,Kirin_Armor,Kirin Armor,4,10,,500,,55,,1,0xFFFFFFFF,63,2,16,,70,,,{ bonus bDefEle,Ele_Holy; },{},{} +15104,FishingMan_Mail,FishingMan Mail,4,10,,500,,30,,1,0xFFFFFFFF,63,2,16,,50,,,{ bonus2 bAddRace,RC_Fish,10; bonus2 bMagicAddRace,RC_Fish,10; .@r = getrefine(); if(.@r>5){ bonus2 bAddRace,RC_All,.@r; bonus2 bMagicAddRace,RC_All,.@r; } },{},{} 15105,Kaftan,Kaftan,4,20,,400,,13,,1,0xFFFFFFFF,63,2,16,,0,1,0,{ bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; },{},{} 15110,Strength_Supplement_Equipment,Strength Supplement Equipment,4,10,,2000,,80,,,0x00000400,56,2,16,,100,1,,{ bonus bAtkRate,5+(getrefine()/4); },{},{} 15111,Reinforced_Parts_Gloves,Reinforced Parts - Gloves,4,10,,3000,,110,,,0x00000400,56,2,16,,100,1,,{ bonus bUnbreakableArmor,1; bonus2 bSubSize,0,10; bonus2 bSubSize,1,10; .@r = getrefine(); if(.@r>=7){ bonus2 bSubSize,2,10; }; if(.@r>=9){ bonus2 bSubSize,0,5; bonus2 bSubSize,1,5; } },{},{} 15116,Armor_Of_Airship,Armor Of Airship,4,10,,700,,100,,0,0xFFFFFFFF,63,2,16,,125,1,,{ bonus bMaxHP,1000; bonus bMaxSP,100; bonus bMdef,10; bonus bAllStats,1; },{},{} 15117,Tarlock's_Armor,Tarlock's Armor,4,10,,750,,70,,0,0xFFFFFFFF,63,2,16,,125,1,,{ bonus bMaxHP,500; bonus bMaxSP,50; bonus bMdef,10; bonus bAllStats,1; .@r = getrefine(); if(.@r>=7) { bonus bMaxHP,500; bonus bMaxSP,50; } if(.@r>=9) { bonus bMaxHP,200; bonus bMaxSP,20; } if(.@r>=12) { bonus bMaxHP,300; bonus bMaxSP,30; } },{},{} 15121,Sarah_Combat_Robe,Sarah Combat Robe,4,10,,800,,35,,1,0xFFFFFFFF,63,2,16,,145,1,,{ /*TODO: Confirm the real rate and additional MAtk*/ .@r = getrefine(); autobonus "{ bonus bMatk,20; }",100,(10+((.@r) ? .@r*8 : 0))*1000,BF_MAGIC;},{},{} -15138,Aegir_Armor,Aegir Armor,4,10,,1600,,25,,0,0xFFFFFFFF,63,2,16,,40,1,,{ bonus bMaxHP,500; bonus bMaxSP,50; },{},{} -15141,Ancient_Armor_Of_The_Goddess,Ancient Armor Of The Goddess,4,10,,2000,,55,,0,0xFFFFFFFF,63,2,16,,100,1,,{},{},{} +15123,Whikebain_Suit,Whikebain Suit,4,0,,900,,56,,1,0x00001000,56,2,16,,105,1,,{ .@r = getrefine(); bonus bCritAtkRate,(.@r>=7)?(6):((.@r>=5)?(4):(0)); bonus3 bAutoSpell,"DC_WINKCHARM",1,10; /* Confirm: Success rate */ },{},{} +15138,Aegir_Armor,Aegir Armor,4,10,,1600,,25,,1,0xFFFFFFFF,63,2,16,,40,1,,{ bonus bMaxHP,500; bonus bMaxSP,50; },{},{} +15141,Ancient_Armor_Of_The_Goddess,Ancient Armor Of The Goddess,4,10,,2000,,55,,1,0xFFFFFFFF,63,2,16,,100,1,,{},{},{} +15145,Evil_Dragon_Armor,Evil Dragon Armor,4,0,,4000,,60,,1,0xFFFFFFFF,63,2,16,,,1,,{ .@r = getrefine(); bonus2 bHPDrainRate,100,(.@r>=10)?(3):((.@r>=9)?(4):((.@r>=8)?(6):(0))); bonus2 bSPDrainRate,100,(.@r>=10)?(5):((.@r>=9)?(3):((.@r>=8)?(2):(0))); /* Confirm: Success rate and it says no effect if with Rideword, Vanargandr Helm, or Piece Of Angent Skin */ },{},{} +15146,Flattery_Robe,Flattery Robe,4,20,,100,,0,,1,0xFFFFFFFF,63,2,16,,100,1,,{ skill "SM_ENDURE",1,1; .@i = BaseLevel; bonus bMatk,(.@i>=140)?(150):((.@i>=120)?(100):(50)); },{},{} +15147,Invective_Robe,Invective Robe,4,20,,100,,0,,1,0xFFFFFFFF,63,2,16,,100,1,,{ skill "AC_CONCENTRATION",1,1; .@i = getrefine()*4; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@i; bonus2 bIgnoreDefRaceRate,RC_Demon,.@i; bonus2 bIgnoreDefRaceRate,RC_Undead,.@i; },{},{} +//=================================================================== // More Maces +//=================================================================== 16000,Erde,Erde,5,20,,500,130,,1,2,0x0004C5B2,18,2,2,3,50,1,8,{ bonus2 bSkillAtk,"AM_ACIDTERROR",20; bonus2 bSkillAtk,"AM_DEMONSTRATION",20; bonus bMaxSP,50; bonus bHealPower,10; },{},{} 16001,Red_Square_Bag,Red Square Bag,5,20,,500,130,,1,2,0x0004C5B2,18,2,2,3,50,1,8,{ bonus bMaxHP,200; bonus2 bSkillAtk,"AM_ACIDTERROR",20; bonus2 bSkillAtk,"AM_DEMONSTRATION",20; bonus2 bAddMonsterDropItem,501,50; bonus2 bAddMonsterDropItem,502,20; bonus2 bAddMonsterDropItem,503,20; bonus2 bAddMonsterDropItem,504,20; bonus2 bAddMonsterDropItem,505,10; if(readparam(bStr)>=95) bonus2 bAddEff,Eff_Stun,500; },{},{} 16002,Stunner_C,Stunner,5,0,,0,175,,1,0,0x00008110,63,2,2,3,1,0,8,{ bonus2 bAddEff,Eff_Stun,1000; bonus2 bAddSize,Size_All,40; },{},{} @@ -8278,17 +8505,18 @@ 16013,Mace_Of_Judgement,Mace Of Judgement,5,20,,1200,140:180,,1,2,0x00000100,56,2,2,3,100,1,8,{ bonus bStr,1; bonus bInt,1; autobonus "{ bonus2 bMagicAddRace,RC_Demon,20; }",30,7000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; autobonus "{ bonus2 bAddRace,RC_Demon,20; }",5,7000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; },{},{} 16014,P_Mace3,Eden Mace III,5,0,,0,172,,1,0,0x0004C5B3,63,2,2,3,60,0,8,{},{},{} 16015,Cat_Club,Cat Club,5,20,,700,88,,1,3,0x0004C5B3,63,2,2,1,1,1,8,{ bonus2 bAddRace,RC_Brute,15; },{},{} -16016,Tuna,Tuna,5,0,,0,180,,1,0,0x0004C5B3,63,2,2,1,50,0,8,{ bonus bUnbreakableWeapon,0; bonus2 bAddEff,Eff_Stun,150; bonus3 bAutoSpell,"SM_BASH",5,20; if(BaseLevel>99) bonus bBaseAtk,20; },{},{} +16016,Tuna,Tuna,5,0,,0,180,,1,0,0x0004C5B3,63,2,2,1,50,0,8,{ bonus bUnbreakableWeapon,1; bonus2 bAddEff,Eff_Stun,150; bonus3 bAutoSpell,"SM_BASH",5,20; if(BaseLevel>99) bonus bBaseAtk,20; },{},{} 16017,Bloody_Cross,Bloody Cross,5,20,,1500,170,,1,0,0x00008110,63,2,2,4,100,1,8,{ bonus bAtkEle,Ele_Dark; .@r = getrefine(); bonus3 bAutoSpell,"WL_HELLINFERNO",1,(.@r?.@r*20:20); },{},{} 16018,Mace_Of_Judgement2,Empowered Mace Of Judgement,5,20,,1200,170:180,,1,1,0x00000100,56,2,2,3,130,1,8,{ bonus bStr,2; bonus bInt,2; autobonus "{ bonus2 bMagicAddRace,RC_Demon,40; }",60,7000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; autobonus "{ bonus2 bAddRace,RC_Demon,40; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; },{},{} 16019,Upg_Mace,Upg Mace,5,20,,800,80,,1,1,0x0004C5B3,63,2,2,3,1,1,8,{ .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bHealPower,.@r; if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); },{},{} -16020,Velum_Stunner,Vellum Stunner,5,20,,1500,170,,1,0,0x0004C5B3,63,2,2,4,95,1,8,{ bonus bUnbreakableWeapon,0; .@r = getrefine(); bonus2 bAddEff,Eff_Stun,1000+.@r; bonus4 bSetDefRace,RC_Player,10000,5000,1; bonus4 bSetMDefRace,RC_Player,10000,5000,1; bonus bAspdRate,.@r; },{},{} -16021,Velum_Flail,Vellum Flail,5,20,,1500,170,,1,0,0x0004C5B3,63,2,2,4,95,1,8,{ bonus bUnbreakableWeapon,0; bonus5 bAutoSpell,"NPC_CRITICALWOUND",5,10,BF_WEAPON,1; .@r = getrefine(); bonus bHit,.@r; bonus bCritical,.@r; },{},{} -16022,Nemesis_,Nemesis ,5,20,,900,120,,1,2,0x00008110,63,2,2,4,60,1,8,{ bonus bUnbreakableWeapon,0; bonus bAtkEle,Ele_Holy; },{},{} -16023,Metal_Mace,Metal Mace,5,20,,0,80,,1,1,0x0004C5B3,63,2,2,3,1,1,8,{ bonus bUnbreakableWeapon,0; bonus bBaseAtk,(getrefine()*5); set .@i,((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} +16020,Velum_Stunner,Vellum Stunner,5,20,,1500,170,,1,0,0x0004C5B3,63,2,2,4,95,1,8,{ bonus bUnbreakableWeapon,1; .@r = getrefine(); bonus2 bAddEff,Eff_Stun,1000+.@r; bonus4 bSetDefRace,RC_Player,10000,5000,1; bonus4 bSetMDefRace,RC_Player,10000,5000,1; bonus bAspdRate,.@r; },{},{} +16021,Velum_Flail,Vellum Flail,5,20,,1500,170,,1,0,0x0004C5B3,63,2,2,4,95,1,8,{ bonus bUnbreakableWeapon,1; bonus5 bAutoSpell,"NPC_CRITICALWOUND",5,10,BF_WEAPON,1; .@r = getrefine(); bonus bHit,.@r; bonus bCritical,.@r; },{},{} +16022,Nemesis_,Nemesis ,5,20,,900,120,,1,2,0x00008110,63,2,2,4,60,1,8,{ bonus bUnbreakableWeapon,1; bonus bAtkEle,Ele_Holy; },{},{} +16023,Metal_Mace,Metal Mace,5,20,,0,80,,1,1,0x0004C5B3,63,2,2,3,1,1,8,{ bonus bUnbreakableWeapon,1; bonus bBaseAtk,(getrefine()*5); .@i = ((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} 16024,Quadrille,Quadrille,5,10,,900,165,,,2,0x10,63,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; bonus2 bAddEle,Ele_Earth,10; },{},{} -16026,RWC_Memory_Mace,RWC Memory Mace,5,20,,800,100,,1,1,0x0004C5B2,63,2,2,3,1,1,8,{ bonus bUnbreakableWeapon,0; .@r = getrefine(); bonus bBaseAtk,(.@r/30)*30; if(.@r>=9){ set .@i,1; bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",1,10; } if(.@r>=6){ set .@rate,5*(.@i+1); bonus2 bAddClass,Class_All,5; } },{},{} -16027,Hammer_Of_Evil_Slayer,Hammer Of Evil Slayer,5,10,,1350,,125,,1,0x228F6EEF,63,2,2,3,100,1,8,{ bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9){ bonus bAtkRate,5; } else if(.@r>=12){ bonus bAtkRate,7; } },{},{} +16025,TE_Woe_Mace,TE Woe Mace,5,0,,0,120,,1,0,0x0004C5B3,63,2,2,3,40,1,8,{ bonus bUnbreakableWeapon,1; bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Freeze,3000; bonus bHPRecovRate,5; bonus bSPRecovRate,5; },{},{} +16026,RWC_Memory_Mace,RWC Memory Mace,5,20,,800,100,,1,1,0x0004C5B2,63,2,2,3,1,1,8,{ bonus bUnbreakableWeapon,1; .@r = getrefine(); bonus bBaseAtk,(.@r/30)*30; if(.@r>=9){ .@i = 1; bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",1,10; } if(.@r>=6){ .@rate = 5*(.@i+1); bonus2 bAddClass,Class_All,5; } },{},{} +16027,Hammer_Of_Evil_Slayer,Hammer Of Evil Slayer,5,10,,1350,,125,,1,0x228F6EEF,63,2,2,3,100,1,8,{ bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus bAtkRate,(.@r>=9)?(5):((.@r>=12)?(7):(0)); },{},{} 16028,Tanos_Axe,Tanos Axe,5,10,,3000,180:120,,,1,0x000654E3,63,2,2,4,120,1,6,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bAtkRate,5; bonus2 bHPLossRate,100,10000; },{},{} 16029,Noble_Cross,Noble Cross,5,10,,1500,195:150,,,1,0x10,63,2,2,4,40,1,8,{ bonus3 bAutoSpell,"PR_TURNUNDEAD",6,50; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,12; },{},{} 16030,Pile_Bunker_S,Pile Bunker S,5,20,,3000,400,,1,1,0x00000400,56,2,2,4,130,1,8,{ bonus bAspdRate,getrefine()/2; },{},{} @@ -8296,10 +8524,16 @@ 16032,Pile_Bunker_T,Pile Bunker T,5,20,,3500,400,,1,1,0x00000400,56,2,2,4,130,1,8,{ bonus bUseSPrate,getrefine()*-1; },{},{} 16033,Robots_Mechanical_Arm,Robot's Mechanical Arm,5,20,,3000,195,,1,2,0x00000400,56,2,2,4,130,1,8,{ bonus bUnbreakableWeapon,1; bonus bCritical,20; },{},{} 16034,Half_Mjolnir,Half Mjolnir,5,20,,6000,350,,1,0,0x000444A2,63,2,2,4,95,0,8,{ bonus bAtkEle,Ele_Wind; bonus bDex,50; bonus bStr,20; bonus bAspdRate,10; bonus3 bAutoSpell,"MG_THUNDERSTORM",10,100; autobonus "{ bonus bSplashRange,1; }",50,10000; },{},{} -16035,Half_BF_Morning_Star1,Half BF Morning Star1,5,20,,0,105,,1,0,0x0004C5B3,63,2,2,3,80,1,8,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon,0; },{},{} +16035,Half_BF_Morning_Star1,Half BF Morning Star1,5,20,,0,105,,1,0,0x0004C5B3,63,2,2,3,80,1,8,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon,1; },{},{} 16036,Blue_Mace,Blue Mace,5,10,,1500,170,,1,1,0x00008000,56,2,2,3,100,1,8,{ bonus bVit,5; bonus bInt,5; },{},{} -16038,Infinity_Mace,Infinity Mace,5,10,,500,155,,1,1,0x00000032,40,2,2,4,100,1,,{},{},{} +16037,Ru_Gold_Mace,Ru Gold Mace,5,0,,1500,170,,1,2,0x00008000,56,2,2,3,120,1,8,{ bonus bVit,8; bonus bInt,8; },{},{} +16038,Infinity_Mace,Infinity Mace,5,10,,500,155,,1,1,0x00000032,40,2,2,4,100,1,8,{},{},{} +16039,Spoon,Spoon,5,10,,1000,80,,1,1,0x00000033,63,2,2,3,40,1,8,{ bonus bAspd,10; bonus2 bAddEff,Eff_Curse,1000; },{},{} +16040,Crimson_Mace,Crimson Mace,5,20,,800,80,,1,2,0x00000033,63,2,2,3,70,1,8,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{} +16043,Meteor_Strike,Meteor Strike,5,0,,20000,1,,1,2,0x00000001,63,2,2,4,110,1,8,{ bonus bBaseAtk,10*getskilllv("BS_WEAPONRESEARCH"); bonus bBaseAtk,30*getskilllv("MO_IRONHAND"); .@s = getskilllv("AM_AXEMASTERY"); bonus bBaseAtk,7*.@s; bonus bHit,5*.@s; bonus bBaseAtk,10*getrefine(); if (getskilllv("MC_PUSHCART") > 9) skill "MC_CARTREVOLUTION",1; if (getskilllv("SM_SWORD") > 0) skill "KN_BOWLINGBASH",1; .@str = readparam(bStr); if (.@str > 119) bonus bUseSPrate,-30; else if (.@str > 107) bonus bUseSPrate,-20; },{},{} +//=================================================================== // More Rental Boxes +//=================================================================== 16131,Lady_Tanee_Doll_Box,Lady Tanee Doll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5526,1; },{},{} 16132,Lunatic_Hat_Box,Lunatic Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5527,1; },{},{} 16133,G_Staff_Of_Light_Box,Staff Of Light Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2006,1; },{},{} @@ -8448,7 +8682,6 @@ 16450,FScorpio_Diadem_Box,FScorpio Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5677,1; },{},{} 16456,My_Scroll1,My Scroll1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_My_Scroll1); },{},{} 16457,Tw_Nov_Scroll,Tw Nov Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_Nov_Scroll); },{},{} -// 16461,Red_Wing_Hat_Box,Red Wing Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5690,1; },{},{} 16462,FRed_Wing_Hat_Box,FRed Wing Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5690,1; },{},{} 16466,My_Scroll2,My Scroll2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_My_Scroll2); },{},{} @@ -8506,10 +8739,9 @@ 16600,Spring_Flower_Scr_Tw,Spring Flower Scr Tw,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 16601,Blue_Arara_Hat_Box,Blue Arara Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5778,1; },{},{} 16602,F_Blue_Arara_Hat_Box,F Blue Arara Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5778,1; },{},{} -16603,Drooping_Votto_Box,Drooping Votto Box,18,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*TODO*/ },{},{} -16604,Drooping_Votto_Box,Drooping Votto Box,18,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*TODO*/ },{},{} +16603,Drooping_Votto_Box,Drooping Votto Box,18,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /* getitem drooping votto hat,1; */ },{},{} +16604,Drooping_Votto_Box,Drooping Votto Box,18,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /* getitem drooping votto hat[1],1; */ },{},{} 16606,Tendrilrion_Hat_Box,Tendrilrion Hat Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 5780,1; },{},{} -// 16619,Yellow_Bunnyband_Box,Yellow Bunnyband Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5783,1; },{},{} 16620,Yellow_Bunny_Headband_Box,Yellow Bunny Headband Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 5783,1; },{},{} 16622,Pink_Bunny_Band_Box,Pink Bunny Band Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 5784,1; },{},{} @@ -8614,16 +8846,13 @@ 16757,Hallo_Scroll,Hallo Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Hallo_Scroll); },{},{} 16760,Umbala_Spirit_Box2,Umbala Spirit Box2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Umbala_Spirit_Box2); /*rentitem Umbala_Spirit,604800;*/ },{},{} 16761,F_Umbala_Spirit_Box2,F Umbala Spirit Box2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_F_Umbala_Spirit_Box2); /*rentitem Umbala_Spirit,604800;*/ },{},{} -// 16763,Ptotection_Seagod_Box2,The Sea God's Call 7 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Ptotection_Seagod_Box2);*/ rentitem 6436,604800; },{},{} 16764,Ptotection_Seagod_Box3,The Sea God's Call 15 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Ptotection_Seagod_Box3);*/ rentitem 6436,1209600; },{},{} 16765,Octo_Hstick_Box,Octopus Hunting Skewer 23 Hour Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Octo_Hstick_Box);*/ rentitem 6442,86400; },{},{} 16766,Octo_Hstick_Box2,Octopus Hunting Skewer 3 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Octo_Hstick_Box2);*/ rentitem 6442,259200; },{},{} 16767,Octo_Hstick_Box3,Octopus Hunting Skewer 7 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Octo_Hstick_Box3);*/ rentitem 6442,604800; },{},{} -// 16770,Silvervine_Fruit_Box10,Silvervine 10 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Silvervine_Fruit_Box10);*/ getitem 6417,10; getitem 12636,30; },{},{} 16771,Silvervine_Fruit_Box40,Silvervine 40 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Silvervine_Fruit_Box40);*/ getitem 6417,40; getitem 12636,120; },{},{} -// 16774,Asgard_Scroll,Asgard Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Asgard_Scroll); },{},{} 16775,Sagittarius_Scroll,Sagittarius Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sagittarius_Scroll); },{},{} 16776,Universal_Catalog_Gold_Box10,Universal Catalog Gold 10 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12581,10; },{},{} @@ -8719,29 +8948,36 @@ 17076,Empty_Bottle_Box500,Empty Bottle Box500,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 713,500; },{},{} 17077,Taurus_Crown_Scroll,Taurus Crown Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Taurus_Crown_Scroll); },{},{} 17078,Taurus_Crown_Scroll_Box,Taurus Crown Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Taurus_Crown_Scroll_Box); },{},{} -17079,Indonesia_Box2,Indonesia Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 602,1; getitem 601,50; getitem 12118,3; getitem 12119,3; getitem 12120,3; getitem 12121,3; },{},{} +17079,Indonesia_Box2,Indonesia Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 602,5; getitem 601,50; getitem 12118,3; getitem 12119,3; getitem 12120,3; getitem 12121,3; },{},{} 17080,Scorpio_Scroll3,Scorpio Scroll3,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 17081,Yggdrasil_Crown_Box,Yggdrasil Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18580,1; },{},{} 17082,Gemi_Diadem_Scroll,Gemi Diadem Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Gemi_Diadem_Scroll); },{},{} 17083,Gemi_Diadem_Scroll_Box,Gemi Diadem Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Gemi_Diadem_Scroll_Box); },{},{} -17084,Upg_Katar_Box,Upg Katar Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1292,1; },{},{} -17085,Upg_Two_Handed_Axe_Box,Upg Two Handed Axe Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1394,1; },{},{} -17086,Upg_Lance_Box,Upg Lance Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1491,1; },{},{} -17087,Upg_Book_Box,Upg Book Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1585,1; },{},{} -17088,Upg_Staff_Box,Upg Staff Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2015,1; },{},{} -17089,Upg_Dagger_Box,Upg Dagger Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13071,1; },{},{} -17090,Upg_Revolver_Box,Upg Revolver,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13115,1; },{},{} -17091,Upg_Mace_Box,Upg Mace Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 16019,1; },{},{} -17092,Upg_Bow_Box,Upg Bow Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18112,1; },{},{} -17093,Upg_Twohand_Sword_Box,Upg Two-Handed Sword Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 21000,1; },{},{} -17094,Upg_Katar_Box2,Upg Katar Box,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17095,Upg_Two_Handed_Axe_Box2,Upg Two-Hand Axe Box,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17096,Upg_Lance_Box2,Upg Lance Box,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17104,HD_Oridecon_50Box,HD Oridecon 50 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6240,50; },{},{} -17105,HD_Elunium_50Box,HD Elunium 50 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6241,50; },{},{} +17084,Upg_Katar_Box,Upg Katar Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1292,1; },{},{} +17085,Upg_Two_Handed_Axe_Box,Upg Two Handed Axe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1394,1; },{},{} +17086,Upg_Lance_Box,Upg Lance Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1491,1; },{},{} +17087,Upg_Book_Box,Upg Book Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1585,1; },{},{} +17088,Upg_Staff_Box,Upg Staff Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2015,1; },{},{} +17089,Upg_Dagger_Box,Upg Dagger Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13071,1; },{},{} +17090,Upg_Revolver_Box,Upg Revolver,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13115,1; },{},{} +17091,Upg_Mace_Box,Upg Mace Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 16019,1; },{},{} +17092,Upg_Bow_Box,Upg Bow Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18112,1; },{},{} +17093,Upg_Twohand_Sword_Box,Upg Two-Handed Sword Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 21000,1; },{},{} +17094,Upg_Katar_Box2,Upg Katar Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +17095,Upg_Two_Handed_Axe_Box2,Upg Two-Hand Axe Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +17096,Upg_Lance_Box2,Upg Lance Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +17097,Upg_Book_Box2,Upg_Book_Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +17098,Upg_Staff_Box2,Upg_Staff_Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +17099,Upg_Dagger_Box2,Upg_Dagger_Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +17100,Upg_Revolver_Box2,Upg_Revolver_Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +17101,Upg_Mace_Box2,Upg_Mace_Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +17102,Upg_Bow_Box2,Upg_Bow_Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +17103,Upg_Twohand_Sword_Box2,Upg_Twohand_Sword_Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} +17104,HD_Oridecon_50Box,HD Oridecon 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6240,50; },{},{} +17105,HD_Elunium_50Box,HD Elunium 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6241,50; },{},{} 17106,Max_Weight_Up_10Box,Heavy Lifter Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7776,10; },{},{} -17107,Gemi_Crown_Scroll,Gemi Crown Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Gemi_Crown_Scroll); },{},{} -17108,Gemi_Crown_Scroll_Box,Gemi Crown Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Gemi_Crown_Scroll_Box); },{},{} +17107,Gemi_Crown_Scroll,Gemi Crown Scroll,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Gemi_Crown_Scroll); },{},{} +17108,Gemi_Crown_Scroll_Box,Gemi Crown Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Gemi_Crown_Scroll_Box); },{},{} 17109,Capri_Scroll,Capri Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 17110,Aquarius_Scroll,Aquarius Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} 17113,Pisces_Scroll,Pisces Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} @@ -8791,7 +9027,7 @@ 17229,Infinite_Flywing_Box,Infinite Flywing Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12887,604800; },{},{} 17230,Valerian_Egg,Valerian Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ /*TODO, confirm the rates*/ getitem callfunc("F_Rand",12259,2793,4145,12246),1; },{},{} 17231,Refinement_Ore_Box,Refinement Ore Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,1; getitem 7620,1; },{},{} -17232,Refinement_box(7),Refinement box(7),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*Refine cerficates box*/ },{},{} +17232,Refinement_box(7),Refinement box(7),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6230,1; getitem 6234,1; },{},{} 17233,Scroll_Of_Death,Scroll Of Death,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Scroll_Of_Death); },{},{} 17234,Scroll_Of_Life,Scroll Of Life,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Scroll_Of_Life); },{},{} 17235,Scroll_Of_Magic,Scroll Of Magic,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Scroll_Of_Magic); },{},{} @@ -8835,25 +9071,24 @@ 17294,Shadow_Magical_Package,Shadow Magical Package,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",24021,24022,24023,24024,24025,24026),1; },{},{} 17298,Support_Package,Support Package,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Support_Package); },{},{} 17299,Support_Package(10),Support Package(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Support_Package10); },{},{} -// 17302,Shadow_Box_II_,Shadow Box II,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} 17303,Shadow_Set_Box_II,Shadow Set Box II,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} 17304,Neuralizer_Box_3,Neuralizer Box 3,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12213,3; },{},{} 17306,Status_Reset_Coupon_Box,Status Reset Coupon Box,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem callfunc("F_Rand",6720,6721),1; },{},{} -17307,Midgard_Egg,Midgard Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ /*TODO, confirm the rates*/ getitem callfunc("F_Rand",4441,4352,4498,6228,6232,6234,18508,1549),1; },{},{} +17307,Midgard_Egg,Midgard Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Midgard_Egg); },{},{} 17308,Half_Asprika_box1,Half Asprika box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2566,86400; },{},{} 17311,Half_Brynhild_box1,Half Brynhild box1,2,20,,0,,,,,0xFFFFFFFF,63,2,,,47,,,{ rentitem 15023,86400; },{},{} 17314,Infinite_Giant_Fly_Wing_Box,Infinite Giant Fly Wing Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12212,86400; },{},{} 17315,Lucky_Silvervine_Fruit_Box(10),Lucky Silvervine Fruit Box(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6417,10; },{},{} 17316,Lucky_Silvervine_Fruit_Box(110),Lucky Silvervine Fruit Box(110),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6417,110; },{},{} -17317,Sweet_Midgard_Egg,Sweet Midgard Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ /*TODO, confirm the rates*/ getitem callfunc("F_Rand",4302,4047,4169,6229,6233,18516),1; },{},{} -17320,Brithday_IdRO10th_Scroll,Brithday IdRO10th Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ /*TODO, confirm the rates*/ getitem callfunc("F_Rand",4305,4492,4500,18742,18744,18756,2176,2959,18745,19574,18567),1; },{},{} +17317,Sweet_Midgard_Egg,Sweet Midgard Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Sweet_Midgard_Egg); },{},{} +17320,Birthday_IdRO10th_Scroll,Birthday IdRO10th Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Birthday_IdRO10th_Scroll); },{},{} 17321,Three_Master_Package,Three Master Package,18,10,,10,,,,0,0x0,0,2,,,,,,{ /*TODO: Confirm the items and rates*/ getitem 14534,20; getitem 14535,20; },{},{} 17322,Three_Master_Package(10),Three Master Package(10),18,10,,10,,,,0,0x0,0,2,,,,,,{ /*TODO: Confirm the items and rates*/ getitem 14534,200; getitem 14535,200; },{},{} -17326,Requiem_Egg,Requiem Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ /*TODO, confirm the rates*/ getitem callfunc("F_Rand",4145,4480,4384,2720,2721,2722,6238,6239),1; },{},{} +17326,Requiem_Egg,Requiem Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Requiem_Egg); },{},{} 17331,Event_Almighty_Box,Event Almighty Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Event_Almighty_Box); },{},{} 17332,Event_Almighty_Box(100),Event Almighty Box(100),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Event_Almighty_Box10); },{},{} -17337,Holy_Spirit_Egg,Holy Spirit Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ /*TODO, confirm the rates*/ getitem callfunc("F_Rand",4441,4549,6238,6239),1; },{},{} +17337,Holy_Spirit_Egg,Holy Spirit Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Holy_Spirit_Egg); },{},{} 17338,Ore_Box_V,Ore Box V,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,5; getitem 7620,5; getitem 14696,1; },{},{} 17339,Ore_Box_V(10),Ore Box V(10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,50; getitem 7620,50; getitem 14696,11; },{},{} 17394,Event_Old_Headgear_Box,Event Old Headgear Box,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{} @@ -8889,46 +9124,46 @@ 17425,Half_BF_Rifle1_Box7,Half BF Rifle1 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 28203,604800; },{},{} 17426,Half_BF_Shotgun1_Box1,Half BF Shotgun1 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 28204,86400; },{},{} 17427,Half_BF_Shotgun1_Box7,Half BF Shotgun1 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 28204,604800; },{},{} -17429,11_Anniversary_Shadow_Box,11 Anniversary Shadow Box,18,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{} -17430,11_Anniversary_Shadow_Package,11 Anniversary Shadow Package,18,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{} -17431,Miracle_Lucky_Egg,Miracle Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ /*TODO: Many items. xD*/ },{},{} +17429,11_Anniversary_Shadow_Box,11 Anniversary Shadow Box,18,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* getitem callfunc("F_Rand",Ritual's Flute (weapon, earrings, pendants), every risyeo's (shields, armor, shoes)),1; */ },{},{} +17430,11_Anniversary_Shadow_Package,11 Anniversary Shadow Package,18,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* getitem Ritual's Flute (weapon, earrings, pendants),1; getitem every risyeo's (shields, armor, shoes)),1; */ },{},{} +17431,Miracle_Lucky_Egg,Miracle Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Miracle_Lucky_Egg); },{},{} 17432,Lucky_Silvervine_Fruit_Box_II(10),Lucky Silvervine Fruit Box II(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(Lucky_Silvervine_Fruit_Box_II10);*/ getitem 6417,10; getitem 14705,1; },{},{} 17433,Lucky_Silvervine_Fruit_Box_II(110),Lucky Silvervine Fruit Box II(110),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(Lucky_Silvervine_Fruit_Box_II110);*/ getitem 6417,110; getitem 14705,11; },{},{} -17435,Legend_Hero_Lucky_Egg,Legend Hero Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ /*TODO: Many items. xD*/ },{},{} +17435,Legend_Hero_Lucky_Egg,Legend Hero Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Legend_Hero_Lucky_Egg); },{},{} 17438,Three_Master_Package_II,Three Master Package II,3,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{} 17439,Three_Master_Package_II10,Three Master Package II(10),3,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{} 17440,Name_Change_Card_Box,Name Change Card Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12790,1; },{},{} 17441,Halter_Lead_Box,Halter Lead Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12622,1; },{},{} 17443,Reinforcement_Buckler_Box,Reinforcement Buckler Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 2150,1; },{},{} 17442,Emperium_G_Box,Emperium G Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6444,1; },{},{} -17447,Blessing_Midgard_Lucky_Egg,Blessing Midgard Lucky Egg,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,1,,,{ /*TODO: Many items. xD*/ },{},{} -17449,Cookies_Bar_Set,Set Bar Cookies,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ for (set .@i,14616; .@i <= 14621; set .@i,.@i+1) getitem .@i,1; },{},{} +17447,Blessing_Midgard_Lucky_Egg,Blessing Midgard Lucky Egg,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Blessing_Midgard_Lucky_Egg); },{},{} +17449,Cookies_Bar_Set,Set Bar Cookies,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ for (.@i = 14616; .@i <= 14621; .@i++) getitem .@i,1; },{},{} 17455,Premium_Battle_Manual_Box,Premium Battle Manual Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 22614,1; },{},{} 17456,Support_Package_II,Support Package II,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Support_Package_II); },{},{} 17457,Support_Package_II(10),Support Package II(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Support_Package_II10); },{},{} -17464,Winter_Midgard_Egg,Winter Midgard Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ /*TODO: Many items. xD*/ },{},{} +17464,Winter_Midgard_Egg,Winter Midgard Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Winter_Midgard_Egg); },{},{} 17465,Refinement_Ore_Box_VI,Refinement Ore Box VI,3,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,5; getitem 7620,5; getitem 14718,1; },{},{} 17466,Refinement_Ore_Box_VI(10),Refinement Ore Box VI(10),3,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,50; getitem 7620,50; getitem 14718,11; },{},{} 17467,(Limited)_Token_of_Ziegfried_Box(50),(Limited) Token of Ziegfried Box(50),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6833,50; },{},{} 17468,Neuralizer_II_Box_3,Neuralizer II Box (3),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14724,3;},{},{} 17469,Neuralizer_I_Box,Neuralizer I Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14723,1;},{},{} -17471,Spring_Festival_Lucky_Egg,Spring Festival Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ /*TODO: Many items. xD*/ },{},{} +17471,Spring_Festival_Lucky_Egg,Spring Festival Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Spring_Festival_Lucky_Egg); },{},{} 17472,Support_Package_III,Support Package III,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Support_Package_III); },{},{} 17473,Support_Package_III(10),Support Package III(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Support_Package_III10); },{},{} 17474,Infinite_Giant_Fly_Wing_Box_V,Infinite Giant Fly Wing Box V,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12212,86400; },{},{} 17475,(Limited)Gym_Membership_Card_Box(10),(Limited)Gym Membership Card Box(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 17475,10; },{},{} 17477,Unlimited_Box_II,Unlimited Box II,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Unlimited_Box_II); },{},{} 17478,Unlimited_Box_II(10),Unlimited Box II(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Unlimited_Box_II10); },{},{} -17479,Midgard_Festival_Egg,Midgard Festival Egg,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",6439,6423,19721,18878,2181,18932,18908,5873,19728,6228,6232,6238,6239,4493,4499,4486),1; },{},{} -17482,Solaris_Festival_Scroll,Solaris Festival Scroll,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",4480,4487,4539,6238,6239,6228,6232,2565,18863,18891,19729,5464,13444,2188),1; },{},{} +17479,Midgard_Festival_Egg,Midgard Festival Egg,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Midgard_Festival_Egg); },{},{} +17482,Solaris_Festival_Scroll,Solaris Festival Scroll,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Solaris_Festival_Scroll); },{},{} 17483,Three_Master_Package_III,Three Master Package III,3,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Three_Master_Package_III); },{},{} 17484,Three_Master_Package_III(10),Three Master Package III(10),3,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Three_Master_Package_III10); },{},{} -17490,Time_Travel_Lucky_Egg,Time Travel Lucky Egg,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",4486,4488,4498,6238,6239,6228,6232,2190,19661,5822,18832,18754),1; },{},{} +17490,Time_Travel_Lucky_Egg,Time Travel Lucky Egg,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Time_Travel_Lucky_Egg); },{},{} 17491,Refinement_Ore_Box_VII,Refinement Ore Box VII,3,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,5; getitem 7620,5; getitem 4482,1; },{},{} 17492,Refinement_Ore_Box_VII(10),Refinement Ore Box VII(10),3,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,50; getitem 7620,50; getitem 4482,11; },{},{} -17494,Rise_Midgard_Lucky_Egg,Rise Midgard Lucky Egg,18,10,,10,,,,,,,,,,,,,{/*TODO*/},{},{} -17495,Lucky_Silvervine_Fruit_Box_III10,Lucky Silvervine Fruit Box III(10),18,10,,10,,,,,,,,,,,,,{ getgroupitem(IG_Lucky_Silvervine_Fruit_Box_III10); },{},{} -17496,Lucky_Silvervine_Fruit_Box_III110,Lucky Silvervine Fruit Box III(110),18,10,,10,,,,,,,,,,,,,{ getgroupitem(IG_Lucky_Silvervine_Fruit_Box_III110); },{},{} +17494,Rise_Midgard_Lucky_Egg,Rise Midgard Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Rise_Midgard_Lucky_Egg); },{},{} +17495,Lucky_Silvervine_Fruit_Box_III10,Lucky Silvervine Fruit Box III(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Silvervine_Fruit_Box_III10); },{},{} +17496,Lucky_Silvervine_Fruit_Box_III110,Lucky Silvervine Fruit Box III(110),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Silvervine_Fruit_Box_III110); },{},{} 17498,Three_Master_Package_IV,Three Master Package IV,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,20; getitem 14535,20; getitem 12578,20; getitem 22812,1; },{},{} 17499,Three_Master_Package_IV(10),Three Master Package IV(10),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,200; getitem 14535,200; getitem 12578,200; getitem 22812,11; },{},{} 17501,Support_Package_IV,Support Package IV,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,2; getitem 12210,2; getitem 12883,2; getitem 14600,2; /*getitem Mysterious Water of Life,6;*/ if(!rand(100)) getitem 22823,1; },{},{} @@ -8942,25 +9177,52 @@ 17513,(Limited)Purified_Oridecon_Box(30),(Limited) Purified Oridecon Box(30),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6910,30; getitem 6635,1; },{},{} 17515,Unlimited_Box_III,Unlimited Box III,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12684,5; getitem 12796,10; if(!rand(30)) getitem 14758,1; },{},{} 17516,Unlimited_Box_III(10),Unlimited Box III(10),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12684,50; getitem 12796,100; if(!rand(30)) getitem 14758,11; },{},{} +17519,Epic_Heroes_Scroll,Epic Heroes Scroll,18,0,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Epic_Heroes_Lucky_Egg); },{},{} 17520,Limited_Edition_Manual_Box,Limited Edition Manual Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14765,3; /*getitem (limited edition battle manual),2;*/ },{},{} 17521,Three_Master_Package_V,Three Master Package V,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,20; getitem 14535,20; /*getitem Mysterious Water of Life,20;*/ getitem 22842,1; },{},{} 17522,Three_Master_Package_V(10),Three Master Package V(10),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,200; getitem 14535,200; /*getitem Mysterious Water of Life,200;*/ getitem 22842,11; },{},{} +17524,Limited_Power_Booster_Box,Limited Power Booster Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14766,1; getitem 22873,1; },{},{} +17525,Limited_Power_Booster_Box(100),Limited Power Booster Box(100),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14766,100; getitem 22873,11; },{},{} +17526,Majestic_Lucky_Egg,Majestic Lucky Egg,18,0,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Majestic_Lucky_Egg); },{},{} +17527,Actinidia_Cat_Fruit_Box(200),Actinidia Cat Fruit Box(200),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6909,200; getitem 12636,rand(1,5); /*TODO: Fix the 12636 amount*/},{},{} +17532,Blessing_Lucky_Egg,Blessing Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Blessing_Lucky_Egg); },{},{} +17544,Smelting_Ore_Box_IX,Smelting Ore Box IX,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,5; getitem 7620,5; getitem 22888,1; },{},{} +17545,Smelting_Ore_Box_IX(10),Smelting Ore Box IX(10),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,50; getitem 7620,50; getitem 22888,11; },{},{} +17547,(Limited)2015_Neuralizer_Box,(Limited)2015 Neuralizer Box,2,20,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 22894,1; },{},{} +17548,(Limited)2015_Status_Initialization_Volume_Box,(Limited)2015 Status Initialization Volume Box,2,20,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 22895,1; },{},{} +17549,(Limited)High_Density_Bradium_Box(30),(Limited)High Density Bradium Box(30),2,20,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6327,30; },{},{} +17550,(Limited)High_Density_Kalunium_Box(30),(Limited)High Density Kalunium Box(30),2,20,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6906,30; },{},{} +17552,Garnet_Lucky_Egg,Garnet Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Garnet_Lucky_Egg); },{},{} +17567,Event_Almighty_Box,Event Almighty Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 22902,1; bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800; },{},{} +17568,Event_Almighty_Box(100),Event Almighty Box(100),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 22902,11; bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800; },{},{} +17572,Erzulie_Lucky_Egg,Erzulie Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Erzulie_Lucky_Egg); },{},{} +17584,Venus_Lucky_Egg,Venus Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Venus_Lucky_Egg); },{},{} +17588,Amora_Lucky_Egg,Amora Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Amora_Lucky_Egg); },{},{} +17598,Sograt_Lucky_Scroll,Sograt Lucky Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sograt_Lucky_Egg); },{},{} +17607,Sanctuary_Lucky_Egg,Sanctuary Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sanctuary_Lucky_Egg); },{},{} +17613,Chronosian_Lucky_Egg,Chronosian Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Chronosian_Lucky_Egg); },{},{} +17628,Cyborg_Lucky_Egg,Cyborg Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Cyborg_Lucky_Egg); },{},{} +17633,Undine_Lucky_Egg,Undine Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Undine_Lucky_Egg); },{},{} +//=================================================================== // Mechanic/Genetic Cannonballs +//=================================================================== 18000,Cannon_Ball,Cannon Ball,10,100,,10,100,,,,0x00040400,56,2,32768,,99,,8,{},{},{} 18001,Holy_Cannon_Ball,Holy Cannon Ball,10,200,,10,120,,,,0x00040400,56,2,32768,,99,,8,{ bonus bAtkEle,Ele_Holy; },{},{} 18002,Dark_Cannon_Ball,Dark Cannon Ball,10,200,,10,120,,,,0x00040400,56,2,32768,,99,,8,{ bonus bAtkEle,Ele_Dark; },{},{} 18003,Soul_Cannon_Ball,Soul Cannon Ball,10,200,,10,120,,,,0x00040400,56,2,32768,,99,,8,{ bonus bAtkEle,Ele_Ghost; },{},{} 18004,Iron_Cannon_Ball,Iron Cannon Ball,10,500,,10,250,,,,0x00040400,56,2,32768,,99,,8,{},{},{} +//=================================================================== // More Bows +//=================================================================== 18100,Shooting_Star_C,Shooting Star,5,20,,0,190,,5,0,0x00080800,63,2,34,4,1,1,11,{ bonus bLongAtkRate,20; },{},{} 18101,F_Bow_Of_Rudra_C,Rudra Bow,5,2,,0,185,,5,0,0x000A0848,63,2,34,4,0,0,11,{ bonus bAtkEle,Ele_Holy; bonus bInt,5; skill "AL_CURE",1; skill "AL_HEAL",1; bonus2 bResEff,Eff_Poison,5000; bonus2 bResEff,Eff_Curse,5000; bonus2 bResEff,Eff_Silence,5000; bonus2 bResEff,Eff_Confusion,5000; bonus2 bResEff,Eff_Blind,5000; },{},{} 18102,E_Bow_Of_Rudra_C,Rudra Bow,5,2,,0,185,,5,0,0x000A0848,63,2,34,4,0,0,11,{ bonus bAtkEle,Ele_Holy; bonus bInt,5; skill "AL_CURE",1; skill "AL_HEAL",1; bonus2 bResEff,Eff_Poison,5000; bonus2 bResEff,Eff_Curse,5000; bonus2 bResEff,Eff_Silence,5000; bonus2 bResEff,Eff_Confusion,5000; bonus2 bResEff,Eff_Blind,5000; },{},{} 18103,Mystic_Bow,Mystic Bow,5,0,,1700,75,,5,0,0x00080800,56,2,34,3,105,1,11,{ bonus bMatk,100; bonus bInt,4; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",10; },{},{} -18104,Adventure_Bow,Adventure Bow,5,0,,0,60,,1,0,0x00080800,63,2,34,1,1,0,11,{ bonus bUnbreakableWeapon,0; },{},{} +18104,Adventure_Bow,Adventure Bow,5,0,,0,60,,1,0,0x00080800,63,2,34,1,1,0,11,{ bonus bUnbreakableWeapon,1; },{},{} 18105,Academy_Bow,Academy Bow,5,0,,1200,90,,5,1,0x00080800,63,2,34,1,1,1,11,{},{},{} 18106,P_Bow3,Eden Bow III,5,0,,0,140,,5,0,0x000A0848,63,2,34,3,60,0,11,{},{},{} -18107,Malang_Snow_Crab,Malangdo Crab,5,0,,0,120,,5,0,0x000A0848,63,2,34,1,50,0,11,{ bonus bUnbreakableWeapon,0; bonus bLuk,3; bonus bCritAtkRate,50; if(BaseLevel>99) { bonus bLongAtkRate,10; } },{},{} -18108,Brindle_Eel,Zebra Eel,5,0,,0,180,,5,0,0x00080800,63,2,34,1,50,0,11,{ bonus bUnbreakableWeapon,0; bonus bAgi,3; autobonus "{ bonus bAspd,2; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(BaseLevel>99) { bonus bLongAtkRate,10; } },{},{} +18107,Malang_Snow_Crab,Malangdo Crab,5,0,,0,120,,5,0,0x000A0848,63,2,34,1,50,0,11,{ bonus bUnbreakableWeapon,1; bonus bLuk,3; bonus bCritAtkRate,50; if(BaseLevel>99) { bonus bLongAtkRate,10; } },{},{} +18108,Brindle_Eel,Zebra Eel,5,0,,0,180,,5,0,0x00080800,63,2,34,1,50,0,11,{ bonus bUnbreakableWeapon,1; bonus bAgi,3; autobonus "{ bonus bAspd,2; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(BaseLevel>99) { bonus bLongAtkRate,10; } },{},{} 18109,Catapult,Thief Crossbow,5,56000,,1100,150,,5,2,0x00020000,63,2,34,4,100,1,11,{ .@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",(.@r*2); bonus2 bSkillUseSP,"SC_TRIANGLESHOT",(.@r*2); },{},{} 18110,Big_CrossBow,Giant Crossbow,5,56000,,900,160,,5,2,0x00000800,63,2,34,4,110,1,11,{ .@r = getrefine(); bonus2 bSkillAtk,"RA_ARROWSTORM",(.@r*5); bonus2 bSkillUseSP,"RA_ARROWSTORM",(.@r*5); if(readparam(bAgi)>=120){ bonus bAspd,1; } },{},{} 18111,Creeper_Bow,Creeper Bow,5,56000,,1500,150,,5,2,0x00080800,63,2,34,3,120,1,11,{ bonus bDex,1; bonus3 bAutoSpell,"PF_SPIDERWEB",1,200; },{},{} @@ -8968,17 +9230,22 @@ 18113,Velum_Arbalest,Vellum Arbalest,5,20,,1100,50,,5,0,0x000A0848,63,2,34,4,95,1,11,{ bonus3 bSPVanishRaceRate,RC_Player,10000,4; bonus bAspd,-5; },{},{} 18114,Velum_CrossBow,Vellum CrossBow,5,20,,1100,110,,5,0,0x000A0848,63,2,34,4,95,1,11,{ bonus2 bAddRace,RC_Player,30+getrefine(); bonus2 bIgnoreDefRaceRate,RC_Player,30; },{},{} 18115,Orc_Archer_Bow_,Orc Archer Bow,5,20,,1600,120,,5,1,0x000A0848,63,2,34,3,65,1,11,{},{},{} -18116,Metal_Bow,Metal Bow,5,20,,0,50,,5,1,0x00080800,63,2,34,3,1,1,11,{ .@r = getrefine(); if(BaseJob==Job_Hunter && Upper!=2) bonus bBaseAtk,10; bonus bBaseAtk,(.@r*3); bonus bLongAtkRate,.@r; set .@i,((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} +18116,Metal_Bow,Metal Bow,5,20,,0,50,,5,1,0x00080800,63,2,34,3,1,1,11,{ .@r = getrefine(); if(BaseJob==Job_Hunter && Upper!=2) bonus bBaseAtk,10; bonus bBaseAtk,(.@r*3); bonus bLongAtkRate,.@r; .@i = ((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} 18117,Royal_Bow,Royal Bow,5,200000,,1500,80,,5,1,0x000A0808,63,2,34,4,105,1,11,{},{},{} +18118,TE_Woe_Bow,TE Woe Bow,5,0,,0,120,,5,0,0x000A0848,63,2,34,3,40,1,11,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Curse,3000; },{},{} 18119,Tanos_Bow,Tanos Bow,5,10,,1300,180:110,,,1,0x000A0808,63,2,34,4,120,1,11,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bAtkRate,5; bonus2 bHPLossRate,100,10000; },{},{} -18120,Bow_Of_Evil_Slayer,Bow Of Evil Slayer,5,10,,1350,,115,,1,0x00020008,63,2,34,,100,1,11,{ bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9){ bonus bAtkRate,5; } else if(.@r>=12){ bonus bAtkRate,7; } },{},{} -//18125,Arcus_Daemonicus,Arcus Daemonicus,5 +18120,Bow_Of_Evil_Slayer,Bow Of Evil Slayer,5,10,,1350,,115,,1,0x00020008,63,2,34,,100,1,11,{ bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus bAtkRate,(.@r>=9)?(5):((.@r>=12)?(7):(0)); },{},{} 18122,Giant_Bow,Giant Bow,5,20,,3000,195,,5,1,0x00000800,63,2,34,4,130,1,11,{ bonus bLongAtkRate,40; bonus bAspdRate,-15; bonus bHit,50; },{},{} 18123,Bow_of_Storms,Bow of Storms,5,20,,1500,160,,5,1,0x00000800,63,2,34,4,130,1,11,{ bonus bLongAtkRate,30; bonus2 bSkillCooldown,"RA_ARROWSTORM",-20; bonus2 bSkillUseSP,"RA_ARROWSTORM",15; },{},{} -18124,Half_BF_Bow1,Half BF Bow1,5,20,,0,100,,5,0,0x000A0848,63,2,34,3,80,1,11,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon,0; },{},{} +18124,Half_BF_Bow1,Half BF Bow1,5,20,,0,100,,5,0,0x000A0848,63,2,34,3,80,1,11,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon,1; },{},{} +18125,Arcus_Daemonicus,Arcus Daemonicus,5,20,,1000,130,,5,2,0x00020008,63,2,34,4,80,1,11,{ /*Fix me: bonus bAtkRate,50; when equipped with shadow arrows*/ if(getrefine()>9){ bonus bAspd,1; bonus bUseSPrate,-20; } },{},{} 18126,Blue_Bow,Blue Bow,5,10,,1200,150,,5,1,0x00000800,56,2,2,3,100,1,11,{ bonus bAgi,5; bonus bDex,5; },{},{} +18127,Ru_Gold_Bow,Ru Gold Bow,5,0,,1200,150,,5,2,0x00000800,56,2,34,3,120,1,11,{ bonus bAgi,8; bonus bDex,8; },{},{} 18128,Infinity_Bow,Infinity Bow,5,20,,500,160,,5,1,0x00020048,63,2,34,4,100,1,11,{},{},{} +18130,Crimson_Bow,Crimson Bow,5,20,,1200,120,,5,2,0x00080048,63,2,34,3,70,1,11,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{} +//=================================================================== // More Headgears +//=================================================================== 18500,Cheer_Scarf6,Cheer Scarf6,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,1,0,369,{ bonus2 bExpAddClass,Class_All,60; },{},{} 18501,Cheer_Scarf8,Cheer Scarf8,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,1,0,369,{ bonus2 bExpAddClass,Class_All,80; },{},{} 18502,Cheer_Scarf10,Cheer Scarf10,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,1,0,369,{ bonus2 bExpAddClass,Class_All,100; },{},{} @@ -9007,9 +9274,9 @@ 18525,Watermelon_Hat,Watermelon Cap,4,20,,100,,4,,1,0xFFFFFFFF,63,2,256,,30,1,690,{ bonus bMdef,4; bonus2 bAddEle,Ele_Fire,3; },{},{} 18526,Yummy_Lollipop,Candy Cane In Mouth,4,20,,100,,2,,0,0xFFFFFFFF,63,2,512,,1,0,446,{ bonus bMatk,5; bonus bBaseAtk,5; bonus bAspd,1; bonus bFixedCastrate,-20; bonus bHealPower,5; },{},{} 18527,Gloomy_Pumpkin_Hat,Dark Pumpkin-head,4,20,,500,,5,,0,0xFFFFFFFF,63,2,256,,45,1,691,{ bonus2 bAddMonsterDropItem,12192,10; bonus bMdef,5; bonus bAllStats,2; },{},{} -18528,Tare_Neko_Cru,Drooping Neko Crew,4,20,,100,,0,,1,0xFFFFFFFF,63,2,256,,1,1,692,{ bonus bInt,2; bonus bMdef,5; .@r = getrefine(); if(.@r>=7){ set .@i,1; bonus bMatkRate,(.@r>=9)?7:2; } else set .@i,5; bonus2 bIgnoreMdefClassRate,Class_Normal,.@i+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@i+.@r; },{},{} +18528,Tare_Neko_Cru,Drooping Neko Crew,4,20,,100,,0,,1,0xFFFFFFFF,63,2,256,,1,1,692,{ bonus bInt,2; bonus bMdef,5; .@r = getrefine(); if(.@r>=7){ .@i = 1; bonus bMatkRate,(.@r>=9)?7:2; } else .@i = 5; bonus2 bIgnoreMdefClassRate,Class_Normal,.@i+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@i+.@r; },{},{} 18529,Drooping_Wild_Rose,Accurate Wild Rose,4,20,,500,,5,,1,0xFFFFFFFF,63,2,768,,30,1,541,{ bonus bMaxHPrate,-10; bonus bAspdRate,3; },{},{} -18530,Tha_Despero_Mask,Thanatos Despero Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,513,,30,0,693,{ bonus bUnbreakableHelm,0; bonus bLuk,-5; bonus bFlee,4; },{},{} +18530,Tha_Despero_Mask,Thanatos Despero Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,513,,30,0,693,{ bonus bUnbreakableHelm,1; bonus bLuk,-5; bonus bFlee,4; },{},{} 18531,Drooping_Permeter,Drooping Permeter,4,20,,1000,,8,,1,0xFFFFFFFF,63,2,256,,10,1,694,{ bonus2 bAddDefMonster,1314,-20; bonus2 bAddDefMonster,1316,-20; bonus2 bAddDefMonster,1319,-20; bonus2 bAddDefMonster,1315,-20; bonus2 bAddDefMonster,1318,-20; bonus2 bAddDefMonster,1312,-20; },{},{} 18532,Heart_Ribbon_Band,Heart Ribbon Hairband,4,20,,100,,0,,1,0xFFFFFFFF,63,2,256,,10,1,708,{ bonus bInt,2; },{},{} 18533,Honeybee_Hat,Honey Bee Hat,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,50,1,709,{ bonus bMdef,3; bonus2 bAddRace,RC_Insect,5; bonus2 bMagicAddRace,RC_Insect,5; bonus2 bSubRace,RC_Insect,5; bonus3 bAddMonsterDropItem,518,RC_Insect,2; },{},{} @@ -9017,12 +9284,12 @@ 18535,Pumpkin_Hat_2010,Pumpkin Hat 2010,4,20,,200,,0,,0,0xFFFFFFFF,63,2,256,,0,1,206,{},{},{} 18536,Foxtail,Foxtail,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,711,{ bonus bMatk,10; },{},{} 18537,Malangdo_Hat,Malangdo Hat,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,0,1,726,{ bonus bFlee,6; },{},{} -18538,Devil_Whisper,Spirit Whispers,4,20,,300,,3,,0,0xFFFFFFFF,63,2,512,,0,0,712,{ bonus bUnbreakableHelm,0; bonus bMdef,3; bonus2 bSubRace,RC_Angel,1; bonus2 bSubRace,RC_Demon,1; bonus3 bAddMonsterDropItem,12020,RC_Angel,400; bonus3 bAddMonsterDropItem,523,RC_Demon,400; },{},{} +18538,Devil_Whisper,Spirit Whispers,4,20,,300,,3,,0,0xFFFFFFFF,63,2,512,,0,0,712,{ bonus bUnbreakableHelm,1; bonus bMdef,3; bonus2 bSubRace,RC_Angel,1; bonus2 bSubRace,RC_Demon,1; bonus3 bAddMonsterDropItem,12020,RC_Angel,400; bonus3 bAddMonsterDropItem,523,RC_Demon,400; },{},{} 18539,Skull_Cap,Skull Cap,4,40,,200,,5,,1,0xFFFFFFFF,63,2,256,,10,1,713,{ bonus bMatkRate,2; .@r = getrefine(); if(.@r >= 5) { bonus bMatkRate,3; } if(.@r >= 7) { bonus bMatkRate,3; } },{},{} 18540,Evil_Mask,Evil Mask,4,20,,1000,,3,,0,0xFFFFFFFF,63,2,513,,10,0,714,{ bonus2 bSPLossRate,1,2000; bonus bAspdRate,1; },{},{} 18541,Little_Feather_Hat,Little Feather Hat,4,20,,500,,1,,1,0xFFFFFFFF,63,2,256,,30,1,715,{ bonus bDex,2; bonus bCritAtkRate,10; },{},{} 18542,Love_Guard,Love Guard,4,20,,500,,10,,1,0xFFFFFFFF,63,2,768,,10,1,716,{ bonus bHealPower2,5; bonus bAddItemHealRate,5; bonus bHealPower,(getrefine()>6)?5:2; },{},{} -18543,Witchs_Hat,Witchs Hat,4,20,,300,,7,,0,0xFFFFFFFF,63,2,256,,20,1,717,{ bonus bMdef,5; bonus bMatkRate,5; bonus2 bSPGainRace,RC_Demon,4; bonus2 bSPGainRace,RC_Undead,4; },{},{} +18543,Witchs_Hat,Witchs Hat,4,20,,300,,7,,1,0xFFFFFFFF,63,2,256,,20,1,717,{ bonus bMdef,5; bonus bMatkRate,5; bonus2 bSPGainRace,RC_Demon,4; bonus2 bSPGainRace,RC_Undead,4; },{},{} 18544,Blrabbit_Hband,Blrabbit Hband,4,20,,100,,6,,0,0xFFFFFFFF,63,2,256,,30,1,718,{},{},{} 18545,Whrabbit_Hband,Whrabbit Hband,4,20,,100,,6,,0,0xFFFFFFFF,63,2,256,,30,1,719,{},{},{} 18546,Lover_In_Mouth,Lover In Mouth,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,0,0,720,{},{},{} @@ -9050,7 +9317,7 @@ 18568,Humming_Bird,Humming Bird,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,10,0,702,{ bonus bMdef,6; },{},{} 18569,Soft_Sheep_Hat,Soft Sheep Hat,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,256,,10,0,738,{},{},{} 18570,Ancient_Gold_Deco,Ancient Gold Ornament,4,20,,400,,7,,1,0xFFFFFFFE,63,2,256,,100,1,739,{ if(BaseLevel >= 150) { bonus bAllStats,2; } if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief){ bonus2 bAddClass,Class_All,8; } if(BaseClass==Job_Mage||BaseClass==Job_Acolyte){ bonus bMatk,8; } if(BaseClass==Job_Archer){ bonus bDex,3; bonus bLongAtkRate,10; } },{},{} -18571,Lucky_Hat,Lucky Hat,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,256,,0,0,740,{ bonus2 bExpAddRace,RC_All,3; },{},{} +18571,Lucky_Hat,Lucky Hat,4,20,,1000,,0,,1,0xFFFFFFFF,63,2,256,,0,0,740,{ bonus2 bExpAddRace,RC_All,3; },{},{} 18572,Korean_Judge_Hat,Korean Judge Hat,4,20,,300,,2,,1,0xFFFFFFFF,63,2,256,,0,1,377,{ bonus bMdef,2; bonus bVariableCastrate,-6; bonus bAspdRate,6; .@r = getrefine(); if(.@r>6){ bonus2 bSubRace,RC_DemiHuman,2;bonus2 bSubRace,RC_Player,2; } if(BaseClass==Job_Swordman || BaseClass==Job_Merchant || BaseClass==Job_Thief || Class==Job_Taekwon || Class==Job_Star_Gladiator || Class==Job_Star_Gladiator2 || Class==Job_Monk || Class==Job_Champion || Class==Job_Sura || Class==Job_Sura_T) bonus2 bAddClass,Class_All,(.@r/2);if(BaseClass==Job_Mage || BaseClass==Job_Acolyte || Class==Job_Ninja || Class==Job_Soul_Linker) bonus bMatkRate,(.@r/2); if(BaseClass==Job_Archer || Class==Job_Gunslinger) bonus bBaseAtk,.@r; },{},{} 18573,White_Feather,White Feather,4,20,,500,,2,,1,0xFFFFFFFF,63,2,256,,30,1,741,{ .@r = getrefine(); if(.@r<5){ bonus bHit,20;bonus bMaxHPrate,-10; } else if(.@r<7){ bonus bHit,10; } else if(.@r<9){ bonus bHit,7;bonus bMaxHPrate,3; } else { bonus bHit,4;bonus bMaxHPrate,4; } },{},{} 18574,Lord_of_Death,Lord of Death,4,20,,1000,,10,,1,0xFFFFFFFF,63,2,256,,70,1,742,{ bonus bMdef,5; .@r = getrefine(); bonus2 bAddClass,Class_Normal,(10+((.@r>4)?.@r-4:0)); bonus2 bSubClass,Class_Normal,-5; },{},{} @@ -9064,26 +9331,26 @@ 18582,Blue_Tiger_Mask,Blue Tiger Mask,4,20,,400,,2,,0,0xFFFFFFFF,63,2,768,,50,0,748,{ bonus bStr,3; },{},{} 18583,Navy_Drooping_Kitty,Navy Drooping Kitty,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,749,{ bonus bMdef,15; },{},{} 18584,Brown_Drooping_Kitty,Brown Drooping Kitty,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,750,{ bonus bMdef,15; },{},{} -18585,Orange_Bunny_Hairband,Orange Bunny Hairband,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,0,1,751,{ bonus bStr,1; bonus bInt,2; bonus bVit,3; },{},{} -18586,Violet_Bunny_Hairband,Violet Bunny Hairband,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,0,1,752,{ bonus bStr,1; bonus bInt,3; bonus bVit,2; bonus bDex,1; },{},{} -18587,Blue_Bunny_Hairband,Blue Bunny Hairband,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,0,1,753,{ bonus bStr,3; bonus bInt,1; bonus bVit,2; bonus bDex,1; },{},{} -18588,Silver_Bunny_Hairband,Silver Bunny Hairband,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,0,1,754,{ bonus bStr,2; bonus bInt,3; bonus bVit,1; bonus bDex,1; },{},{} +18585,Orange_Bunny_Hairband,Orange Bunny Hairband,4,20,,10,,0,,1,0xFFFFFFFF,63,2,256,,0,1,751,{ bonus bStr,1; bonus bInt,2; bonus bVit,3; },{},{} +18586,Violet_Bunny_Hairband,Violet Bunny Hairband,4,20,,10,,0,,1,0xFFFFFFFF,63,2,256,,0,1,752,{ bonus bStr,1; bonus bInt,3; bonus bVit,2; bonus bDex,1; },{},{} +18587,Blue_Bunny_Hairband,Blue Bunny Hairband,4,20,,10,,0,,1,0xFFFFFFFF,63,2,256,,0,1,753,{ bonus bStr,3; bonus bInt,1; bonus bVit,2; bonus bDex,1; },{},{} +18588,Silver_Bunny_Hairband,Silver Bunny Hairband,4,20,,10,,0,,1,0xFFFFFFFF,63,2,256,,0,1,754,{ bonus bStr,2; bonus bInt,3; bonus bVit,1; bonus bDex,1; },{},{} 18589,Strawberry_Hat,Strawberry Hat,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,0,1,755,{},{},{} 18590,Gemma_Hairband,Gemma Hairband,4,20,,200,,3,,1,0xFFFFFFFF,63,2,256,,10,1,564,{ bonus bMdef,3; },{},{} 18591,Mini_Glasses_,Mini Glasses,4,20,,100,,2,,1,0xFFFFFFFE,63,2,512,,0,0,47,{},{},{} -18592,Nestea_Hat,Nestea Hat,4,20,,200,,5,,1,0xFFFFFFFF,63,2,256,,0,1,756,{ bonus bMdef,5; },{},{} -18593,Fancy_Mini_Crown,Fancy Mini Crown,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,30,1,707,{ bonus bInt,1; bonus bMdef,5; },{},{} +18592,Nestea_Hat,Nestea Hat,4,20,,200,,5,,0,0xFFFFFFFF,63,2,256,,0,1,756,{ bonus bMdef,5; },{},{} +18593,Fancy_Mini_Crown,Fancy Mini Crown,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,30,1,707,{ bonus bInt,1; bonus bMdef,5; bonus bVariableCastRate,-3; bonus bHealPower,3; bonus bSkillUseSP,-3; .@r = getrefine(); bonus bMatkRate,(.@r>6)?(5):((.@r>4)?(4):(3)); },{},{} 18594,Magni_Cap_,Magni Cap,4,30000,,1000,,9,,1,0xFFFFFFFE,63,2,256,,0,1,250,{ bonus bStr,2; },{},{} -18595,Horn_Of_Ancient,Horn of Ancient,4,40,,200,,8,,1,0xFFFFFFFF,63,2,256,,50,1,757,{ autobonus "{ bonus bBaseAtk,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} +18595,Horn_Of_Ancient,Horn of Ancient,4,40,,200,,8,,1,0xFFFFFFFF,63,2,256,,50,1,757,{ bonus2 bSubClass,Class_Boss,10; bonus2 bAddClass,Class_Boss,10; .@r = getrefine(); if (.@r > 6) { autobonus "{ bonus bBaseAtk,100; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; } if (.@r > 8) { bonus2 bSubClass,Class_Boss,10; bonus2 bAddClass,Class_Boss,10; } },{},{} 18596,Sprout_Hat,Sprout Hat,4,20,,200,,4,,0,0xFFFFFFFF,63,2,256,,70,1,758,{ skill "WZ_HEAVENDRIVE",3; },{},{} -18597,Mercury_Riser,Mercury Riser,4,40,,200,,10,,1,0xFFFFFFFF,63,2,256,,0,,759,{ bonus bAspdRate,3; bonus bCritical,3; .@r = getrefine(); if(.@r >= 7) { bonus bAspdRate,2; bonus bCritical,2; } if(.@r >= 9) { bonus bAspdRate,2; bonus bCritical,2; }},{},{} +18597,Mercury_Riser,Mercury Riser,4,40,,200,,10,,1,0xFFFFFFFF,63,2,256,,0,,759,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bAddRace,RC_DemiHuman,10; bonus bAspdRate,3; bonus bDelayrate,-3; .@r = getrefine(); if(.@r >= 7) { bonus bAspdRate,2; bonus bDelayrate,-2; } if(.@r >= 9) { bonus bAspdRate,2; bonus bDelayrate,-2; }},{},{} 18598,Mini_Tree_J,Mini Tree J,4,20,,50,,0,,1,0xFFFFFFFF,63,2,256,,0,0,727,{ bonus bMdef,20; },{},{} 18599,Black_Devil_Mask,Black Devil Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,760,{ bonus bAllStats,2; },{},{} -18600,Cat_Ear_Beret,Cat Ear Beret,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,0,1,761,{ bonus bAtkRate,5; .@r = getrefine(); if(.@r > 5 && .@r <= 12) { bonus2 bAddRace,RC_DemiHuman,(.@r - 5); bonus2 bSubRace,RC_DemiHuman,(.@r - 5); bonus2 bAddRace,RC_Player,(.@r - 5); bonus2 bSubRace,RC_Player,(.@r - 5); } if(.@r > 12) { bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player,7; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player,7; } },{},{} -18601,Red_Bread_Hat,Red Bread Hat,4,20,,300,,0,,1,0xFFFFFFFF,63,2,256,,0,1,762,{ bonus bMdef,5; },{},{} +18600,Cat_Ear_Beret,Cat Ear Beret,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,0,1,761,{ bonus bAtkRate,5; .@r = getrefine(); if(.@r < 5) .@r = 5; bonus2 bSubRace,RC_DemiHuman,(.@r - 5); bonus2 bAddRace,RC_DemiHuman,(.@r - 5); },{},{} +18601,Red_Bread_Hat,Red Bread Hat,4,20,,300,,0,,1,0xFFFFFFFF,63,2,256,,0,1,762,{ bonus bMdef,5; .@r = getrefine(); if (.@r < 5) .@r = 5; bonus2 bSubRace,RC_DemiHuman,(.@r - 5); bonus2 bMagicAddRace,RC_DemiHuman,(.@r - 5); },{},{} 18602,Watermelon_Bite,Watermelon Bite,4,20,,100,,4,,0,0xFFFFFFFF,63,2,1,,30,0,763,{ bonus bMdef,4; bonus2 bAddEle,Ele_Fire,4; },{},{} 18603,Black_Devil_Mask_,Black Devil Mask,4,20,,100,,0,,1,0xFFFFFFFF,63,2,512,,0,0,760,{ bonus bAllStats,1; },{},{} -18604,Falcon_Mask,Falcon Mask,4,10,,30,,0,,1,0xFFFFFFFF,63,2,513,,50,0,782,{},{},{} +18604,Falcon_Mask,Falcon Mask,4,10,,30,,0,,0,0xFFFFFFFF,63,2,513,,50,0,782,{},{},{} 18605,Dark_Age,Dark Age,4,20,,200,,3,,1,0xFFFFFFFF,63,2,256,,10,1,766,{ bonus bMdef,3; },{},{} 18606,Tear_Drop,Tear Drop,4,20,,100,,1,,0,0xFFFFFFFF,63,2,513,,30,0,767,{},{},{} 18607,Blush_S,Blush,4,20,,100,,0,,1,0xFFFFFFFF,63,2,512,,0,0,125,{},{},{} @@ -9091,8 +9358,8 @@ 18609,Dark_Blindfold_S,Dark Blinder,4,20,,100,,0,,1,0xFFFFFFFE,63,2,512,,0,0,187,{ bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200; },{},{} 18610,7th_Anni_Hat_B,7th Anni Hat B,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,0,1,778,{ bonus bAllStats,5; bonus bMdef,4; },{},{} 18611,Black_Glasses_,Black Glasses,4,20,,200,,2,,1,0xFFFFFFFF,63,2,512,,0,0,404,{ bonus bInt,1; bonus bMdef,2; },{},{} -18612,White_Musang_Hat,White Musang Hat,4,40,,400,,3,,1,0xFFFFFFFF,63,2,256,,0,1,770,{ bonus bStr,2; bonus bVit,2; bonus bLuk,1; bonus bUnbreakableHelm,0; },{},{} -18613,Black_Musang_Hat,Black Musang Hat,4,40,,400,,3,,1,0xFFFFFFFF,63,2,256,,0,1,771,{ bonus bInt,2; bonus bDex,2; bonus bAgi,1; bonus bUnbreakableHelm,0; },{},{} +18612,White_Musang_Hat,White Musang Hat,4,40,,400,,3,,1,0xFFFFFFFF,63,2,256,,0,1,770,{ bonus bStr,2; bonus bVit,2; bonus bLuk,1; bonus bUnbreakableHelm,1; },{},{} +18613,Black_Musang_Hat,Black Musang Hat,4,40,,400,,3,,1,0xFFFFFFFF,63,2,256,,0,1,771,{ bonus bInt,2; bonus bDex,2; bonus bAgi,1; bonus bUnbreakableHelm,1; },{},{} 18614,Grim_Reaper_Hat,Grim Reaper Hat,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,20,1,732,{ bonus bFlee,3; },{},{} 18615,Injured_Eyepatch,Injured Eyepatch,4,20,,200,,2,,0,0xFFFFFFFE,63,2,512,,20,0,772,{},{},{} 18616,Long_Tongue,Long Tongue,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,773,{},{},{} @@ -9101,43 +9368,43 @@ 18619,Thief_Bandana,Thief Bandana,4,20,,200,,1,,0,0xFFFFFFFE,63,2,256,,20,1,776,{ bonus3 bAutoSpell,"TF_STEAL",1,20; },{},{} 18620,Heart_Eye_Patch,Heart Eyepatch,4,5,,50,,2,,0,0xFFFFFFFF,63,2,512,,20,1,779,{},{},{} 18621,Gangster_Mask_A,Gangster Mask A,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,52,{},{},{} -18622,Rocket_Helm_1,Rocket Helm 1,4,20,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,1,764,{ bonus bAllStats,5; bonus bUnbreakableHelm,0; },{},{} -18623,Rocket_Helm_2,Rocket Helm 2,4,20,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,1,765,{ bonus bAllStats,4; bonus bUnbreakableHelm,0; },{},{} -18624,Rocket_Helm_3,Rocket Helm 3,4,20,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,1,768,{ bonus bAllStats,3; bonus bUnbreakableHelm,0; },{},{} -18625,Rocket_Helm_RWC,Rocket Helm RWC,4,10000,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,1,769,{ bonus bAllStats,2; bonus bUnbreakableHelm,0; bonus bSpeedRate,25; },{},{} -18626,Gelato_Hat,Gelato Hat,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,40,1,777,{ skill "MG_FROSTDIVER",1; bonus bMaxHP,300; },{},{} -18627,Dried_Leaf,Dried Leaf,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,10,0,711,{ bonus bUnbreakableHelm,0; },{},{} +18622,Rocket_Helm_1,Rocket Helm 1,4,20,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,1,764,{ bonus bAllStats,5; bonus bUnbreakableHelm,1; },{},{} +18623,Rocket_Helm_2,Rocket Helm 2,4,20,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,1,765,{ bonus bAllStats,4; bonus bUnbreakableHelm,1; },{},{} +18624,Rocket_Helm_3,Rocket Helm 3,4,20,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,1,768,{ bonus bAllStats,3; bonus bUnbreakableHelm,1; },{},{} +18625,Rocket_Helm_RWC,Rocket Helm RWC,4,10000,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,1,769,{ bonus bAllStats,2; bonus bUnbreakableHelm,1; bonus bSpeedRate,25; },{},{} +18626,Gelato_Hat,Gelato Hat,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,40,1,777,{ skill "MG_FROSTDIVER",1; bonus bMaxHP,300; },{},{} +18627,Dried_Leaf,Dried Leaf,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,10,0,711,{ bonus bUnbreakableHelm,1; },{},{} 18628,Tare_Brownie,Tare Brownie,4,20,,500,,5,,1,0xFFFFFFFF,63,2,256,,50,0,781,{},{},{} 18629,B_Desert_Wolf_Hat,B Desert Wolf Hat,4,10,,300,,0,,1,0xFFFFFFFF,63,2,256,,1,1,783,{},{},{} -18630,Dep_Alice_Hat,Drooping Alicel,4,20,,500,,6,,0,0xFFFFFFFE,63,2,256,,70,1,784,{},{},{} -18631,Ribbon_Chef_Hat,Ribbon Chef Hat,4,20,,300,,5,,0,0xFFFFFFFF,63,2,256,,70,1,785,{ bonus bDex,3; bonus bLuk,1; },{},{} +18630,Dep_Alice_Hat,Drooping Alicel,4,20,,500,,6,,0,0xFFFFFFFE,63,2,256,,70,1,784,{ bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player,10; if (getrefine() > 10) { autobonus "{ bonus bAspdRate,100; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; } },{},{} +18631,Ribbon_Chef_Hat,Ribbon Chef Hat,4,20,,300,,5,,0,0xFFFFFFFF,63,2,256,,70,1,785,{ bonus bDex,3; bonus bLuk,1; if (getrefine() > 6) { bonus2 bAddMonsterDropItem,12125,500; bonus2 bAddMonsterDropItem,12126,500; bonus2 bAddMonsterDropItem,12127,400; bonus2 bAddMonsterDropItem,12128,300; bonus2 bAddMonsterDropItem,12129,200; } },{},{} 18632,Yellow_Poring_Hairpin,Yellow Poring Hairpin,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,1,1,786,{},{},{} 18633,Pink_Poring_Hairpin,Pink Poring Hairpin,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,1,1,787,{},{},{} 18634,Green_Poring_Hairpin,Green Poring Hairpin,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,1,1,788,{},{},{} 18635,Blue_Poring_Hairpin,Blue Poring Hairpin,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,1,1,789,{},{},{} -18636,Bridal_Ribbon,Bridal Ribbon,4,20,,200,,6,,0,0xFFFFFFFF,63,2,256,,30,1,790,{ bonus bDex,1; },{},{} -18637,Ancient_Admiral_Helm,Ancient Admiral Helm,4,20,,700,,4,,1,0xFFFFFFFF,63,2,768,,0,1,660,{ bonus bStr,2; bonus bVit,1; },{},{} -18638,Citron_Hat,Citron Hat,4,20,,400,,3,,0,0xFFFFFFFE,63,2,256,,1,1,791,{ bonus bLuk,3; bonus2 bSubRace,RC_Plant,10; },{},{} -18639,Naval_Officer_Hat,Naval Officer Hat,4,20,,200,,2,,0,0xFFFFFFFE,63,2,256,,1,1,792,{ bonus bLuk,3; bonus2 bAddEle,Ele_Water,5; },{},{} -18640,Starfish_Headband,Starfish Headband,4,20,,200,,2,,0,0xFFFFFFFE,63,2,256,,1,1,793,{},{},{} -18641,Ribbon_Magic_Hat,Ribbon Magic Hat,4,20,,200,,2,,0,0xFFFFFFFE,63,2,256,,1,1,794,{ bonus bMaxSP,50; bonus bMatkRate,5; },{},{} +18636,Bridal_Ribbon,Bridal Ribbon,4,20,,200,,6,,0,0xFFFFFFFF,63,2,256,,30,1,790,{ bonus bDex,1; bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,10; },{},{} +18637,Ancient_Admiral_Helm,Ancient Admiral Helm,4,20,,700,,4,,1,0xFFFFFFFF,63,2,768,,0,1,660,{ bonus bStr,2; bonus bVit,1; if (getrefine() > 7) bonus bSpeedRate,25; },{},{} +18638,Citron_Hat,Citron Hat,4,20,,400,,3,,1,0xFFFFFFFE,63,2,256,,1,1,791,{ bonus bLuk,3; bonus2 bSubRace,RC_Plant,10; },{},{} +18639,Naval_Officer_Hat,Naval Officer Hat,4,20,,200,,2,,1,0xFFFFFFFE,63,2,256,,1,1,792,{ bonus bLuk,3; bonus2 bAddEle,Ele_Water,5; },{},{} +18640,Starfish_Headband,Starfish Headband,4,20,,200,,2,,1,0xFFFFFFFE,63,2,256,,1,1,793,{},{},{} +18641,Ribbon_Magic_Hat,Ribbon Magic Hat,4,20,,200,,2,,1,0xFFFFFFFE,63,2,256,,1,1,794,{ bonus bMaxSP,50; bonus bMatkRate,5; },{},{} 18642,Scissorhand_Model,Scissorhand Model,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,795,{ bonus bAgi,1; },{},{} 18643,Rockhand_Model,Rockhand Model,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,796,{ bonus bStr,1; },{},{} 18644,Paperhand_Model,Paperhand Model,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,797,{},{},{} -18645,Sailor_Hat,Sailor Hat,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,1,1,798,{ bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{} +18645,Sailor_Hat,Sailor Hat,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,1,1,798,{ bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player,5; },{},{} 18646,Cow_Hat,Cow Hat,4,20,,300,,4,,1,0xFFFFFFFF,63,2,256,,1,1,799,{ bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; },{},{} 18647,Star_Eyepatch,Star Eyepatch,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,1,0,800,{ bonus2 bResEff,Eff_Stun,1500; },{},{} 18648,Tongue_Charm,Tongue Charm,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,1,0,801,{ bonus2 bSubRace,RC_Demon,3; },{},{} 18649,Lude_Mask,Lude Mask,4,10,,100,,1,,0,0xFFFFFFFF,63,2,513,,0,1,802,{},{},{} -18650,RWC_Shouting_Mouth,RWC Shouting Mouth,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,1,0,194,{},{},{} +18650,RWC_Shouting_Mouth,RWC Shouting Mouth,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,1,0,194,{ bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,10; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,10; bonus3 bAutoSpellWhenHit,"MO_EXPLOSIONSPIRITS",5,10; bonus3 bAutoSpell,"BS_MAXIMIZE",5,10; bonus3 bAutoSpell,"MC_LOUD",1,10; bonus3 bAutoSpell,"AC_CONCENTRATION",5,10; bonus3 bAutoSpell,"PR_GLORIA",3,10; autobonus "{ bonus bStr,3; bonus bAgi,3; }",10,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; showscript \"RWC 2011 Fighting!!\"; }"; autobonus "{ bonus bInt,3; bonus bLuk,3; }",5,5000,BF_MAGIC,"{ specialeffect2 EF_ENERGYCOAT; showscript \"RWC 2011 Fighting!!\"; }"; },{},{} 18651,Ignis_Cap,Ignis Cap,4,20,,800,,8,,1,0xFFFFFFFF,63,2,256,,40,1,803,{},{},{} -18652,Vanargandr_Helm,Vanargandr Helm,4,20,,1500,,10,,1,0xFFFFFFFF,63,2,256,,80,1,804,{},{},{} +18652,Vanargandr_Helm,Vanargandr Helm,4,20,,1500,,10,,1,0xFFFFFFFF,63,2,256,,80,1,804,{ bonus bMdef,5; .@r = getrefine(); if (.@r >= 9 ) { bonus2 bHPDrainRate,60,8; bonus2 bSPDrainRate,20,4; } else if (.@r >= 8 ) { bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,2; } else if (.@r >= 7 ) { bonus2 bHPDrainRate,30,5; bonus2 bSPDrainRate,10,2; } else if (.@r >= 5 ) { bonus2 bHPDrainRate,10,3; bonus2 bSPDrainRate,10,1; } else { bonus2 bHPDrainRate,10,1; bonus2 bSPDrainRate,10,1; } },{},{} 18653,Deviruchi_Headphone,Deviruchi Headphone,4,20,,200,,8,,1,0xFFFFFFFF,63,2,256,,30,1,805,{ bonus bAgi,2; },{},{} -18655,Goedo_Monocle,Goedo Monocle,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,50,0,23,{},{},{} -18656,Witch's_Pumpkin_Hat,Witch's Pumpkin Hat,4,20,,300,,10,,0,0xFFFFFFFF,63,2,256,,20,1,717,{ bonus bMdef,10; bonus bStr,2; bonus bInt,2; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bMagicAddRace,RC_Demon,15; },{},{} -18657,Pegasus_Wing_Ears,Pegasus Wing Ears,4,20,,500,,1,,0,0xFFFFFFFF,63,2,512,,80,0,568,{ bonus bUnbreakableHelm,0; if (BaseLevel >= 150) bonus bAspdRate,3; else if (BaseLevel >= 100) bonus bAspdRate,2; else if (BaseLevel >= 50) bonus bAspdRate,1; },{},{} +18655,Goedo_Monocle,Goedo Monocle,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,50,0,807,{},{},{} +18656,Wit_Pumpkin_Hat,Witch's Pumpkin Hat,4,20,,300,,10,,0,0xFFFFFFFF,63,2,256,,20,1,717,{ bonus bMdef,10; bonus bStr,2; bonus bInt,2; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bMagicAddRace,RC_Demon,15; bonus2 bMagicAddRace,RC_Demon,15; },{},{} +18657,Pegasus_Wing_Ears,Pegasus Wing Ears,4,20,,500,,1,,0,0xFFFFFFFF,63,2,512,,80,0,568,{ bonus bUnbreakableHelm,1; .@i = BaseLevel; bonus bAspdRate,(.@i>=150)?(3):((.@i>=100)?(2):((.@i>=50)?(1):(0))); },{},{} 18658,Holy_Santa_Beard,Holy Santa Beard,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,1,0,25,{},{},{} -18659,Boitata_Hat,Boitata Hat,4,20,,0,,5,,1,0xFFFFFFFF,63,2,768,,0,1,808,{},{},{} +18659,Boitata_Hat,Boitata Hat,4,20,,0,,5,,1,0xFFFFFFFF,63,2,768,,0,1,808,{ autobonus "{ bonus bAtkEle,Ele_Fire; }",10,180000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; bonus3 bAutospell,"AS_SONICBLOW",5,10; },{},{} 18660,Indi_Feather_Band,Indian Feather Headband,4,20,,400,,3,,1,0xFFFFFFFE,63,2,256,,0,1,809,{ bonus bAgi,2; },{},{} 18661,Trident_Helm,Trident Helm,4,20,,400,,3,,1,0xFFFFFFFE,63,2,256,,20,1,810,{ bonus bStr,2; },{},{} 18662,Antler_Fedora,Antler Fedora,4,20,,400,,3,,0,0xFFFFFFFE,63,2,256,,1,1,811,{ bonus bInt,3; },{},{} @@ -9145,13 +9412,13 @@ 18664,Blind_Glasses,Blind Glasses,4,20,,400,,3,,0,0xFFFFFFFE,63,2,512,,20,1,813,{},{},{} 18665,Orange_In_Mouth,Orange In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,814,{},{},{} 18666,CD_In_Mouth,CD In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,815,{},{},{} -18667,Cat_Lace_Hairband,Cat Lace Hairband,4,20,,500,,2,,0,0xFFFFFFFE,63,2,256,,60,0,816,{ bonus bDex,3; },{},{} +18667,Cat_Lace_Hairband,Cat Lace Hairband,4,20,,500,,2,,1,0xFFFFFFFE,63,2,256,,60,0,816,{ bonus bDex,3; },{},{} 18668,Droopy_Turtle_Hat,Droopy Turtle Hat,4,20,,300,,1,,1,0xFFFFFFFE,63,2,256,,1,1,694,{ skill "AL_DECAGI",3; },{},{} 18669,Cowhide_Hat,Cowhide Hat,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,1,1,819,{ bonus bDex,2; bonus bMaxHPrate,1; },{},{} 18670,Hankie_In_Mouth,Hankie In Mouth,4,20,,100,,1,,0,0xFFFFFFFF,63,2,1,,12,0,818,{ bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player,3; },{},{} -18671,Rudolf_Hairband,Rudolf Hairband,4,20,,200,,5,,0,0xFFFFFFFF,63,2,256,,30,1,836,{ bonus3 bAutoSpell,"AL_INCAGI",10,50; bonus3 bAutoSpellWhenHit,"AL_INCAGI",10,50; bonus2 bAddItemHealRate,515,2000; },{},{} -18672,Tare_Pope,Tare Pope,4,20,,300,,0,,0,0xFFFFFFFF,63,2,256,,1,0,817,{ bonus bUnbreakableHelm,0; },{},{} -18673,Tare_Pope_,Tare Pope,4,20,,300,,0,,1,0xFFFFFFFF,63,2,256,,1,0,817,{ bonus bUnbreakableHelm,0; bonus bSPrecovRate,2; },{},{} +18671,Rudolf_Hairband,Rudolf Hairband,4,20,,200,,5,,0,0xFFFFFFFF,63,2,256,,30,1,836,{ bonus3 bAutoSpell,"AL_INCAGI",10,50; bonus3 bAutoSpellWhenHit,"AL_INCAGI",10,50; bonus2 bAddItemHealRate,515,2000; autobonus "{ bonus bLuk,20; }",10,50000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; /* showscript */ }"; autobonus2 "{ bonus bStr,20; }",10,50000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; /* showscript */ }"; },{},{} +18672,Tare_Pope,Tare Pope,4,20,,300,,0,,0,0xFFFFFFFF,63,2,256,,1,0,817,{ bonus bUnbreakableHelm,1; },{},{} +18673,Tare_Pope_,Tare Pope,4,20,,300,,0,,1,0xFFFFFFFF,63,2,256,,1,0,817,{ bonus bUnbreakableHelm,1; bonus bSPrecovRate,2; },{},{} 18674,Planewing_Hat,Planewing Hat,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,1,1,820,{ bonus bAgi,3; },{},{} 18675,Green_Apple_Hat,Green Apple Hat,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,20,1,821,{ bonus bDex,2; bonus bHit,5; },{},{} 18676,Hexagon_Spectacles,Hexagon Spectacles,4,20,,400,,3,,0,0xFFFFFFFE,63,2,512,,20,0,822,{ bonus bFlee,2; },{},{} @@ -9159,16 +9426,16 @@ 18678,Leek_In_Mouth,Leek In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,824,{ bonus2 bSubSize,Size_Small,2; },{},{} 18679,Abacus_In_Mouth,Abacus In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,825,{ skill "MC_IDENTIFY",1; },{},{} 18680,Tw_Frog_Hat,Tw Frog Hat,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,35,0,826,{ bonus bAgi,1; bonus2 bExpAddRace,RC_Insect,5; },{},{} -18681,Puppy_Ears_Hat,Puppy Ears Hat,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,1,1,827,{ bonus bVit,2; bonus bMaxHp,100; },{},{} +18681,Puppy_Ears_Hat,Puppy Ears Hat,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,1,1,827,{ bonus bVit,2; bonus bMaxHp,100; },{},{} 18682,Teardrop,Teardrop,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,1,1,828,{ bonus bMaxSP,15; },{},{} 18683,Carrot_In_Mouth,Carrot In Mouth,4,20,,200,,1,,0,0xFFFFFFFF,63,2,1,,1,0,829,{ bonus2 bSubRace,RC_Plant,3; },{},{} 18684,Showy_High_Cap,Showy High Cap,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,1,1,830,{ bonus bStr,3; bonus bInt,2; bonus2 bAddItemHealRate,505,50; },{},{} 18685,Stardust_Hairband,Stardust Hairband,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,256,,10,0,831,{},{},{} -18686,2011_RMSC_1,2011 RMSC 1,4,20,,2500,,20,,1,0xFFFFFFFF,63,2,256,,1,0,832,{ bonus bUnbreakableHelm,0; bonus bAllStats,5; },{},{} -18687,2011_RMSC_2,2011 RMSC 2,4,20,,2500,,20,,1,0xFFFFFFFF,63,2,256,,1,0,832,{ bonus bUnbreakableHelm,0; bonus bAllStats,3; },{},{} -18688,2011_RMSC_3,2011 RMSC 3,4,20,,2500,,20,,1,0xFFFFFFFF,63,2,256,,1,0,832,{ bonus bUnbreakableHelm,0; bonus bAllStats,1; },{},{} -18689,2011_RMSC_4,2011 RMSC 4,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,1,0,832,{ bonus bUnbreakableHelm,0; },{},{} -18690,Sirt_Evil_Eye,Sirt Evil Eye,4,20,,400,,0,,0,0xFFFFFFFF,63,2,512,,50,0,345,{ bonus bUnbreakableHelm,0; bonus bStr,1; },{},{} +18686,2011_RMSC_1,2011 RMSC 1,4,20,,2500,,20,,1,0xFFFFFFFF,63,2,256,,1,0,832,{ bonus bUnbreakableHelm,1; bonus bAllStats,5; },{},{} +18687,2011_RMSC_2,2011 RMSC 2,4,20,,2500,,20,,1,0xFFFFFFFF,63,2,256,,1,0,832,{ bonus bUnbreakableHelm,1; bonus bAllStats,3; },{},{} +18688,2011_RMSC_3,2011 RMSC 3,4,20,,2500,,20,,1,0xFFFFFFFF,63,2,256,,1,0,832,{ bonus bUnbreakableHelm,1; bonus bAllStats,1; },{},{} +18689,2011_RMSC_4,2011 RMSC 4,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,1,0,832,{ bonus bUnbreakableHelm,1; },{},{} +18690,Sirt_Evil_Eye,Sirt Evil Eye,4,20,,400,,0,,0,0xFFFFFFFF,63,2,512,,50,0,345,{ bonus bUnbreakableHelm,1; bonus bStr,1; },{},{} 18691,Rising_Black_Dragon,Rising Black Dragon,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,1,1,863,{},{},{} 18692,Mike_Hat,Mike Hat,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,1,1,837,{ bonus bDex,2; bonus bLuk,1; },{},{} 18693,Sleeping_Kitty_Cat,Sleeping Kitty Cat,4,20,,200,,4,,1,0xFFFFFFFE,63,2,256,,20,1,838,{ bonus2 bAddRace,RC_Brute,2; },{},{} @@ -9183,7 +9450,6 @@ 18702,Shaving_Cream,Shaving Cream,4,20,,50,,1,,0,0xFFFFFFFF,63,2,1,,10,0,847,{},{},{} 18703,Stem_In_Mouth,Stem In Mouth,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,1,0,848,{ bonus2 bResEff,Eff_Poison,2000; },{},{} 18704,Drosera_Hairpin,Drosera Hairpin,4,20,,640,,6,,1,0xFFFFFFFF,63,2,256,,64,1,850,{ bonus bMdef,4; bonus bMaxSP,64; bonus2 bSubRace,RC_Insect,-10; },{},{} -// 18706,Can_Hat,Can Hat,4,20,,400,,3,,0,0xFFFFFFFE,63,2,256,,20,1,851,{ bonus bLuk,3; },{},{} 18707,Maneater_Flower_Hat,Maneater Flower Hat,4,20,,500,,3,,0,0xFFFFFFFE,63,2,256,,20,1,852,{ bonus bFlee,20; },{},{} 18708,Candy_Hat,Candy Hat,4,20,,200,,3,,0,0xFFFFFFFE,63,2,256,,20,1,853,{ skill "AL_HEAL",3; },{},{} @@ -9197,15 +9463,19 @@ 18716,Strawberry_In_Mouth,Strawberry In Mouth,4,20,,50,,2,,0,0xFFFFFFFF,63,2,1,,10,0,861,{},{},{} 18718,Rose_Hairband,Rose Hairband,4,20,,200,,3,,0,0xFFFFFFFF,63,2,256,,30,0,864,{ bonus bInt,1; bonus bVit,1; bonus bAspdRate,3; bonus bVariableCastrate,-3; },{},{} 18727,Sedora_Hat,Sedora Hat,4,20,,300,,13,,1,0xFFFFFFFF,63,2,256,,10,1,869,{},{},{} -18728,Egir_Helm,Egir Helm,4,200000,,800,,10,,1,0xFFFFFFFF,63,2,256,,110,1,870,{ bonus bUnbreakableHelm,0; },{},{} -18729,MVP_Basketball,MVP Basketball,4,20,,150,,6,,1,0xFFFFFFFF,63,2,256,,1,1,871,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus2 bAddItemHealRate,522,30; .@r = getrefine(); if (.@r>=12) bonus bVariableCastrate,-5; else if (.@r>=10) bonus bVariableCastrate,-4; else bonus bVariableCastrate,-3; },{},{} +18728,Egir_Helm,Egir Helm,4,200000,,800,,10,,1,0xFFFFFFFF,63,2,256,,110,1,870,{ bonus bUnbreakableHelm,1; },{},{} +18729,MVP_Basketball,MVP Basketball,4,20,,150,,6,,1,0xFFFFFFFF,63,2,256,,1,1,871,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; bonus2 bAddItemHealRate,522,30; .@r = getrefine(); bonus bVariableCastrate,(.@r>=12)?(-5):((.@r>=10)?(-4):(-3)); },{},{} 18730,Cryptura_Academy_Hat,Cryptura Academy Hat,4,0,,200,,2,,1,0xFFFFFFFF,63,2,256,,0,1,872,{ bonus bMaxHP,15; bonus bMaxSP,5; },{},{} -18737,Fortier_Mask,Fortier Masque,4,20,,200,,0,,0,0xFFFFFFFF,63,2,512,,10,0,876,{ bonus bUnbreakableHelm,0; bonus2 bMagicAtkEle,Ele_Fire,4; },{},{} +18732,TE_Woe_Cap,TE Woe Cap,4,0,,0,,5,,0,0xFFFFFFFF,63,2,256,1,40,1,,{ bonus bMdef,5; bonus bBaseAtk,5; bonus bMatk,5; bonus2 bAddRace,RC_Player,10; bonus2 bMagicAddRace,RC_Player,10; bonus2 bResEff,Eff_Freeze,25; },{},{} +18733,TE_Woe_Bone_Helm,TE Woe Bone Helm,4,0,,0,,10,,0,0x000444A2,63,2,256,1,40,1,103,{ bonus bBaseAtk,10; bonus2 bAddRace,RC_Player,20; bonus2 bResEff,Eff_Freeze,25; },{},{} +18734,TE_Woe_Magic_Eyes,TE Woe Magic Eyes,4,0,,0,,5,,0,0x00818315,63,2,256,1,40,1,209,{ bonus bMdef,5; bonus bMatk,10; bonus2 bMagicAddRace,RC_Player,20; bonus2 bResEff,Eff_Freeze,25; },{},{} +18736,Censor_Bar_,Censor Bar,4,0,,100,,,,0,0xFFFFFFFF,63,2,512,1,1,1,229,{},{},{} +18737,Fortier_Mask,Fortier Masque,4,20,,200,,0,,0,0xFFFFFFFF,63,2,512,,10,0,876,{ bonus bUnbreakableHelm,1; bonus2 bMagicAtkEle,Ele_Fire,4; },{},{} 18739,Carnation_Hairband,Carnation Hairband,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,878,{ bonus bLuk,1; },{},{} 18740,Hair_Of_The_Strong,RMSC2012 Special Costume,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,879,{},{},{} 18741,C_Will_O_Wisp,Costume Will O Wisp,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,,880,{},{ sc_start SC_STRANGELIGHTS,-1,0; },{ sc_end SC_STRANGELIGHTS; } 18742,C_MoonStar_Accessory,Costume Moon and Stars,4,20,,0,,0,,0,0xFFFFFFFF,63,2,2048,,0,0,881,{},{ sc_start SC_MOONSTAR,-1,0; },{ sc_end SC_MOONSTAR; } -18743,Spirit_Of_Chung_E,Spirit Of Chung E,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,882,{},{},{} +18743,Spirit_Of_Chung_E,Costume Spirit Of Chung E,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,882,{},{},{} 18744,C_World_Star,Costume Twilight,4,20,,0,,0,,0,0xFFFFFFFF,63,2,2048,,0,0,883,{},{ sc_start SC_SUPER_STAR,-1,0; },{ sc_end SC_SUPER_STAR; } 18745,Choco_Stick_In_Mouth,Choco Stick In Mouth,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,10,0,884,{ bonus bMaxSP,50; },{},{} 18746,Chilly_Breath,Chilly Breath,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,10,0,885,{ bonus bInt,1; },{},{} @@ -9214,20 +9484,20 @@ 18749,Majoruros_Horn,Majoruros Horn,4,20,,500,,8,,1,0xFFFFFFFF,63,2,256,,0,1,888,{ bonus bStr,2; bonus bMaxHP,100; },{},{} 18750,Poker_Card_In_Mouth,Poker Card In Mouth,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,10,0,889,{ bonus2 bAddRace,RC_DemiHuman,2; },{},{} 18753,Tw_Rice_Ball,Tw Rice Ball,4,20,,100,,6,,0,0xFFFFFFFF,63,2,256,,0,0,892,{ bonus bLuk,1; bonus2 bAddMonsterDropItem,564,100; },{},{} -18754,Blood_Sucker,Blood Sucker,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,40,0,893,{ bonus bUnbreakableHelm,0; bonus2 bHpDrainRate,30,5; bonus bHPrecovRate,-100; bonus bSPrecovRate,-100; },{},{} +18754,Blood_Sucker,Blood Sucker,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,40,0,893,{ bonus bUnbreakableHelm,1; bonus2 bHPDrainRate,30,5; bonus bHPrecovRate,-100; bonus bSPrecovRate,-100; },{},{} +18755,Feather_Beret_,Feather Beret,4,0,,600,,1,,1,0xFFFFFFFF,63,2,256,1,1,1,224,{ bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; },{},{} 18756,Black_Shiba_Inu_Hat,Black Shiba Inu Hat,4,20,,400,,6,,1,0xFFFFFFFF,63,2,256,,50,1,894,{ bonus bBaseAtk,30; bonus2 bAddRace,RC_Brute,10; },{},{} 18758,Hat_Of_Scrat,Hat Of Scrat,4,20,,200,,3,,1,0xFFFFFFFF,63,2,256,,0,1,896,{},{},{} -18759,Stretched_Nose_M,Wood Goblin's Nose,4,20,,200,,0,,0,0xFFFFFFFF,63,2,512,,50,0,737,{ bonus bUnbreakableHelm,0; bonus2 bAddMonsterDropItem,1032,400; bonus2 bAddMonsterDropItem,1033,100; bonus3 bAddMonsterDropItem,576,RC_Plant,40; },{},{} -// -18760,Remodel_Wizardry_Hat,Improved Mage Hat,4,20,,300,,2,,1,0x00810204,63,2,256,,0,1,112,{ bonus bInt,2; bonus bMaxSP,150; set .@r,getrefine(); bonus bMatk,.@r; if(.@r>=7) bonus bInt,.@r-6; },{},{} -18761,Remodel_Magician_Hat,Improved Magician Hat,4,20,,500,,6,,1,0x00818314,63,2,256,,50,1,130,{ bonus bDex,1; bonus bAgi,1; bonus bMaxSP,50; set .@r,getrefine(); bonus bMaxSP,.@r*5; if(.@r>=7) bonus bDex,.@r-6; },{},{} +18759,Stretched_Nose_M,Wood Goblin's Nose,4,20,,200,,0,,0,0xFFFFFFFF,63,2,512,,50,0,737,{ bonus bUnbreakableHelm,1; bonus2 bAddMonsterDropItem,1032,400; bonus2 bAddMonsterDropItem,1033,100; bonus3 bAddMonsterDropItem,576,RC_Plant,40; },{},{} +18760,Remodel_Wizardry_Hat,Improved Mage Hat,4,20,,300,,2,,1,0x00810204,63,2,256,,0,1,112,{ bonus bInt,2; bonus bMaxSP,150; .@r = getrefine(); bonus bMatk,.@r; if(.@r>=7) bonus bInt,.@r-6; },{},{} +18761,Remodel_Magician_Hat,Improved Magician Hat,4,20,,500,,6,,1,0x00818314,63,2,256,,50,1,130,{ bonus bDex,1; bonus bAgi,1; bonus bMaxSP,50; .@r = getrefine(); bonus bMaxSP,.@r*5; if(.@r>=7) bonus bDex,.@r-6; },{},{} 18762,Remodel_Mask_Of_Fox,Improved Kitsune Mask,4,20,,300,,2,,0,0xFFFFFFFE,63,2,256,,0,1,153,{ bonus bAgi,2; bonus bLuk,2; if(getrefine()>=7) bonus bFlee2,4; },{},{} 18763,Remodel_Joker_Jester,Improved Joker Jester,4,20,,100,,3,,1,0xFFFFFFFE,63,2,256,,0,1,89,{ bonus bLuk,2; bonus bMdef,5; if(getrefine()>=7) bonus bCritAtkRate,5; },{},{} 18764,Remodel_Bunny_Band,Improved Bunny Band,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,0,1,15,{ bonus bLuk,2; if(getrefine()>=7) bonus bCritical,5; },{},{} 18765,Enhanced_Corsair,Enhanced Corsair,4,20,,500,,10,,1,0xFFFFFFFE,63,2,256,,99,1,105,{ bonus bVit,1; bonus bMaxHprate,5; .@r = getrefine(); if(.@r>=7) bonus2 bSubEle,Ele_Neutral,1; if(.@r>=9) bonus bMaxHPrate,3; },{},{} 18766,Enhanced_Helm_Of_Angel,Enhanced Helm of Angel,4,20,,1600,,10,,1,0x00CFDF80,63,2,256,,99,1,110,{ bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; .@r = getrefine(); if(.@r>=7){ bonus bAgi,2; bonus bLuk,2; } if(.@r>=9) bonus bAspd,1; },{},{} -18767,Enhanced_Helm_Of_Sun,Enhanced Hat of the Sun God,4,20,,2400,,4,,1,0x00CFDF80,63,2,768,,99,1,138,{ bonus bStr,3; bonus bInt,2; .@j = getrefine(); if(.@j>=7) set .@i,1; if(.@j>=9) set .@i,2; bonus bBaseAtk,10+(15*.@i); bonus bMatk,10+(15*.@i); },{},{} -18768,Enhanced_Bone_Helm,Enhanced Bone Helm,4,20,,800,,15,,1,0x000444A2,63,2,256,,70,1,103,{ bonus2 bSubEle,Ele_Dark,-15; .@j = getrefine(); if(.@j>=7) set .@i,1; if(.@j>=9) set .@i,2; bonus2 bSubEle,Ele_Neutral,2+(2*.@i); },{},{} +18767,Enhanced_Helm_Of_Sun,Enhanced Hat of the Sun God,4,20,,2400,,4,,1,0x00CFDF80,63,2,768,,99,1,138,{ bonus bStr,3; bonus bInt,2; .@j = getrefine(); if(.@j>=7) .@i = 1; if(.@j>=9) .@i = 2; bonus bBaseAtk,10+(15*.@i); bonus bMatk,10+(15*.@i); },{},{} +18768,Enhanced_Bone_Helm,Enhanced Bone Helm,4,20,,800,,15,,1,0x000444A2,63,2,256,,70,1,103,{ bonus2 bSubEle,Ele_Dark,-15; .@j = getrefine(); if(.@j>=7) .@i = 1; if(.@j>=9) .@i = 2; bonus2 bSubEle,Ele_Neutral,2+(2*.@i); },{},{} 18769,Remodel_Munak_Turban,Improved Munak Hat,4,20,,300,,5,,1,0xFFFFFFFF,63,2,769,,0,0,51,{ bonus2 bSubRace,RC_Undead,10; if(getrefine()>=7) bonus2 bAddRace,RC_Undead,10; },{},{} 18770,Remodel_Bongun_Hat,Improved Bongun Hat,4,20,,300,,5,,1,0xFFFFFFFF,63,2,769,,0,0,139,{ bonus2 bSubRace,RC_Demon,10; if(getrefine()>=7) bonus2 bAddRace,RC_Demon,10; },{},{} 18771,Remodel_Opera_Mask,Improved Opera Phantom Mask,4,20,,200,,2,,0,0xFFFFFFFF,63,2,512,,20,0,128,{ bonus bBaseAtk,5; bonus bMatk,5; },{},{} @@ -9236,63 +9506,66 @@ 18774,Improved_Assassin_Mask,Advanced Assassin Mask,4,20,,100,,1,,0,0x00001100,63,2,1,,70,0,180,{ bonus bCritical,1; bonus bCritAtkRate,1; },{},{} 18775,Improved_Welding_Mask,Advanced Welding Mask,4,20,,300,,2,,0,0x00040420,63,2,513,,50,0,79,{ bonus2 bSubEle,Ele_Fire,10; bonus bDex,5; bonus bLuk,5; },{},{} 18776,Improved_Kiss_Of_Angel,Advanced Angel's Kiss,4,10000,,300,,6,,1,0x00000001,63,2,256,,99,1,255,{ bonus bSPrecovRate,30; },{},{} -18779,RWC_Champ_Crown_First_Place,RWC Champ Crown First Place,4,20,,500,,12,,1,0xFFFFFFFF,63,2,256,,1,,902,{ bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm,0; bonus bAllStats,7; bonus bMdef,5; },{},{} -18780,RWC_Champ_Crown_Second_Place,RWC Champ Crown Second Place,4,20,,500,,12,,1,0xFFFFFFFF,63,2,256,,1,,903,{ bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm,0; bonus bAllStats,7; bonus bMdef,5; },{},{} -18781,RWC_Champ_Crown_Third_Place,RWC Champ Crown Third Place,4,20,,500,,12,,1,0xFFFFFFFF,63,2,256,,1,,904,{ bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm,0; bonus bAllStats,3; bonus bMdef,1; },{},{} -18782,Butterfly_Wing_Ear_J,Butterfly Wing Ear,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,695,{ bonus bDex,2; bonus bUnbreakableHelm,0; },{},{} +18779,RWC_Champ_Crown_First_Place,RWC Champ Crown First Place,4,20,,500,,12,,1,0xFFFFFFFF,63,2,256,,1,,902,{ bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm,1; bonus bAllStats,7; bonus bMdef,5; },{},{} +18780,RWC_Champ_Crown_Second_Place,RWC Champ Crown Second Place,4,20,,500,,12,,1,0xFFFFFFFF,63,2,256,,1,,903,{ bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm,1; bonus bAllStats,7; bonus bMdef,5; },{},{} +18781,RWC_Champ_Crown_Third_Place,RWC Champ Crown Third Place,4,20,,500,,12,,1,0xFFFFFFFF,63,2,256,,1,,904,{ bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm,1; bonus bAllStats,3; bonus bMdef,1; },{},{} +18782,Butterfly_Wing_Ear_J,Butterfly Wing Ear,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,695,{ bonus bDex,2; bonus bUnbreakableHelm,1; },{},{} 18785,King_Poring_Hat,King Poring Hat,4,20,,600,,10,,1,0xFFFFFFFF,63,2,256,,10,1,905,{ bonus bDex,1; bonus bLuk,1; .@r = getrefine(); if(.@r>=3){ bonus bDex,(.@r-4); bonus bLuk,(.@r-4); } },{},{} -18786,Anemos_Mask,Anemos Mask,4,20,,200,,0,,0,0xFFFFFFFF,63,2,512,,10,0,906,{ bonus bUnbreakableHelm,0; bonus2 bMagicAtkEle,Ele_Wind,4; },{},{} +18786,Anemos_Mask,Anemos Mask,4,20,,200,,0,,0,0xFFFFFFFF,63,2,512,,10,0,906,{ bonus bUnbreakableHelm,1; bonus2 bMagicAtkEle,Ele_Wind,4; },{},{} 18790,Rainbow_Poring_Hat,Rainbow Poring Hat,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,0,1,900,{},{},{} -18791,Shrine_Maiden_Hat,Shrine Maiden Hat,4,20,,200,,30,,,0xFFFFFFFF,63,2,256,,,,908,{},{},{} +18791,Shrine_Maiden_Hat,Shrine Maiden Hat,4,20,,200,,30,,1,0xFFFFFFFF,63,2,256,,,,908,{},{},{} 18792,Indonesian_Independence_Sakkat,Indonesian Independence Sakkat,4,10,,400,,,,0,0xFFFFFFFE,63,2,256,,45,1,901,{ bonus bVit,10; bonus bAtkRate,5; bonus bMatkRate,5; bonus2 bSubRace,RC_DemiHuman,10; },{},{} -18796,RWC_Champ_Crown_Fourth_Place,RWC Champ Crown Fourth Place,4,20,,500,,12,,1,0xFFFFFFFF,63,2,256,,1,,914,{ bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm,0; bonus bAllStats,2; },{},{} -// +18796,RWC_Champ_Crown_Fourth_Place,RWC Champ Crown Fourth Place,4,20,,500,,12,,1,0xFFFFFFFF,63,2,256,,1,,914,{ bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm,1; bonus bAllStats,2; },{},{} +18803,Rose_Cascade,Rose Cascade,4,0,,500,,,,1,0xFFFFFFFF,63,2,256,,,1,920,{ .@dex = readparam(bDex); bonus bUseSPrate,-5-((.@dex >= 120)?5:0)-((.@dex >= 100)?5:0); },{},{} 18805,Eclipse_Hat,Eclipse Hat,4,20,,300,,2,,0,0xFFFFFFFF,63,2,256,,0,1,922,{ bonus bLuk,3; bonus bMdef,5; },{},{} 18806,Black_Rabbit_Hat,Black Rabbit Hat,4,20,,300,,2,,1,0xFFFFFFFF,63,2,256,,0,1,923,{ bonus bDex,2; bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10; },{},{} 18807,Yellow_Yuzu_Hat,Yellow Yuzu Hat,4,20,,400,,3,,1,0xFFFFFFFE,63,2,256,,0,1,924,{ bonus bVit,2; bonus bLuk,3; bonus2 bSubRace,RC_Plant,10; },{},{} 18808,Wing_Form_Spectacle,Wing Form Spectacle,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,925,{ bonus bAgi,1; },{},{} -18810,Hell_Pumpkin_Hat,Hell Pumpkin Hat,4,20,,500,,12,,0,0xFFFFFFFF,63,2,256,,0,1,717,{ bonus bMdef,12; bonus2 bSubRace,6,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus2 bSubRace,RC_Undead,-5; },{},{} +18810,Hell_Pumpkin_Hat,Hell Pumpkin Hat,4,20,,500,,12,,0,0xFFFFFFFF,63,2,256,,0,1,717,{ bonus bMdef,12; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{} 18813,New_Wave_Sunglasses,New Wave Sunglasses,4,10,,100,,,,0,0xFFFFFFFF,63,2,512,,30,,856,{ bonus bDelayrate,-10; },{},{} 18814,Angel_School_Cap,Angel School Cap,4,20,,100,,4,,1,0xFFFFFFFE,63,2,256,,0,1,927,{ bonus bInt,2; bonus bVit,1; },{},{} 18815,Devil_School_Cap,Devil School Cap,4,20,,100,,4,,1,0xFFFFFFFE,63,2,256,,0,1,928,{ bonus bStr,2; bonus bVit,1; },{},{} 18816,Adv_Angel_School_Cap,Evoked Angel School Cap,4,20,,100,,4,,1,0xFFFFFFFE,63,2,256,,0,1,929,{ bonus bInt,2; bonus bVit,2; bonus bLuk,1; },{},{} 18817,Adv_Devil_School_Cap,Evoked Devil School Cap,4,20,,100,,4,,1,0xFFFFFFFE,63,2,256,,0,1,930,{ bonus bStr,2; bonus bVit,2; bonus bLuk,1; },{},{} -18818,Red_Pencil_In_Mouth,Red Pencil In Mouth,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,931,{ bonus bUnbreakableHelm,0; bonus bHit,3; },{},{} -18819,Blue_Pencil_In_Mouth,Red Pencil In Mouth,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,932,{ bonus bUnbreakableHelm,0; bonus bHit,3; },{},{} +18818,Red_Pencil_In_Mouth,Red Pencil In Mouth,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,931,{ bonus bUnbreakableHelm,1; bonus bHit,3; },{},{} +18819,Blue_Pencil_In_Mouth,Blue Pencil In Mouth,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,932,{ bonus bUnbreakableHelm,1; bonus bHit,3; },{},{} 18820,Black_As_Night_Helmet,Black As Night Helmet,4,10,,450,,35,,1,0xFFFFFFFF,63,2,256,,120,1,941,{ bonus2 bSubEle,Ele_Holy,3+getrefine()*2; },{},{} 18821,Rainbow_Feather_Deco,Rainbow Feather Deco,4,20,,300,,5,,1,0xFFFFFFFF,63,2,256,,1,1,934,{ bonus bAtkRate,1; bonus bMatkRate,1; },{},{} 18823,Imperial_Feather,Imperial Feather,4,10,,500,,,,0,0xFFFFFFFF,63,2,512,,70,1,935,{ bonus bAspdRate,1; bonus2 bSubEle,Ele_Wind,5; if(readparam(bAgi)>108){ bonus bAspd,1; bonus bAspdRate,1; } },{},{} -18828,2012RMSCNO1,2013 RWC Winners Helmet,4,1000,,1000,,20,,1,0xFFFFFFFF,63,2,256,,60,1,942,{ bonus bAllStats,5; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm,0; },{},{} -18829,2012RMSCNO2,2013 RWC Runners-Up Helmet,4,1000,,1000,,20,,1,0xFFFFFFFF,63,2,256,,60,1,943,{ bonus bAllStats,4; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm,0; },{},{} -18830,2012RMSCNO3,2013 RWC 3rd Helmet,4,1000,,1000,,20,,1,0xFFFFFFFF,63,2,256,,60,1,944,{ bonus bAllStats,3; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm,0; },{},{} -18831,2012RMSCNO4,2012RMSCNO4,4,0,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,0,945,{ bonus bAllStats,2; bonus bMdef,5; bonus bSpeedAddRate,10; },{},{} +18827,Valkyrie_Circlet,Valkyrie Circlet,4,0,,300,,10,,1,0xFFFFFFFF,63,2,256,,,1,940,{ bonus bStr,1; bonus2 bAddEle,Ele_Dark,10; bonus2 bAddRace,RC_Demon,10; },{},{} +18828,2012RMSCNO1,2012 RWC Winners Helmet,4,1000,,1000,,20,,1,0xFFFFFFFF,63,2,256,,60,1,942,{ bonus bAllStats,5; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm,1; },{},{} +18829,2012RMSCNO2,2012 RWC Runners-Up Helmet,4,1000,,1000,,20,,1,0xFFFFFFFF,63,2,256,,60,1,943,{ bonus bAllStats,4; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm,1; },{},{} +18830,2012RMSCNO3,2012 RWC 2nd Runner Helmet,4,1000,,1000,,20,,1,0xFFFFFFFF,63,2,256,,60,1,944,{ bonus bAllStats,3; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm,1; },{},{} +18831,2012RMSCNO4,2012 RWC Special Helmet,4,0,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,0,945,{ bonus bAllStats,2; bonus bMdef,5; bonus bSpeedAddRate,10; },{},{} 18832,Rolf_Von_Gigue_666,Rolf Von Gigue 666,4,20,,300,,0,,0,0xFFFFFFFF,63,2,256,,0,1,946,{ bonus3 bAutoSpell,"BS_ADRENALINE",2,5; },{},{} 18839,Poring_Sunglasses,Poring Sunglasses,4,0,,100,,10,,1,0xFFFFFFFF,63,2,512,,1,0,954,{ bonus bDex,1; },{},{} -18841,Small_Poring_Band,Small Poring Band,4,20,,350,,8,,1,0xFFFFFFFF,63,2,256,,0,1,955,{ set .@i,getrefine(); if(.@i>2) set .@rate,.@rate+2; if(.@i>5) set .@rate,.@rate+2; if(.@i>8) set .@rate,.@rate+2; if(.@i>11) set .@rate,.@rate+2; if(.@i>14) set .@rate,.@rate+2; if(.@i>17) set .@rate,.@rate+2; if(.@rate) bonus bAspdRate,.@rate; if(.@i>9) bonus bAspd,1; bonus2 bExpAddRace,RC_All,3; },{},{} -18842,Hat_Of_Girl,Hat Of Girl,4,20,,350,,8,,1,0xFFFFFFFF,63,2,256,,0,1,956,{ set .@i,getrefine(); if(.@i>2) set .@rate,.@rate+2; if(.@i>5) set .@rate,.@rate+2; if(.@i>8) set .@rate,.@rate+2; if(.@i>11) set .@rate,.@rate+2; if(.@i>14) set .@rate,.@rate+2; if(.@i>17) set .@rate,.@rate+2; if(.@rate) bonus bInt,.@rate; bonus2 bSubRace,RC_DemiHuman,7; bonus bMaxHPrate,-3; },{},{} +18841,Small_Poring_Band,Small Poring Band,4,20,,350,,8,,1,0xFFFFFFFF,63,2,256,,0,1,955,{ .@r = getrefine(); bonus bAspdRate,2*(.@r/3); if(.@r>9) bonus bAspd,1; bonus2 bExpAddRace,RC_All,3; },{},{} +18842,Hat_Of_Girl,Hat Of Girl,4,20,,350,,8,,1,0xFFFFFFFF,63,2,256,,0,1,956,{ .@r = getrefine(); bonus bInt,2*(.@r/3); bonus2 bSubRace,RC_DemiHuman,7; bonus bMaxHPrate,-3; },{},{} 18843,Small_Deviling_Hat,Small Deviling Hat,4,20,,350,,7,,1,0xFFFFFFFF,63,2,256,,0,1,957,{ .@r = getrefine(); if(.@r>7) bonus bMaxHPrate,.@r-7; bonus2 bSubRace,RC_DemiHuman,5; },{},{} -18844,Blue_Poring_Bubble,Blue Poring Bubble,4,20,,50,,5,,0,0xFFFFFFFF,63,2,1,,0,0,958,{ bonus bAllStats,2; bonus bUnbreakableHelm,0; bonus bFlee,20; },{},{} -18845,Banshee_Master_Kiss,Banshee Master Kiss,4,20,,200,,5,,0,0xFFFFFFFF,63,2,1,,0,0,959,{ bonus bUnbreakableHelm,0; bonus bMaxSPrate,3; autobonus2 "{ bonus2 bSubRace,RC_DemiHuman,100; bonus2 bSubRace,RC_Player,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} +18844,Blue_Poring_Bubble,Blue Poring Bubble,4,20,,50,,5,,0,0xFFFFFFFF,63,2,1,,0,0,958,{ bonus bAllStats,2; bonus bUnbreakableHelm,1; bonus bFlee,20; },{},{} +18845,Banshee_Master_Kiss,Banshee Master Kiss,4,20,,200,,5,,0,0xFFFFFFFF,63,2,1,,0,0,959,{ bonus bUnbreakableHelm,1; bonus bMaxSPrate,3; autobonus2 "{ bonus2 bSubRace,RC_DemiHuman,100; bonus2 bSubRace,RC_Player,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} 18848,Fresh_Roses,Fresh Roses,4,10,,200,0:20,0,,1,0xFFFFFFFF,63,2,256,,1,1,963,{ bonus bMagicHPGainValue,100; bonus bMagicSPGainValue,100; },{},{} 18849,Celine_Ribbon,Celine Ribbon,4,10,,200,,,,1,0xFFFFFFFF,63,2,256,,1,1,967,{ bonus bDex,3; bonus bMatk,40+getrefine(); bonus bMagicHPGainValue,200; bonus2 bHPLossRate,50,5000; },{},{} -18850,Polar_Bear_Cap,Polar Bear Cap,4,20,,300,,7,,0,0xFFFFFFFF,63,2,256,,1,0,966,{ bonus bUnbreakableHelm,0; bonus bDex,1; bonus bAgi,1; bonus bMdef,3; bonus bHPrecovRate,5; bonus bSPrecovRate,3; bonus2 bAddMonsterDropItem,12354,100; },{},{} -18851,C_Polar_Bear_Cap,Costume Polar Bear Cap,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,1,966,{},{},{} +18850,Polar_Bear_Cap,Polar Bear Cap,4,20,,300,,7,,0,0xFFFFFFFF,63,2,256,,1,0,966,{ bonus bUnbreakableHelm,1; bonus bDex,1; bonus bAgi,1; bonus bMdef,3; bonus bHPrecovRate,5; bonus bSPrecovRate,3; bonus2 bAddMonsterDropItem,12354,100; },{},{} +//18851,C_Polar_Bear_Cap,Costume Polar Bear Cap,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,1,966,{ /*Is this correct item?*/ },{},{} +18851,Valentine_Heart,Valentine Heart,4,20,,0,,,,0,0xFFFFFFFF,63,2,256,,1,1,397,{ bonus bMaxHPrate,5+(getrefine()/2); bonus bAllStats,7; },{},{} +18854,Yellow_Valentine_Heart,Yellow Valentine Heart,4,20,,0,,,,0,0xFFFFFFFF,63,2,256,,1,1,865,{ bonus bMaxSPrate,2+(getrefine()/2); bonus bAllStats,7; },{},{} 18855,Aviator_Hat,Aviator Hat,4,10,,100,,10,,0,0xFFFFFFFF,63,2,256,,1,1,972,{ bonus bAgi,3; bonus bInt,3; autobonus "{ bonus bAtkEle,Ele_Wind; }",500,180,BF_NORMAL; },{},{} -18856,W_King_Tiger_Doll_Hat,W King Tiger Doll Hat,4,10,,0,,10,,0,0xFFFFFFFF,63,2,256,,1,1,973,{ bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,10; /*There is transform possibility becomes Eddga*/ },{},{} -18857,Curupira_Hat,Curupira Hat,4,10,,100,,20,,0,0xFFFFFFFF,63,2,256,,1,1,974,{ bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,10; /*Transform to be Eddga when attacking or receiving damage. Drains 5 SP each secs. Success chance by refine value.*/ },{},{} -18859,Angeling_Bubble,Angeling Bubble,4,10,,50,,5,,0,0xFFFFFFFF,63,2,1,,1,,975,{ bonus bDex,1; bonus bMatkRate,2; bonus bMaxHP,100; },{},{} -18861,Zaha_Doll_J_Hat,Zaha Doll J Hat,4,10,,100,,,,0,0xFFFFFFFF,63,2,256,,50,1,461,{ bonus bHealPower,15; bonus bUseSPrate,15; },{},{} -18863,Exorcist_Robe,Exorcist Robe,4,10,,1700,,57,,0,0xFFFFFFFF,63,2,16,,60,1,,{ bonus bMdef,5; .@r = getrefine(); if (.@r >= 3) { bonus2 bAddRace,RC_Undead,.@r/3*5; } if (BaseClass==Job_Acolyte) bonus2 bAddRace,RC_Undead,10; },{},{} +18856,W_King_Tiger_Doll_Hat,W King Tiger Doll Hat,4,10,,0,,10,,0,0xFFFFFFFF,63,2,256,,1,1,973,{ bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,10; .@r = getrefine(); autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*.@r; }",3*.@r,3000,BF_NORMAL,"{ transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Traaaansformation-!! Eddga form!!\"; }"; autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*.@r; }",.@r,3000,BF_NORMAL,"{ transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Traaaansformation-!! Eddga form!!\"; }"; },{},{} +18857,Curupira_Hat,Curupira Hat,4,10,,100,,20,,1,0xFFFFFFFF,63,2,256,,1,1,974,{ bonus bDex,3; bonus2 bAddEffWhenHit,Eff_Confusion,500; },{},{} +18859,Angeling_Bubble,Angeling Bubble,4,10,,50,,5,,0,0xFFFFFFFF,63,2,1,,1,,976,{ bonus bDex,1; bonus bMatkRate,2; bonus bMaxHP,100; },{},{} +18861,Zaha_Doll_J_Hat,Zaha Doll J Hat,4,10,,100,,,,1,0xFFFFFFFF,63,2,256,,50,1,461,{ bonus bHealPower,15; bonus bUseSPrate,15; },{},{} +18863,Exorcist_Robe,Exorcist Robe,4,10,,1700,,57,,1,0xFFFFFFFF,63,2,16,,60,1,,{ bonus bMdef,5; .@r = getrefine(); if (.@r >= 3) { bonus2 bAddRace,RC_Undead,.@r/3*5; } if (BaseClass==Job_Acolyte) bonus2 bAddRace,RC_Undead,10; },{},{} 18864,Earth_Goddess_Flower,Earth Goddess Flower,4,10,,250,,6,,0,0xFFFFFFFF,63,2,256,,1,1,864,{ bonus2 bAddEle,Ele_Earth,15; skill "WZ_EARTHSPIKE",5; },{},{} -18865,Sword_Master_Crown,Sword Master Crown,4,10,,1000,,30,,0,0xFFFFFFFF,63,2,256,,50,1,981,{ if (BaseLevel > 150) { bonus bBaseAtk,15; } else if (BaseLevel > 100) { bonus bBaseAtk,10; } else if (BaseLevel > 50) { bonus bBaseAtk,5; } /*TODO, other bonuses*/ },{},{} +18865,Sword_Master_Crown,Sword Master Crown,4,10,,1000,,30,,1,0xFFFFFFFF,63,2,256,,50,1,981,{ .@i = BaseLevel; bonus bBaseAtk,(.@i>150)?(15):((.@i>100)?(10):((.@i>50)?(5):(0))); if(getskilllv("SM_SWORD")==10) bonus bHit,10; if(getskilllv("SM_TWOHAND")==10) bonus bUseSPrate,-5; if(getskilllv("AM_AXEMASTERY")==10) bonus bVariableCastrate,-5; if(getskilllv("AS_KATAR")==10) bonus bCritAtkRate,20; if(getskilllv("PR_MACEMASTERY")==10) bonus bAspdRate,10; },{},{} 18868,Assassin_Skull_Mask,Assassin Skull Mask,4,10,,500,,2,,0,0xFFFFFFFF,63,2,513,,70,,984,{ bonus bCritical,5; },{},{} 18870,Very_Sweet_Candy_Bar,Very Sweet Candy Bar,4,10,,10,,,,0,0xFFFFFFFF,63,2,1,,1,1,446,{ bonus bAllStats,2; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bExpAddClass,Class_All,2; },{},{} 18871,Very_Sweet_Candy,Very Sweet Candy,4,10,,10,,,,0,0xFFFFFFFF,63,2,1,,1,1,446,{ bonus bAllStats,1; bonus bBaseAtk,5; bonus bMatk,5; },{},{} -18872,Snake_Hat,Snake Hat,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,0,1,986,{ bonus bStr,3; bonus bInt,3; bonus bMdef,5; bonus bUnbreakableHelm,0; },{},{} +18872,Snake_Hat,Snake Hat,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,0,1,986,{ bonus bStr,3; bonus bInt,3; bonus bMdef,5; bonus bUnbreakableHelm,1; },{},{} 18873,Sweet_Valentine_Out,Sweet Valentine Out,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,1,1,865,{ bonus bMaxHPrate,7; bonus bMaxSPrate,7; },{},{} 18874,Cyclops_Glasses,Cyclops Glasses,4,10,,100,,,,1,0xFFFFFFFF,63,2,1,,1,1,207,{},{},{} -18878,Palace_Guard_Cap,Palace Guard Cap,4,10,,1000,,15,,0,0xFFFFFFFF,63,2,256,,50,1,991,{ .@r = getrefine(); bonus2 bAddEle,Ele_Neutral,4+.@r/6; bonus bLongAtkRate,4+.@r; bonus bUnbreakableHelm,0; },{},{} -18879,Angry_Scorpion_Hat,Angry Scorpion Hat,4,10,,100,,5,,1,0xFFFFFFFF,63,2,256,,0,1,995,{ bonus bMdef,5; },{},{} +18878,Palace_Guard_Cap,Palace Guard Cap,4,10,,1000,,15,,1,0xFFFFFFFF,63,2,256,,50,1,991,{ .@r = getrefine(); bonus2 bAddEle,Ele_Neutral,4+.@r/6; bonus bLongAtkRate,4+.@r; bonus bUnbreakableHelm,1; },{},{} +18879,Angry_Scorpion_Hat,Angry Scorpion Hat,4,10,,100,,5,,0,0xFFFFFFFF,63,2,256,,0,1,995,{ bonus bMdef,5; },{},{} 18880,Advanced_Jao_King_Hat,Advanced Jao King Hat,4,10,,1500,,4,,1,0xFFFFFFFF,63,2,256,,175,1,996,{ bonus bAllStats,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; },{},{} 18882,Kannam_On_Head,Kannam On Head,4,10,,200,,5,,0,0xFFFFFFFF,63,2,256,,20,1,1003,{ bonus3 bAutoSpellWhenHit,"SA_DELUGE",1,50; .@r = getrefine(); if (.@r > 3) bonus3 bAutoSpellWhenHit,"WZ_WATERBALL",.@r/3,50; },{},{} 18885,Jejecap,Jejecap,4,0,,100,,8,,0,0xFFFFFFFF,63,2,256,,70,1,1011,{ bonus bStr,2; bonus bInt,3; bonus2 bSubRace,RC_DemiHuman,11; bonus2 bSubRace,RC_Player,11; bonus2 bAddItemHealRate,522,70; },{},{} @@ -9307,23 +9580,27 @@ 18895,Celestial_Dark_Flame,Celestial Dark Flame,4,0,,200,,5,,0,0xFFFFFFFF,63,2,512,,50,0,1008,{ bonus2 bSubEle,Ele_Fire,8; },{},{} 18896,Pterios_Fins,Pterios Fins,4,0,,200,,5,,0,0xFFFFFFFF,63,2,512,,50,0,1009,{ bonus2 bSubEle,Ele_Fire,8; },{},{} 18897,Azure_Diadem,Azure Diadem,4,0,,200,,5,,0,0xFFFFFFFF,63,2,512,,50,0,1010,{ bonus2 bSubEle,Ele_Water,8; },{},{} -18898,Yggdrasil_Herald_Crown,Yggdrasil Herald Crown,4,0,,200,,6,,1,0xFFFFFFFF,63,2,256,,60,1,746,{ bonus bAllStats,5; bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine(); set .@rate,((.@r<7)?7:.@r)-7; if(.@rate>0){ bonus bMaxHPrate,.@rate; bonus bVariableCastrate,-.@rate; } },{},{} +18898,Yggdrasil_Herald_Crown,Yggdrasil Herald Crown,4,0,,200,,6,,1,0xFFFFFFFF,63,2,256,,60,1,997,{ bonus bAllStats,5; bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine(); .@rate = ((.@r<7)?7:.@r)-7; if(.@rate){ bonus bMaxHPrate,.@rate; bonus bVariableCastrate,-.@rate; } },{},{} 18900,Weisswurst,Weisswurst,4,20,,100,,1,,0,0xFFFFFFFF,63,2,1,,60,0,1022,{ bonus bMaxHP,50; },{},{} 18901,Seppl_Hat,Seppl Hat,4,20,,500,,5,,1,0xFFFFFFFF,63,2,256,,60,0,1023,{ bonus bVit,3; bonus bHPrecovRate,10; },{},{} 18902,Shovel_Hat,Shovel Hat,4,0,,500,,0,,0,0xFFFFFFFF,63,2,256,,50,0,1024,{ bonus bVit,3; bonus2 bAddMonsterDropItem,553,500; bonus2 bAddItemHealRate,553,700; },{},{} -18908,Isabella_Red_Ear,Isabella Red Ear,4,10,,300,,8,,0,0xFFFFFFFF,63,2,256,,1,1,1030,{ bonus bStr,5; bonus bMaxHPrate,5; bonus2 bSubEle,Ele_Fire,10; .@r = getrefine(); if (.@r >= 9) bonus bAspd,.@r-8; },{},{} -18909,Isabella_Brown_Ear,Isabella Brown Ear,4,10,,300,,8,,0,0xFFFFFFFF,63,2,256,,1,1,1031,{ bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus bMatk,getrefine()*2; },{},{} -18910,Isabella_Blue_Ear,Isabella Blue Ear,4,10,,300,,8,,0,0xFFFFFFFF,63,2,256,,1,1,1032,{ bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bAddSize,Size_Medium,10; if(getrefine()>=12){ bonus bShortWeaponDamageReturn,5; } },{},{} -18917,LoveLove_Balloon,LoveLove Balloon,4,10,,200,,5,,0,0xFFFFFFFF,63,2,1,,1,0,1039,{ bonus bAllStats,1; bonus bUnbreakableHelm,0; },{},{} -18918,Long_Octopus_Balloon,Long Octopus Balloon,4,10,,200,,5,,0,0xFFFFFFFF,63,2,1,,1,,1040,{ bonus bVit,1; bonus bInt,1; bonus bMaxSP,30; bonus bUnbreakableHelm,0; },{},{} -// -18929,Elephant_Model_Hat,Elephant Model Hat,4,10,,300,,10,,0,0xFFFFFFFF,63,2,256,,30,0,1065,{ .@r = getrefine(); bonus bDex,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0)); bonus3 bAutoSpellWhenHit,"WZ_STORMGUST",5,50; },{},{} -18930,Gorilla_Model_Hat,Gorilla Model Hat,4,10,,300,,10,,0,0xFFFFFFFF,63,2,256,,30,1,1066,{ bonus bStr,2+((getrefine()>=11) ? 3 : 0); bonus3 bAutoSpell,"KN_BOWLINGBASH",1,50; },{},{} -18931,Lion_Model_Hat,Lion Model Hat,4,10,,300,,10,,0,0xFFFFFFFF,63,2,256,,30,1,1067,{ .@r = getrefine(); bonus bInt,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0)); bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,50; },{},{} -18932,Rhino_Model_Hat,Rhino Model Hat,3,10,,300,,,,0,0xFFFFFFFF,63,2,,,,,,{ .@r = getrefine(); bonus bVit,2+((.@r >= 11) ? (.@r/11) : 0); bonus3 bAutoSpellWhenHit,"WZ_VERMILION",1,50; },{},{} +18908,Isabella_Red_Ear,Isabella Red Ear,4,10,,300,,8,,1,0xFFFFFFFF,63,2,256,,1,1,1030,{ bonus bStr,5; bonus bMaxHPrate,5; bonus2 bSubEle,Ele_Fire,10; .@r = getrefine(); if (.@r >= 9) bonus bAspd,.@r-8; },{},{} +18909,Isabella_Brown_Ear,Isabella Brown Ear,4,10,,300,,8,,1,0xFFFFFFFF,63,2,256,,1,1,1031,{ bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; bonus bMatk,getrefine()*2; },{},{} +18910,Isabella_Blue_Ear,Isabella Blue Ear,4,10,,300,,8,,1,0xFFFFFFFF,63,2,256,,1,1,1032,{ bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bAddSize,Size_Medium,10; if(getrefine()>=12){ bonus bShortWeaponDamageReturn,5; } },{},{} +18917,LoveLove_Balloon,LoveLove Balloon,4,10,,200,,5,,0,0xFFFFFFFF,63,2,1,,1,0,1039,{ bonus bAllStats,1; bonus bUnbreakableHelm,1; },{},{} +18918,Long_Octopus_Balloon,Long Octopus Balloon,4,10,,200,,5,,0,0xFFFFFFFF,63,2,1,,1,,1040,{ bonus bVit,1; bonus bInt,1; bonus bMaxSP,30; bonus bUnbreakableHelm,1; },{},{} +18925,GodOfWinds_Fan,GodOfWinds Fan,4,0,,300,,,,0,0xFFFFFFFF,63,2,1,,,0,1051,{ bonus2 bSkillAtk,"WZ_VERMILION",3; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",3; bonus bUseSPrate,5; },{},{} +18929,Elephant_Model_Hat,Elephant Model Hat,4,10,,300,,10,,1,0xFFFFFFFF,63,2,256,,30,0,1065,{ .@r = getrefine(); bonus bDex,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0)); bonus3 bAutoSpellWhenHit,"WZ_STORMGUST",5,50; },{},{} +18930,Gorilla_Model_Hat,Gorilla Model Hat,4,10,,300,,10,,1,0xFFFFFFFF,63,2,256,,30,1,1066,{ bonus bStr,2+((getrefine()>=11) ? 3 : 0); bonus3 bAutoSpell,"KN_BOWLINGBASH",1,50; },{},{} +18931,Lion_Model_Hat,Lion Model Hat,4,10,,300,,10,,1,0xFFFFFFFF,63,2,256,,30,1,1067,{ .@r = getrefine(); bonus bInt,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0)); bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,50; },{},{} +18932,Rhino_Model_Hat,Rhino Model Hat,4,10,,300,,10,,1,0xFFFFFFFF,63,2,256,,30,1,1068,{ .@r = getrefine(); bonus bVit,2+((.@r >= 11) ? (.@r/11) : 0); bonus3 bAutoSpellWhenHit,"WZ_VERMILION",1,50; },{},{} +18934,Fox_Ears_Bell_Ribbon,Fox Ears Bell Ribbon,4,0,,400,,4,,0,0xFFFFFFFF,63,2,256,,,1,1070,{ bonus bAgi,2; .@r = getrefine(); autobonus "{ bonus bCritical,100; bonus bLongAtkRate,5+(.@r > 6 ? .@r : 0); }",50+(.@r*2),5000,BF_NORMAL,"{ transform 1150,5000; }"; },{},{} 18936,Golden_Fish,Golden Fish In Mouth,4,1,,10,,1,,0,0xFFFFFFFF,63,2,1,,1,0,1081,{ bonus bAllStats,2; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bExpAddRace,RC_Fish,2; bonus2 bSubRace,RC_Fish,2; },{},{} +18937,Memories_Of_Lovers,Memories Of Lovers,4,0,,100,,,,0,0xFFFFFFFF,63,2,512,,,1,1072,{ bonus bMdef,7; bonus bMaxHPrate,2; },{},{} +18938,Astro_Circle,Astro Circle,4,0,,300,,1,,0,0xFFFFFFFF,63,2,256,,,1,1073,{ bonus bInt,1; .@r = getrefine(); .@t = (.@r > 6 ? (.@r*2) : -((.@r/3*5))); bonus2 bSubSkill,"WZ_METEOR",20+.@t; bonus2 bSubSkill,"WL_CRIMSONROCK",20+.@t; bonus2 bSubSkill,"WL_COMET",5; },{},{} 18940,10_Gallon_Hat_Of_Flame,10 Gallon Hat Of Flame,4,10,,1000,,0,,0,0xFFFFFFFF,63,2,256,,90,1,1075,{},{},{} // +18970,Magical_Moon_Cat,Magical Moon Cat,4,20,,50,,5,,1,0xFFFFFFFF,63,2,256,,,1,1308,{ /*TODO: Enables use of Level 1 Monster's Cry*/ bonus bAllStats,3; bonus bDelayrate,-5; bonus bVariableCastrate,-5-(getrefine()/2); },{},{} 18971,Old_Rune_Circlet,Old Rune Circlet,4,10,,100,,10,,1,0x00000080,56,2,256,,170,1,623,{ bonus bAllStats,1; bonus bMdef,5; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bAspd,.@r/5; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"RK_IGNITIONBREAK",20*.@r/2; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",15*.@r/2; },{},{} 18972,Old_Mitra,Old Mitra,4,10,,100,,10,,1,0x00000100,56,2,256,,170,1,624,{ bonus bAllStats,1; bonus bMdef,5; .@r = getrefine(); bonus bMatk,2*.@r; bonus bBaseAtk,4*.@r; bonus bHealPower,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"AB_JUDEX",20*.@r/2; bonus2 bSkillAtk,"PR_MAGNUS",10*.@r/2; },{},{} 18973,Old_Driver_Band,Old Driver Band,4,10,,100,,10,,1,0x00000400,56,2,256,,170,1,626,{ bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bAspd,.@r/5; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"NC_POWERSWING",20*.@r/2; bonus2 bSkillAtk,"NC_AXETORNADO",20*.@r/2; },{},{} @@ -9340,79 +9617,91 @@ 18984,Old_Camouflage_Rabbit_Hood,Old Camouflage Rabbit Hood,4,10,,100,,10,,1,0x0000800,56,2,256,,170,1,1142,{ bonus bAllStats,1; .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bLongAtkRate,.@r; bonus bFlee2,.@r/3; bonus2 bSkillAtk,"RA_CLUSTERBOMB",15*.@r/2; bonus2 bSkillAtk,"RA_WUGSTRIKE",10*.@r/2; },{},{} 18987,RWC13_Jormungandr_Hat,RWC13 Jormungandr Hat,4,20,,2500,,7,,1,0xFFFFFFFF,63,2,256,,1,0,1149,{ bonus bVariableCastrate,-5; bonus bDelayrate,-5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player,10; .@r = getrefine(); if(.@r>6){ bonus2 bAddItemHealRate,11596,20; bonus bAspd,1; } if(.@r>9){ bonus bVariableCastrate,-5; bonus bDelayrate,-5; } bonus2 bAddItemHealRate,11596,150; },{ sc_end SC_SpeedUp0; },{} 18997,Reckless_Chip,Reckless Chip,4,10,,300,,,,1,0xFFFFFFFF,63,2,256,,100,1,1201,{ bonus bHit,50; bonus bFlee,50; bonus bMaxSPrate,-50; },{},{} -19026,Aegir_Helm,Aegir Helm,4,10,,800,,10,,0,0xFFFFFFFF,63,2,256,,40,1,870,{ bonus bVit,3; },{},{} -19030,Pretty_Rabbit_Hood,Pretty Rabbit Hood,4,10,,100,,20,,0,0xFFFFFFFF,63,2,1,,1,1,1085,{ bonus bMaxHP,(15*BaseLevel); },{},{} -19033,Ancient_Decoration_Of_The_Goddess,Ancient Decoration Of The Goddess,4,10,,0,,2,,0,0xFFFFFFFF,63,2,256,,100,1,376,{},{},{} -19038,12_Anniversary_Crown_Of_Saint,12 Anniversary Crown of Saint,4,10,,120,,12,,0,0xFFFFFFFF,63,2,256,,0,1,1117,{ bonus bAllStats,2; bonus bMdef,12; },{},{} +19019,Elemental_Crown,Elemental Crown,4,0,,500,,10,,1,0xFFFFFFFF,63,2,256,,,1,1219,{ .@r = getrefine(); bonus bDex,(3 + (.@r/2)+ (readparam(bDex) > 130 ? .@r : 0)); bonus bLongAtkRate,4; },{},{} +19020,Survive_Circlet,Survive Circlet,4,0,,500,,10,,0,0xFFFFFFFF,63,2,256,,,1,1220,{ .@r = getrefine(); bonus bInt,(3 + (.@r/2)+ (BaseLevel > 130 ? .@r : 0)); bonus bMatkRate,4; },{},{} +19021,Gigant_Helm,Gigant Helm,4,0,,500,,10,,0,0xFFFFFFFF,63,2,256,,,1,1221,{ bonus bStr,3+((BaseLevel > 130) ? getrefine() : 0); bonus bAtkRate,4; },{},{} +19024,Protect_Feathers,Protect Feathers,4,0,,500,,,,0,0xFFFFFFFF,63,2,512,1,70,1,1232,{ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player,2; bonus bAspdRate,-5; .@vit = readparam(bVit); if (.@vit >= 108) { bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player,3; bonus bAspdRate,-5; } if (.@vit >= 120) { bonus bMaxHPRate,3; bonus bMdef,3; } },{},{} +19026,Aegir_Helm,Aegir Helm,4,10,,800,,10,,1,0xFFFFFFFF,63,2,256,,40,1,870,{ bonus bVit,3; },{},{} +19030,Pretty_Rabbit_Hood,Pretty Rabbit Hood,4,10,,100,,20,,1,0xFFFFFFFF,63,2,769,,1,1,1085,{ bonus bMaxHP,(15*BaseLevel); },{},{} +19031,Fallen_Angel_Blessing,Fallen Angel Blessing,4,0,,200,,1,,0,0xFFFFFFFF,63,2,512,,,1,1250,{ bonus2 bAddRace,RC_Angel,5; bonus2 bSubRace,RC_Angel,5; },{},{} +19033,Ancient_Decoration_Of_The_Goddess,Ancient Decoration Of The Goddess,4,10,,0,,2,,1,0xFFFFFFFF,63,2,256,,100,1,376,{},{},{} +19038,12_Anniversary_Crown_Of_Saint,12 Anniversary Crown of Saint,4,10,,120,,12,,1,0xFFFFFFFF,63,2,256,,0,1,1117,{ bonus bAllStats,2; bonus bMdef,12; },{},{} 19039,12_Anniversary_Elf_Ears,12 Anniversary Elf Ears,4,10,,120,,0,,0,0xFFFFFFFF,63,2,512,,0,1,875,{ bonus2 bSubRace,RC_All,4; bonus2 bSubRace,RC_Player,-4; },{},{} -// +19047,Angeling_KnitCap,Angeling KnitCap,4,0,,300,,5,,1,0xFFFFFFFF,63,2,256,,20,1,953,{ bonus2 bSPGainRace,RC_Angel,5; bonus bHPGainValue,100; .@r = getrefine(); if (.@r >= 5) { bonus2 bSubRace,RC_Angel,5+((.@r >= 7) ? 5 : 0); } },{},{} +19048,Elemental_Clothes,Elemental Clothes,4,0,,500,,45,,1,0xFFFFFFFF,63,2,16,,80,1,,{ .@r = getrefine(); bonus bLongAtkRate,2+((.@r >= 9) ? 3 : 0)+((.@r >= 7) ? 2 : 0); if (.@r >= 7) bonus bUnbreakableArmor,1; },{},{} +19051,Warrior_Moon_Cat,Warrior Moon Cat,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,1,1,1308,{ /*Enables use of Level 1 Monster's Cry*/ bonus bAllStats,3; bonus2 bHPDrainRate,40,5; bonus2 bSPDrainRate,10,2; },{},{} +19052,Sigruns_Wing,Rental Sigrun's Wing,4,10,,0,,2,,0,0xFFFFFFFF,63,2,512,,1,0,568,{ if (Class == Job_Swordman || Class == Job_Thief || Class == Job_Merchant || Class == Job_Taekwon || Class == Job_Star_Gladiator || Class == Job_Star_Gladiator2) bonus bAspd,1; else if (Class == Job_Mage || Class == Job_Acolyte || Class == Job_Ninja || Class == Job_Soul_Linker) { bonus bMatk,5; bonus bHealPower,2; } else if (Class == Job_Archer || Class == Job_Gunslinger) bonus bLongAtkRate,2; else if (Class == Job_Novice || Class == Job_SuperNovice) { bonus bMaxHP,120; bonus bMaxSP,60; } },{},{} +19053,Fighter_Moon_Cat,Fighter Moon Cat,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,1,1,1308,{ /*Enables use of Level 1 Monster's Cry*/ .@r = getrefine(); bonus bAllStats,3; bonus2 bAddEff,Eff_Stun,500+(.@r*100); },{},{} +19082,Bio_Protector,Bio Protector,4,0,,500,,3,,0,0xFFFFFFFF,63,2,512,1,50,1,1366,{ bonus bHit,10; bonus bVariableCastrate,-5; bonus bPerfectHitRate,5; },{},{} +//=================================================================== // Costume System +//=================================================================== 19500,T_Mr_Smile,T Mr Smile,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,0,0,65,{ bonus bStr,2; },{},{} -19501,T_Spinx_Helm,T Spinx Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,5120,,0,0,137,{},{},{} +19501,T_Spinx_Helm,T Spinx Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,137,{},{},{} 19502,T_Goggle,T Goggle,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,0,0,1,{},{},{} 19503,T_Munak_Hat,T Munak Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,0,0,51,{},{},{} 19504,T_Sunglasses,T Sunglasses,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,0,0,12,{},{},{} 19505,T_Cigarette,T Cigarette,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,0,0,54,{},{},{} 19506,T_Valkyrie_Feather_Band,T Valkyrie Feather Band,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,1,300,{},{},{} -19507,Clear_Sun,Clear Sun,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,654,{ bonus bUnbreakableHelm,0; },{},{} -19508,T_Gemmed_Sallet,T Gemmed Sallet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,1,0,{ bonus bUnbreakableHelm,0; },{},{} -19509,Butterfly_Wing_Ears,Butterfly Wing Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,695,{ bonus bUnbreakableHelm,0; },{},{} -19510,Nut_On_Head,Screw Stuck in Head,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,696,{ bonus bUnbreakableHelm,0; },{},{} -19511,Heart_Eye_Patch1,Heart Eye Patch 1,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,697,{ bonus bUnbreakableHelm,0; },{},{} -19512,Heart_Eye_Patch2,Heart Eye Patch 2,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,698,{ bonus bUnbreakableHelm,0; },{},{} -19513,Chicken_Beak,Chicken Bill,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,699,{ bonus bUnbreakableHelm,0; },{},{} -19514,Charlie_Beard,Charlies Beard,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,700,{ bonus bUnbreakableHelm,0; },{},{} -19515,Yellow_Hat,Yellow Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,701,{ bonus bUnbreakableHelm,0; },{},{} -19516,Singing_Bird,Singing Bird,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,702,{ bonus bUnbreakableHelm,0; },{},{} -19517,Cocks_Comb,Chicken Crest,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,703,{ bonus bUnbreakableHelm,0; },{},{} -19518,Rainbow,Rainbow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,704,{ bonus bUnbreakableHelm,0; },{},{} -19519,Lightning_Cloud,Thunderstorm Cloud,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,688,{ bonus bUnbreakableHelm,0; },{},{} -19520,Rain_Cloud,Rain Cloud,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,705,{ bonus bUnbreakableHelm,0; },{},{} -19521,Charlie_Hat,Charlies Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,706,{ bonus bUnbreakableHelm,0; },{},{} -19522,Mini_Crown1,Mini Crown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,707,{ bonus bUnbreakableHelm,0; },{},{} -19523,Donation_Ribbon,Green Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,244,{ bonus bUnbreakableHelm,0; },{},{} -19524,C_Green_Feeler,Costume Green Feeler,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,85,{ bonus bUnbreakableHelm,0; },{},{} -19525,C_Jack_A_Dandy,Costume Jack A Dandy,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,58,{ bonus bUnbreakableHelm,0; },{},{} -19526,C_Helm,Costume Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,40,{ bonus bUnbreakableHelm,0; },{},{} -19527,C_Sharp_Gear,Costume Spiky Band,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,43,{ bonus bUnbreakableHelm,0; },{},{} -19528,C_Iron_Cane,Costume Iron Cain,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,53,{ bonus bUnbreakableHelm,0; },{},{} -19529,C_Angelic_Chain,Costume Angel Wing,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,38,{ bonus bUnbreakableHelm,0; bonus bVit,1; bonus bAgi,1; },{},{} -19530,C_Wild_Rose,Costume Wild Rose,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,541,{ bonus bUnbreakableHelm,0; bonus bBaseAtk,2; bonus bMatk,2; },{},{} -19531,C_Cube_Mask,Costume Cube Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,0,0,472,{ bonus bUnbreakableHelm,0; bonus bFlee,1; },{},{} -19532,C_Red_Bunny_Band,Red Bunny Band,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,640,{ bonus bUnbreakableHelm,0; bonus bDex,1; },{},{} -19533,C_Spore_Hat,Costume Spore Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,114,{ bonus bUnbreakableHelm,0; bonus bVit,1; bonus2 bExpAddClass,Class_All,1; },{},{} -19534,C_Tha_Despero_Mask,Costume Thanatos Despero Mask,4,20,,0,,0,,0,0xFFFFFFFF,63,2,513,,1,0,693,{ bonus bAtkRate,1; bonus bMatkRate,1; bonus bHealPower,1; },{},{} -19535,C_Sinsuncho_Hat,Costume Sinsuncho Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,730,{ bonus bUnbreakableHelm,0; bonus bStr,1; bonus2 bExpAddClass,Class_All,1; },{},{} -19536,C_Rose_Corsage,Costume Rose Corsage,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,533,{ bonus bUnbreakableHelm,0; bonus bInt,1; },{},{} -19537,C_Gryphon_Hat,Costume Gryphon Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,591,{ bonus bUnbreakableHelm,0; },{},{} -19538,Full_Moon,Full Moon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,780,{ autobonus "{ bonus bMatk,50; bonus bBaseAtk,50; }",10,5000; },{},{} +19507,Clear_Sun,Clear Sun,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,654,{ bonus bUnbreakableHelm,1; },{},{} +19508,T_Gemmed_Sallet,T Gemmed Sallet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,1,0,{ bonus bUnbreakableHelm,1; },{},{} +19509,Butterfly_Wing_Ears,Butterfly Wing Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,695,{ bonus bUnbreakableHelm,1; },{},{} +19510,Nut_On_Head,Screw Stuck in Head,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,696,{ bonus bUnbreakableHelm,1; },{},{} +19511,Heart_Eye_Patch1,Heart Eye Patch 1,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,697,{ bonus bUnbreakableHelm,1; },{},{} +19512,Heart_Eye_Patch2,Heart Eye Patch 2,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,698,{ bonus bUnbreakableHelm,1; },{},{} +19513,Chicken_Beak,Chicken Bill,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,699,{ bonus bUnbreakableHelm,1; },{},{} +19514,Charlie_Beard,Charlies Beard,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,700,{ bonus bUnbreakableHelm,1; },{},{} +19515,Yellow_Hat,Yellow Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,701,{ bonus bUnbreakableHelm,1; },{},{} +19516,Singing_Bird,Singing Bird,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,702,{ bonus bUnbreakableHelm,1; },{},{} +19517,Cocks_Comb,Chicken Crest,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,703,{ bonus bUnbreakableHelm,1; },{},{} +19518,Rainbow,Rainbow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,704,{ bonus bUnbreakableHelm,1; },{},{} +19519,Lightning_Cloud,Thunderstorm Cloud,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,688,{ bonus bUnbreakableHelm,1; },{},{} +19520,Rain_Cloud,Rain Cloud,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,705,{ bonus bUnbreakableHelm,1; },{},{} +19521,Charlie_Hat,Charlies Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,706,{ bonus bUnbreakableHelm,1; },{},{} +19522,Mini_Crown1,Mini Crown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,707,{ bonus bUnbreakableHelm,1; },{},{} +19523,Donation_Ribbon,Green Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,244,{ bonus bUnbreakableHelm,1; },{},{} +19524,C_Green_Feeler,Costume Green Feeler,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,85,{ bonus bUnbreakableHelm,1; },{},{} +19525,C_Jack_A_Dandy,Costume Jack A Dandy,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,58,{ bonus bUnbreakableHelm,1; },{},{} +19526,C_Helm,Costume Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,40,{ bonus bUnbreakableHelm,1; },{},{} +19527,C_Sharp_Gear,Costume Spiky Band,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,43,{ bonus bUnbreakableHelm,1; },{},{} +19528,C_Iron_Cane,Costume Iron Cain,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,53,{ bonus bUnbreakableHelm,1; },{},{} +19529,C_Angelic_Chain,Costume Angel Wing,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,38,{ bonus bUnbreakableHelm,1; bonus bVit,1; bonus bAgi,1; },{},{} +19530,C_Wild_Rose,Costume Wild Rose,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,541,{ bonus bUnbreakableHelm,1; bonus bBaseAtk,2; bonus bMatk,2; },{},{} +19531,C_Cube_Mask,Costume Cube Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,0,0,472,{ bonus bUnbreakableHelm,1; bonus bFlee,1; },{},{} +19532,C_Red_Bunny_Band,Red Bunny Band,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,640,{ bonus bUnbreakableHelm,1; bonus bDex,1; },{},{} +19533,C_Spore_Hat,Costume Spore Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,114,{ bonus bUnbreakableHelm,1; bonus bVit,1; bonus2 bExpAddRace,RC_All,1; },{},{} +19534,C_Tha_Despero_Mask,Costume Thanatos Despero Mask,4,20,,0,,0,,0,0xFFFFFFFF,63,2,513,,1,0,693,{ bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHealPower,1; },{},{} +19535,C_Sinsuncho_Hat,Costume Sinsuncho Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,730,{ bonus bUnbreakableHelm,1; bonus bStr,1; bonus2 bExpAddRace,RC_All,1; },{},{} +19536,C_Rose_Corsage,Costume Rose Corsage,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,533,{ bonus bUnbreakableHelm,1; bonus bInt,1; },{},{} +19537,C_Gryphon_Hat,Costume Gryphon Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,591,{ bonus bUnbreakableHelm,1; },{},{} +19538,Full_Moon,Full Moon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,780,{ autobonus "{ bonus bBaseAtk,50; }",10,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; /* showscript */ }"; autobonus "{ bonus bMatk,50; }",5,5000,BF_MAGIC,"{ specialeffect2 EF_ENERGYCOAT; /* showscript */ }"; },{},{} 19539,C_Reginleif_Hairband,Costume Hairband Of Reginleif,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,468,{ bonus bAllStats,1; },{},{} 19540,C_Rabbit_Earplug,Costume Rabbit Earplugs,4,20,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,515,{ bonus bAgi,1; bonus bFlee,2; },{},{} -19541,C_Romantic_White_Flower,Costume Romantic White Flower,4,20,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,259,{ bonus bUnbreakableHelm,0; },{},{} -19542,C_Devil_Whisper,Costume Devil Whisper,4,20,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,712,{ bonus bUnbreakableHelm,0; bonus2 bSubRace,RC_Angel,1; bonus2 bSubRace,RC_Demon,1; bonus3 bAddMonsterDropItem,12020,RC_Angel,400; bonus3 bAddMonsterDropItem,523,RC_Demon,400; },{},{} -19543,Oliver_Wolf_Hood,Oliver Wolf Hood,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1024,,70,0,849,{ bonus bUnbreakableHelm,0; },{},{} -19544,C_Tare_Neko_Cru,Costume Tare Neko Cru,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,692,{ bonus bUnbreakableHelm,0; },{},{} -19545,C_Boy's_Cap,Costume Boy's Cap,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,102,{ bonus bUnbreakableHelm,0; },{},{} -19546,C_Valkyrie_Helm,Costume Valkyrie Helm,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,225,{ bonus bUnbreakableHelm,0; },{},{} -19547,C_Deviruchi_Cap,Costume Deviruchi Cap,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,123,{ bonus bUnbreakableHelm,0; },{},{} -19548,C_Frog_Cap,Costume Frog Cap,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,448,{},{ bonus bUnbreakableHelm,0; },{} -19549,C_Magestic_Goat,Costume Magestic Goat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,41,{ bonus bUnbreakableHelm,0; },{},{} -19550,C_Blush,Costume Blush,4,20,,100,,0,,0,0xFFFFFFFF,63,2,2048,,100,0,125,{ bonus bUnbreakableHelm,0; },{},{} -19551,C_Elven_Ears,Costume Elven Ears,4,20,,100,,0,,0,0xFFFFFFFF,63,2,2048,,100,0,73,{ bonus bUnbreakableHelm,0; },{},{} -19552,C_Centimental_Flower,Costume Centimental Flower,4,20,,100,,0,,0,0xFFFFFFFF,63,2,4096,,100,0,56,{ bonus bUnbreakableHelm,0; },{},{} -19553,C_Assassin_Mask_,Costume Assassin Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,4096,,100,0,180,{ bonus bUnbreakableHelm,0; },{},{} -19554,C_Hahoe_Mask_,Costume Hahoe Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,6144,,100,0,230,{ bonus bUnbreakableHelm,0; },{},{} +19541,C_Romantic_White_Flower,Costume Romantic White Flower,4,20,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,259,{ bonus bUnbreakableHelm,1; },{},{} +19542,C_Devil_Whisper,Costume Devil Whisper,4,20,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,712,{ bonus bUnbreakableHelm,1; bonus2 bSubRace,RC_Angel,1; bonus2 bSubRace,RC_Demon,1; bonus3 bAddMonsterDropItem,12020,RC_Angel,400; bonus3 bAddMonsterDropItem,523,RC_Demon,400; },{},{} +19543,Oliver_Wolf_Hood,Oliver Wolf Hood,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1024,,70,0,849,{ bonus bUnbreakableHelm,1; },{},{} +19544,C_Tare_Neko_Cru,Costume Tare Neko Cru,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,692,{ bonus bUnbreakableHelm,1; },{},{} +19545,C_Boy's_Cap,Costume Boy's Cap,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,102,{ bonus bUnbreakableHelm,1; },{},{} +19546,C_Valkyrie_Helm,Costume Valkyrie Helm,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,225,{ bonus bUnbreakableHelm,1; },{},{} +19547,C_Deviruchi_Cap,Costume Deviruchi Cap,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,123,{ bonus bUnbreakableHelm,1; },{},{} +19548,C_Frog_Cap,Costume Frog Cap,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,448,{},{ bonus bUnbreakableHelm,1; },{} +19549,C_Magestic_Goat,Costume Magestic Goat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,41,{ bonus bUnbreakableHelm,1; },{},{} +19550,C_Blush,Costume Blush,4,20,,100,,0,,0,0xFFFFFFFF,63,2,2048,,100,0,125,{ bonus bUnbreakableHelm,1; },{},{} +19551,C_Elven_Ears,Costume Elven Ears,4,20,,100,,0,,0,0xFFFFFFFF,63,2,2048,,100,0,73,{ bonus bUnbreakableHelm,1; },{},{} +19552,C_Centimental_Flower,Costume Centimental Flower,4,20,,100,,0,,0,0xFFFFFFFF,63,2,4096,,100,0,56,{ bonus bUnbreakableHelm,1; },{},{} +19553,C_Assassin_Mask_,Costume Assassin Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,4096,,100,0,180,{ bonus bUnbreakableHelm,1; },{},{} +19554,C_Hahoe_Mask_,Costume Hahoe Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,6144,,100,0,230,{ bonus bUnbreakableHelm,1; },{},{} 19573,C_Heart_Wing_Hairband,Costume Heart Wing Hairband,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,1,733,{},{},{} -19574,C_Lord_of_Death,Costume Lord of Death,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,0,1,742,{ bonus bUnbreakableHelm,0; },{},{} +19574,C_Lord_of_Death,Costume Lord of Death,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,0,1,742,{ bonus bUnbreakableHelm,1; },{},{} 19576,C_Tare_Pope,Costume Tare Pope,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,817,{},{},{} 19577,10th_Anni_Poring_Hat,10th Anni Poring Hat,4,10,,100,,1,,0,0xFFFFFFFF,63,2,1024,,1,1,874,{},{},{} 19579,C_Red_Wind_Hat,Costume Red Wind Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,613,{ bonus bHPrecovRate,20; bonus bSPrecovRate,20; },{},{} 19585,C_Feather_Beret,Costume Feather Beret,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,224,{},{},{} 19586,C_Pink_Bunny_Hair_Band,Costume Pink Bunny Hair Band,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,898,{},{},{} -19587,C_King_Poring_Hat,Costume King Poring Hat,4,0,,100,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,905,{ bonus bUnbreakableHelm,0; },{},{} +19587,C_King_Poring_Hat,Costume King Poring Hat,4,0,,100,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,905,{ bonus bUnbreakableHelm,1; },{},{} 19588,C_Cat_Hat_J,Costume Cat Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,182,{ bonus bAllStats,3; bonus2 bExpAddClass,Class_All,30; },{},{} 19589,C_Fallen_Angel_Lost_J,Costume Fallen Angel Lost,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,907,{},{},{} -19590,C_Twin_Maiden_Ribbon_J,Maiden's Twin Ribbon,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,239,{},{},{} +19590,C_Twin_Maiden_Ribbon_J,Costume Maiden's Twin Ribbon,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,239,{},{},{} 19598,C_Wandering_Wolf_Hat,Costume Wandering Wolf Hat,4,20,,600,,5,,0,0xFFFFFFFE,63,2,768,,20,0,490,{ bonus bVit,5; bonus bFlee,10; },{},{} 19599,C_Imp_Hat,Costume Imp Hat,4,20,,400,,1,,0,0xFFFFFFFF,63,2,256,,1,1,589,{ bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5; },{},{} 19600,C_Drooping_Kiehl,Costume Drooping Kiehl,4,0,,40,,,,,0xFFFFFFFF,63,2,1024,,30,,909,{},{},{} @@ -9428,10 +9717,10 @@ 19618,C_Kitsune_Mask,Costume Kitsune Mask,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,,,153,{},{},{} 19619,C_Corsair,Costume Corsair,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,0,0,105,{ bonus bVit,1; },{},{} 19620,C_Dectective_Hat,Costume Detective Hat,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,,,189,{},{},{} -19621,C_Ear_Of_Devils_Wing,Costume Evil Wing Ear,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,,,152,{},{},{} +19621,C_Ear_Of_Devils_Wing,Costume Evil Wing Ear,4,0,,0,,,,,0xFFFFFFFF,63,2,2048,,,,152,{},{},{} 19622,C_Crescent_Hairpin,Costume Crescent Hairpin,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,,,132,{},{},{} 19623,C_Bijofnil_Wings,Costume Bijofnil Wings,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,,,477,{},{},{} -19624,C_Round_Eyes,Costume Blank Eyes,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,,,185,{},{},{} +19624,C_Round_Eyes,Costume Blank Eyes,4,0,,0,,,,,0xFFFFFFFF,63,2,2048,,,,185,{},{},{} 19625,C_Bunny_Band,Costume Bunny Band,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,,,15,{},{},{} 19629,C_Tiara,Costume Tiara,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,19,{},{},{} 19630,C_Crown,Costume Crown,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,45,{},{},{} @@ -9461,22 +9750,22 @@ 19685,C_ShineSantaPoring,Costume Shining Santa Poring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,961,{},{},{} 19686,C_Santa_Doll_Headband,Costume Santa Doll Headband,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,964,{},{},{} 19687,C_Fresh_Roses,Costume Fresh Roses,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,963,{},{},{} -19689,C_Ati_Atihan,Outfit Ati Atihan,4,10,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,303,{},{},{} -19690,C_Dark_Snake_Lord_Hat,Outfit Dark Snake Lord Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,372,{},{},{} -19695,C_Kettle_Hat,Outfit Kettle Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,318,{},{},{} -19696,C_Friend_Mochiring_Hat,Outfit Friend Mochiring Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,965,{},{},{} -// -19701,C_Red_Bonnet,Costumes Red Bonnet,4,10,,100,,,,0,0xFFFFFFFF,63,2,1024,,100,1,190,{},{},{} +19689,C_Ati_Atihan,Costume Ati Atihan,4,10,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,303,{},{},{} +19690,C_Dark_Snake_Lord_Hat,Costume Dark Snake Lord Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,372,{},{},{} +19695,C_Kettle_Hat,Costume Kettle Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,318,{},{},{} +19696,C_Friend_Mochiring_Hat,Costume Friend Mochiring Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,965,{},{},{} +19697,C_Rudolph_Santa_Hat,Costume Rudolph Santa Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,919,{},{},{} +19701,C_Red_Bonnet,Costume Red Bonnet,4,10,,100,,,,0,0xFFFFFFFF,63,2,1024,,100,1,190,{},{},{} 19702,C_Twin_Pompom_By_JB,Costume Twin Pompom By JB,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,390,{},{},{} 19706,C_Red_Dress_Hat,Costume Red Dress Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,670,{},{},{} -19707,C_Polar_Bear_Cap,Costume Polar Bear Cap,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,966,{ bonus bUnbreakableHelm,0; },{},{} +19707,C_Polar_Bear_Cap,Costume Polar Bear Cap,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,966,{ bonus bUnbreakableHelm,1; },{},{} //19708,Elizabeth,Elizabeth,4,10,,0,,,,0,0xFFFFFFFF,63,2,256,,1,1,,{},{},{} 19709,C_Yellow_Ribbon,Costume Yellow Ribbon,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,310,{},{},{} 19710,C_Wings_Of_Victory,Costume Wings Of Victory,4,10,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,1,365,{},{},{} 19712,C_Little_Angel_Doll,Costume Little Angel Doll,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,344,{},{},{} 19716,C_Alice_Doll,Costume Alice Doll,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,208,{},{},{} 19719,C_Coronet,Costume Coronet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,33,{},{},{} -19721,C_Darkness_Helm,Costume Darkness Helm,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,379,{},{},{} +19721,C_Darkness_Helm,Costume Darkness Helm,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,586,{},{},{} 19724,C_Deprote_Doll_Hat,Costume Deprote Doll Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,354,{},{},{} 19729,C_Neko_Mimi_Kafra,Costume Neko Mimi Kafra,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,392,{},{},{} 19718,C_Gothic_Headdress,Costume Gothic Headdress,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,978,{},{},{} @@ -9505,19 +9794,20 @@ 19778,C_King_Berry,Costume King Berry,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,968,{},{},{} 19779,C_Persika,Costume Persika,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,659,{ bonus bAllStats,1; bonus2 bExpAddClass,Class_All,10; },{},{} 19780,C_Knit_Rabbit_Ears,Costume Knit Rabbit Ears,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,867,{ bonus bMaxHPrate,3; bonus bMaxSPrate,3; },{},{} -19781,C_Angel_Wing_Ears,Costume Angel Wing Ears,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,158,{},{},{} +19781,C_Angel_Wing_Ears,Costume Angel Wing Ears,4,10,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,1,158,{},{},{} 19782,C_Refined_Drooping_Cat,Costume Refined Drooping Cat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,142,{},{},{} 19783,C_Grampa_Beard,Costume Grampa Beard,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,25,{},{},{} 19784,C_Morrigane's_Helm,Costume Morrigane's Helm,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,257,{},{},{} -19785,C_Crunch_Toast,Costume Crunch Toast,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,188,{},{},{} +19785,C_Crunch_Toast,Costume Crunch Toast,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,1,188,{},{},{} 19786,C_Crown_of_Mistress,Costume Crown of Mistress,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,165,{},{},{} 19789,C_Sweet_Gent,Costume Sweet Gent,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,29,{},{},{} +19790,C_Wedding_Veil,Costume Wedding Veil,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,44,{},{},{} 19791,C_Alarm_Mask,Costume Alarm Mask,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,170,{},{},{} 19792,C_Goblin_Mask_01,Costume Poker Face,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,171,{},{},{} 19793,C_Goblin_Mask_02,Costume Surprised Mask,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,172,{},{},{} 19794,C_Goblin_Mask_03,Costume Annoyed Mask,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,173,{},{},{} 19795,C_Grand_Circlet,Costume Grand Circlet,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,93,{},{},{} -19796,C_Bone_Helm,Costume Bone Helm,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,401,{},{},{} +19796,C_Bone_Helm,Costume Bone Helm,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,103,{},{},{} 19797,C_Apple_of_Archer,Costume Apple of Archer,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,72,{},{},{} 19798,C_Angry_Mouth,Costume Angry Snarl,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,194,{},{},{} 19799,C_Golden_Gear,Costume Golden Gear,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,30,{},{},{} @@ -9528,6 +9818,7 @@ 19825,C_Vicious_Stop_Bandage,Costume Vicious Stop Bandage,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,1054,{},{},{} 19826,C_Ice_Wing_Ear,Costume Ice Wing Ear,4,20,,10,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,584,{},{},{} 19827,C_Amistr,Costume Amistr,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,643,{},{},{} +19828,C_Bucket_Hat,Costume Bucket Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,195,{},{},{} 19829,C_Straw_Hat,Costume Straw Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,146,{},{},{} 19830,C_Sunglasses,Costume Sunglasses,4,10,,0,,,,,0xFFFFFFFF,63,2,2048,,1,,12,{},{},{} 19831,C_Filir_Hat,Costume Filir Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,408,{},{},{} @@ -9553,6 +9844,7 @@ 19854,C_Ear_Of_Black_Cat_,Costume Black Cat Ears,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,141,{},{},{} 19856,C_Iceflake_Hat,Costume Snow Cone Hat,4,10,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1080,{ bonus2 bAddEle,Ele_Fire,5; bonus2 bMagicAddEle,Ele_Fire,5; bonus2 bAddMonsterDropItem,11589,5; },{},{} 19857,C_King_Prawn_Hat,Costume Crayfish Hat,4,10,,10,,0,,,0xFFFFFFFF,63,2,1024,,1,0,728,{},{},{} +19858,C_Smokie_Leaf,Costume Smokie Leaf,4,20,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,148,{},{},{} 19859,C_Flying_Angel,Costume Flying Angel,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,264,{},{},{} 19860,C_School_Criatura_Hat,Costume School Criatura Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,872,{},{},{} 19861,C_Heart_Hairpin,Costume Heart Hairpin,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,126,{},{},{} @@ -9564,28 +9856,33 @@ 19876,C_Bunny_Top_Hat,Costume Bunny Top Hat,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,384,{},{},{} 19878,C_Evolved_Drooping_Bunny,Costume Evolved Drooping Bunny,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,249,{},{},{} 19882,C_Flowerpot_Mask,Costume Flowerpot Mask,4,0,,0,,,,,0xFFFFFFFF,63,2,4096,,1,,1086,{},{},{} -19883,C_Cyclops_Glasses,Costume Cyclops Glasses,4,0,,0,,,,,0xFFFFFFFF,63,2,2048,,1,,1087,{},{},{} -//19883,C_Piamette_Hood, Costume Piamette Hood,,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,,{},{},{} +19883,C_Piamette_Hood, Costume Piamette Hood,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,1087,{},{},{} 19884,C_Vanargand_Helm,Costume Vanargand Helm,4,10,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,804,{},{},{} 19885,C_Blinker,Costume Blinker,4,10,,0,,,,,0xFFFFFFFF,63,2,2048,,1,,82,{},{},{} 19886,C_Purple_Glasses,Costume Purple Glasses,4,10,,0,,,,,0xFFFFFFFF,63,2,2048,,1,,26,{},{},{} 19887,C_Cyclops_Glasses,Costume Cyclops Glasses,4,10,,0,,,,,0xFFFFFFFF,63,2,2048,,1,,23,{},{},{} 19888,C_Glasses,Costume Glasses,4,10,,0,,,,,0xFFFFFFFF,63,2,2048,,1,,3,{},{},{} 19889,C_Small_Ribbons,Costume Small Ribbons,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,,169,{},{},{} -// +19902,C_Cigarette,Costume Cigarette,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,,,54,{},{},{} 19903,C_Witchs_Hat,Costume Witch's Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,717,{ bonus bVariableCastrate,-10; },{},{} +19910,C_Halloween_Hat,Costume Halloween Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,1098,{},{},{} +19913,C_Poo_Poo_Hat,Costume Poo Poo Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,76,{},{},{} 19914,C_Tarlock's_Hat,Costume Tarlock's Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1101,{},{},{} 19917,C_Gloomy_Pumpkin_Hat,Costume Pumpkin Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,691,{ bonus bSpeedRate,25; },{},{} 19918,C_Lude_Mask,Costume Lude Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,802,{ bonus bAddItemHealRate,20; },{},{} 19919,C_Cube_Mask_,Costume Quve Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,472,{ bonus bAspdRate,10; },{},{} 19920,C_Adv_Whisper_Mask,Costume Evolved Whisper Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,458,{ bonus bFlee,20; },{},{} 19922,C_Noah's_Hat,Costume Noah's Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,636,{},{},{} -19929,C_Classical_Ribbon,Costume Classical Ribbon,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,17,{},{},{} -19934,C_Lolita_Ten_Gallon_Hat,Costume Alive Ten Gallon Hat Of Flame,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1048,{},{},{} -19935,C_Hunting_Cap_Of_Gust,Costume Hunting Cap Of Gust,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,1076,{},{},{} -19936,C_Knit_Cap_Of_Water,Costume Knit Cap Of Water,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,1077,{},{},{} -19937,C_Silk_Hat_of_Earth,Costume Silk Hat of Earth,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,1078,{},{},{} -19938,C_Love_Rabbit_Hood,Costume Love Rabbit Hood,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,549,{},{},{} +19929,C_Classical_Ribbon,Costume Classical Ribbon,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,1112,{},{},{} +19931,C_Lazy_Smokie,Costume Lazy Smokie,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,,1,168,{},{},{} +19932,C_Model_Training_Hat,Costume Model Training Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,,1,157,{},{},{} +19934,C_Lolita_Ten_Gallon_Hat,Costume Alive Ten Gallon Hat Of Flame,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1075,{},{},{} +19935,C_Hunting_Cap_Of_Gust,Costume Hunting Cap Of Gust,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,1,1076,{},{},{} +19936,C_Knit_Cap_Of_Water,Costume Knit Cap Of Water,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,1,1077,{},{},{} +19937,C_Silk_Hat_of_Earth,Costume Silk Hat of Earth,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,1,1078,{},{},{} +19938,C_Love_Rabbit_Hood,Costume Love Rabbit Hood,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,1,549,{},{},{} +19941,C_Ear_Muffs,Costume Ear Muffs,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,1,70,{},{},{} +19955,C_Mini_Tree_J,Costume Mini Tree J,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,727,{},{},{} 19961,C_Rune_Circlet,Costume Rune Circlet,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,623,{},{},{} 19962,C_Mitra,Costume Mitra,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,624,{},{},{} 19963,C_Driver_Band(Red),Costume Driver Band(Red),4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,626,{},{},{} @@ -9605,6 +9902,7 @@ 19978,C_Silver_Exclamation_Mark,Costume Silver Exclamation Mark,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1146,{},{},{} 19979,C_Golden_Question_Mark,Costume Golden Question Mark,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1147,{},{},{} 19980,C_Silver_Question_Mark,Costume Silver Question Mark,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1148,{},{},{} +19982,C_Santa_Hat,Costume Santa Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,727,{},{},{} 19983,C_Flower_Hairpin,Costume Flower Hairpin,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,145,{},{},{} 19984,C_Fashion_Winter_Hat,Costume Fashion Winter Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,196,{},{},{} 19996,Horse_King,Horse King,4,10,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,,1189,{},{},{} @@ -9616,13 +9914,14 @@ 20014,C_Lincoln_Hat,Costume Lincoln Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,1204,{},{},{} 20015,C_Lincoln_Beard,Costume Lincoln Beard,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,1205,{},{},{} 20016,C_Cool_Dinner_Hat,Costume Cool Dinner Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,1206,{},{},{} +20017,C_Marionette_Doll,Costume Marionette Doll,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,212,{},{},{} 20018,C_Holo_Ear,Costume Holo Ear,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,1208,{},{},{} 20019,C_Beret_Of_Artist,Costume Beret Of Artist,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,1209,{},{},{} 20025,C_Cow_Hat1,Costume Cow Hat 1,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1211,{ bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; },{},{} 20026,C_Cow_Hat2,Costume Cow Hat 2,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1212,{ bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; },{},{} 20027,C_Cow_Hat3,Costume Cow Hat 3,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1213,{ bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; },{},{} 20028,C_Cow_Hat4,Costume Cow Hat 4,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1214,{ bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; },{},{} -20034,C_Jack_Castle_Bat,Costume Jack Castle Bat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1041,{},{},{} +20034,C_Jack_Castle_Bat,Costume Jack Castle Bat,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,1,1041,{},{},{} 20036,C_Sword_Master_Crown,Costume Sword Master Crown,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,981,{},{},{} 20038,C_Alphonse_Helmet,Costume Alphonse Helmet,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,1214,{},{},{} 20049,C_Giant_Band_Aid,Costume Giant Band Aid,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,147,{},{},{} @@ -9631,7 +9930,7 @@ 20057,C_Feather_Bonnet,Costume Feather Bonnet,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,104,{},{},{} 20053,C_W_King_Tiger_Doll_Hat,Costume White King Tiger Doll Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,973,{},{},{} 20063,C_Yellow_Brain_Hat,Costume Yellow Brain Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1228,{},{},{} -20064,C_Blue_Brain_Hat,Costume Blue Brain Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1228,{},{},{} +20064,C_Blue_Brain_Hat,Costume Blue Brain Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1229,{},{},{} 20067,C_White_Rabbit_Headband,Costume White Rabbit Headband,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,719,{},{},{} 20068,C_Black_Rabbit_Headband,Costume Black Rabbit Headband,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,718,{},{},{} 20073,C_Hair_Band,Costume Hair Band,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,9,{},{},{} @@ -9648,12 +9947,18 @@ 20095,C_Red_Ribbon,Costume Red Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,440,{},{},{} 20096,C_Blue_Ribbon,Costume Blue Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,441,{},{},{} 20097,C_White_Ribbon,Costume White Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,442,{},{},{} -20110,C_Coiledup_Snake,Costume Coiledup Snake,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,,{/*TODO: View ID*/},{},{} +20099,C_Flying_Ljosalfar,Flying Ljosalfar,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,1,1,1,1239,{},{},{} +20110,C_Coiledup_Snake,Costume Coiledup Snake,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1258,{},{},{} +20114,C_Funeral_Hat,Costume Funeral Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,77,{},{},{} 20118,C_Cake_Hat,Costume Cake Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,109,{},{},{} 20119,C_Beanie,Costume Beanie,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,160,{},{},{} 20120,C_Aerial,Costume Aerial,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,97,{},{},{} 20121,C_Flower_Lily,Costume Flower Lily,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,324,{},{},{} 20125,C_Mini_Glasses,Costume Mini Glasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,1,47,{},{},{} +20130,C_Whisper_Tall_Hat,Costume Whisper Tall Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1265,{},{},{} +20131,C_Clock_Tower_Manager,C Clock Tower Manager,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,,1,1266,{},{},{} +20132,C_Aura_Vicious_Mind,Costume Aura Vicious Mind,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,1,1267,{},{},{} +20133,C_Poring_Mascot,Costume Poring Mascot,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1268,{},{},{} 20135,C_12_Anniversary_Crown_Of_Saint,Costume 12 Anniversary Crown of Saint,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1117,{},{},{} 20136,C_12_Anniversary_Elf_Ears,Costume 12 Anniversary Elf Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,1,875,{},{},{} 20139,C_Horse_Hairpin,Costume Horse Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1271,{},{},{} @@ -9661,20 +9966,25 @@ 20145,C_Robo_Eye,Costume Robo Eye,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,1,345,{},{},{} 20146,C_Angel_Of_Ghost,Costume Angel of Ghost,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,1,394,{},{},{} 20147,C_Bell_Of_Piegon,Costume Bell of Piegon,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,1,1034,{},{},{} +20154,C_Maple_Which_Falls,C Maple Which Falls,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,,1,1275,{},{},{} +20155,C_Ladys_Feather_Hat,C Ladys Feather Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,1276,{},{},{} 20157,C_Evolved_Blue_Fish,Costume Evolved Blue Fish,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,149,{},{},{} 20158,C_Circlet,Costume Circlet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,18,{},{},{} 20159,C_Blue_Hairband,Costume Blue Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,136,{},{},{} 20160,C_Magnolia_Hat,Costume Magnolia Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,373,{},{},{} 20161,C_Army_Cap,Costume Army Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,48,{},{},{} -20162,C_Fleece_Hat,Costume Fleece Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,1,,{/*TODO: View ID*/},{},{} -20163,C_Fleece_Hat,Costume Fleece Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,1,,{/*TODO: View ID*/},{},{} +20162,C_Fleece_Hat,Costume Fleece Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,1,1277,{},{},{} +20163,C_Fleece_Hat,Costume Fleece Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,1,1278,{},{},{} +20171,C_Sepia_Cap,C Sepia Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,1280,{},{},{} 20177,C_Drooping_Dorasuke,Costume Drooping Dorasuke,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1290,{},{},{} 20179,C_Monkey_Coat_Hat,Costume Monkey Coat Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,858,{},{},{} 20180,C_Western_Grace,Costume Western Grace,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,32,{},{},{} 20181,C_Mystic_Rose,Costume Mystic Rose,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,198,{},{},{} 20182,C_Rainbow_Eggshell,Costume Rainbow Eggshell,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,124,{},{},{} -20183,C_There's..Something..,Costume There's..Something..,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,1,,{},{},{} +20183,C_There's..Something..,Costume There's..Something..,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,1,1091,{},{},{} 20184,C_Party_Hat,Costume Party Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,144,{},{},{} +20186,C_Magni's_Cap,Costume Magni's Cap,4,20,,,,,,,0xFFFFFFFF,63,2,1024,,1,1,250,{},{},{} +20195,C_Scratching_Cat,C Scratching Cat,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,,1,1292,{},{},{} 20199,C_Evil_Marcher_Hat,Costume Evil Marcher Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,687,{},{},{} 20200,C_Rabbit_Head_Dress,Costume Rabbit Head Dress,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1095,{},{},{} 20201,C_Banshee_Master_Kiss,Costume Banshee Master Kiss,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,1,959,{},{},{} @@ -9682,24 +9992,53 @@ 20203,C_Bandana,Costume Bandana,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,6,{},{},{} 20204,C_Hunter_Hat,Costume Hunter Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,389,{},{},{} 20205,C_Fancy_Flower,Costume Fancy Flower,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,4,{},{},{} -20206,C_Chicken_Hat,Costume Chicken Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,1,432,{},{},{} -20210,C_Chicken_Hat,Costume Chicken Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,1,432,{},{},{} -20211,C_Chicken_Hat,Costume Chicken Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,1,432,{},{},{} +20206,C_Chicken_Hat,Costume Chicken Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,1,1296,{},{},{} +20207,C_Striped_Hairband,Costume Striped Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,133,{},{},{} +20208,C_Neck_Tie,Costume Neck Tie,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,443,{},{},{} +20210,C_Chicken_Hat,Costume Chicken Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,1,1297,{},{},{} +20211,C_Chicken_Hat,Costume Chicken Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,1,1298,{},{},{} +20212,C_Loki_&_Nidhoggur's_Hat,Costume Loki & Nidhoggur's Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1304,{},{},{} +20218,C_Spell_Circuit,C Spell Circuit,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,1,1,1,1301,{},{},{} +20220,C_Dark_Night_Veil,Costume Dark Night Veil,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,1,1,1,1303,{},{},{} +20222,C_Blue_Pigtail_Santa_Hat,Costume Blue Pigtail Santa Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,395,{},{},{} +20223,C_Romantic_Leaf,Costume Romantic Leaf,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,1,57,{},{},{} +20224,C_Red_Tailed_Ribbon,Costume Red Tailed Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,167,{},{},{} +20225,C_Pumpkin-Head,Costume Pumpkin-Head,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,206,{},{},{} +20226,C_Red_Comb,Costume Red Comb,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,445,{},{},{} +20227,C_Puppy_Hat,Costume Puppy Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1016,{},{},{} +20228,C_Pig_MoneyBox,Costume Pig MoneyBox,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,603,{},{},{} +20230,C_Bankruptcy_Mask,Costume Bankruptcy Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,1,936,{},{},{} +20231,C_Snowman_Hat,Costume Snowman Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,616,{},{},{} +20232,C_Celines_Ribbon,Costume Celine Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,967,{},{},{} +20233,C_Golden_Angel,Costume Golden Angel,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,646,{},{},{} +20234,C_Baphomet_Hat,Costume Baphomet Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,1,1311,{ bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; bonus2 bAddItemHealRate,519,2015; },{},{} +20246,C_Decoration_Time,Costume Decoration Time,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,1,1309,{},{},{} +20247,C_Fate_Of_Black_Hand,Costume Fate Of Black Hand,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,1310,{},{},{} +20271,C_Sunflower,Costume Sunflower,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,37,{},{},{} +20272,C_Unicorn_Horn,Costume Unicorn Horn,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,1,42,{},{},{} +20315,C_Analyze_Eye,Costume Analyze Eye,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,1,1,1,1351,{},{},{} +20316,C_Seraph_Wing_Helm,Costume Seraph Wing Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,1,1,1,1352,{},{},{} +20324,C_Pigeon_Hat,Costume Pigeon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,1,1,1,1362,{},{},{} +20325,C_Little_Aquarium,Costume Little Aquarium,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,1,1,1,1363,{},{},{} // -20500,T_Archangel_Wing,Archangel Wing,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,1,{ bonus bUnbreakableHelm,0; },{},{} -20600,Fantastic_Aura,Fantastic Aura,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ /*View ID*/ bonus bUnbreakableHelm,0; },{},{} -20700,Egir_Manteau,Egir Manteau,4,200000,,300,,10,,1,0xFFFFFFFF,63,2,4,,110,1,0,{ bonus bUnbreakableHelm,0; },{},{} +20500,T_Archangel_Wing,Archangel Wing,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,1,{ bonus bUnbreakableHelm,1; },{},{} +20600,Fantastic_Aura,Fantastic Aura,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ /*TODO: View ID*/ bonus bUnbreakableHelm,1; },{},{} +20700,Egir_Manteau,Egir Manteau,4,200000,,300,,10,,1,0xFFFFFFFF,63,2,4,,110,1,0,{ bonus bUnbreakableGarment,1; .@r = getrefine(); if (.@r > 10) .@r = 10; if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) { bonus bFlee2,5+(.@r*2); } else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) { bonus bShortWeaponDamageReturn,5+(.@r*2); } },{},{} +20702,TE_Woe_Muffler,TE Woe Muffler,4,0,,0,,5,,0,0xFFFFFFFF,63,2,4,1,40,1,,{ bonus bMdef,5; bonus2 bAddRace,RC_Player,5; bonus2 bMagicAddRace,RC_Player,5; bonus2 bResEff,Eff_Freeze,25; },{},{} +20703,TE_Woe_Manteau,TE Woe Manteau,4,0,,0,,10,,0,0x000444A2,63,2,4,1,40,1,,{ bonus2 bAddRace,RC_Player,10; bonus2 bResEff,Eff_Freeze,25; },{},{} +20704,TE_Woe_Magic_Manteau,TE Woe Magic Manteau,4,0,,0,,5,,0,0x00818315,63,2,4,1,40,1,,{ bonus2 bMagicAddRace,RC_Player,10; bonus2 bResEff,Eff_Freeze,25; },{},{} 20706,Amistr_Bag,Amistr Bag,4,10,,500,,18,,0,0xFFFFFFFF,63,2,4,,1,,4,{ bonus bAllStats,1; bonus2 bSubEle,Ele_All,5; },{},{} 20707,Kirin_Wing,Kirin Wing,4,20,,0,,18,,0,0xFFFFFFFF,63,2,4,,0,1,6,{ bonus bAllStats,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player,5; },{},{} +20709,Mana_Manteau,Mana Manteau,4,0,,0,,,,0,0xFFFFFFFF,63,2,4,1,1,1,,{ bonus2 bExpAddRace,RC_All,10; },{},{} 20710,Impr_Angel's_Warmth,Advanced Angelic Cardigan,4,10000,,400,,6,,1,0x00000001,63,2,4,,99,1,0,{ bonus bHPrecovRate,50; },{},{} 20711,Manteau_Of_Diego,Manteau Of Diego,4,20,,600,,15,,1,0xFFFFFFFF,63,2,4,,0,1,0,{ bonus bInt,1; bonus bDex,1; bonus bMdef,3; },{},{} -20717,Gigant_Snake_Skin,Gigant Snake Skin,4,10,,400,,38,,0,0xFFFFFFFF,63,2,768,,1,1,16,{ /*View ID*/ bonus bMdef,10; },{},{} -20718,Gigant_Snake_Skin,Gigant Snake Skin,4,10,,400,,38,,1,0xFFFFFFFF,63,2,768,,1,1,16,{ /*View ID*/ bonus bMdef,10; },{},{} -20721,Black_As_Night_Cloak,Black As Night Cloak,4,10,,600,,45,,1,0xFFFFFFFF,63,2,768,,120,1,16,{ /*View ID*/ bonus2 bSubEle,Ele_Holy,4*getrefine()/2; },{},{} -20724,Love_Dad_Wings_2012,Love Dad Wings 2012,4,0,,100,,15,,1,0xFFFFFFFF,63,2,4,,1,1,5,{},{},{} -20725,Ribbon_Piamat,Ribbon Piamat,4,10,,100,0:10,,,0,0xFFFFFFFF,63,2,4,,30,1,7,{ bonus bInt,1; bonus bDex,1; },{},{} +20717,Gigant_Snake_Skin,Gigant Snake Skin,4,10,,400,,38,,0,0xFFFFFFFF,63,2,4,,1,1,0,{ bonus bMdef,10; },{},{} +20718,Gigant_Snake_Skin,Gigant Snake Skin,4,10,,400,,38,,1,0xFFFFFFFF,63,2,4,,1,1,0,{ bonus bMdef,10; },{},{} +20721,Black_As_Night_Cloak,Black As Night Cloak,4,10,,600,,45,,1,0xFFFFFFFF,63,2,4,,120,1,0,{ bonus2 bSubEle,Ele_Holy,5+(getrefine()/2); },{},{} +20724,Love_Dad_Wings_2012,Love Dad Wings 2012,4,0,,100,,15,,1,0xFFFFFFFF,63,2,4,,1,1,5,{ .@r = getrefine(); bonus bAllStats,1; if ((readparam(bStr)>89)) { bonus bStr,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bAgi)>89)) { bonus bAgi,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bVit)>89)) { bonus bVit,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bInt)>89)) { bonus bInt,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bDex)>89)) { bonus bDex,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bLuk)>89)) { bonus bLuk,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } },{},{} +20725,Ribbon_Piamat,Ribbon Piamat,4,10,,100,0:10,,,1,0xFFFFFFFF,63,2,4,,30,1,7,{ bonus bInt,1; bonus bDex,1; },{},{} 20727,Brilliant_Golden_Wings,Brilliant Golden Wings,4,10,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,1,5,{},{},{} -20730,Loyalists_Hood,Loyalists Hood,4,10,,200,,30,,0,0xFFFFFFFF,63,2,8192,,80,,,{ bonus bStr,2; bonus bMaxHPrate,10; bonus bNoKnockback,1; bonus2 bSubEle,Ele_All,-20; },{},{} +20730,Loyalists_Hood,Loyalists Hood,4,10,,200,,30,,1,0xFFFFFFFF,63,2,8192,,80,,,{ bonus bStr,2; bonus bMaxHPrate,10; bonus bNoKnockback,1; bonus2 bSubEle,Ele_All,-20; },{},{} 20732,STR_Complement,STR Complement,4,10,,500,,20,,1,0x00000400,56,2,4,,100,1,,{ .@r = getrefine(); bonus bMaxHPrate,6+(.@r/2); if(.@r>=9){bonus bHPrecovRate,50;} },{},{} 20733,Reinforced_Parts_Engine,Reinforced Parts - Engine,4,10,,1500,,25,,1,0x00000400,56,2,4,,100,1,,{ bonus bDelayrate,-10; .@r = getrefine(); if(.@r>=7) {bonus2 bSubEle,0,10;}; if(.@r>=9) {bonus bDelayrate,-10;} },{},{} 20737,C_Kirin_Wing,Costume Kirin Wing,4,10,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,6,{},{},{} @@ -9708,37 +10047,51 @@ 20746,C_Rudra_Wings,Costume Rudra Wings,4,10,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,8,{},{},{} 20748,Cloak_Of_Casualties,Cloak Of Casualties,4,10,,600,,20,,0,0xFFFFFFFF,63,2,4,,120,1,,{ .@r = getrefine(); bonus bAgi,5; bonus bFlee,10; if(readparam(bStr)>=90) bonus bBaseAtk,10+(.@r*2); if(readparam(bInt)>=90) bonus bMatk,20+(.@r*3); if(readparam(bVit)>=90) bonus2 bSubEle,Ele_Neutral,3+((.@r>=8)?3:0)+((.@r>=10)?4:0); if(readparam(bAgi)>=90){ bonus bAspdRate,3+(.@r/2); bonus bAspd,((.@r>=10)?1:0); } if(readparam(bDex)>=90) bonus bLongAtkRate,3+(.@r/2); if(readparam(bLuk)>=90) bonus bCriticalRate,5+.@r; },{},{} 20749,Cloak_Of_Casualties_,Cloak Of Casualties,4,10,,600,,30,,1,0xFFFFFFFF,63,2,4,,170,1,,{ .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bAgi,5; bonus bFlee,10; if(readparam(bStr)>=90) bonus bBaseAtk,10+(.@r*2); if(readparam(bInt)>=90) bonus bMatk,20+(.@r*3); if(readparam(bVit)>=90) bonus2 bSubEle,Ele_Neutral,3+((.@r>=8)?3:0)+((.@r>=10)?4:0); if(readparam(bAgi)>=90){ bonus bAspdRate,3+(.@r/2); bonus bAspd,((.@r>=10)?1:0); } if(readparam(bDex)>=90) bonus bLongAtkRate,3+(.@r/2); if(readparam(bLuk)>=90) bonus bCriticalRate,5+.@r; },{},{} -20756,Aegir_Cloak,Aegir Cloak,4,10,,300,,10,,,0xFFFFFFFF,63,2,4,,40,1,,{ bonus bUnbreakableGarment,1; bonus bMaxHP,500; bonus bMaxSP,50; },{},{} +20756,Aegir_Cloak,Aegir Cloak,4,10,,300,,10,,1,0xFFFFFFFF,63,2,4,,40,1,,{ bonus bUnbreakableGarment,1; bonus bMaxHP,500; bonus bMaxSP,50; },{},{} 20761,C_Happiness_Wings,Costume Happiness Wings,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,9,{},{},{} +//=================================================================== // More 2-Handed Swords +//=================================================================== 21000,Upg_Twohand_Sword,Upg Two-Handed Sword,5,20,,1500,100,,1,1,0x00004082,63,2,34,3,1,1,3,{ .@r = getrefine(); bonus bBaseAtk,(.@r*12); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); },{},{} 21001,Velum_Claymore,Vellum Claymore,5,20,,3500,260,,1,0,0x00004082,63,2,34,4,95,1,3,{ bonus2 bAddRace,RC_Player,80; bonus2 bIgnoreDefRaceRate,RC_Player,30; .@r = getrefine(); if(.@r>=6) { bonus2 bAddRace,RC_Player,40; } if(.@r>=9) { autobonus2 "{ bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; }",6000,2000,BF_WEAPON,"{ specialeffect2 EF_REFLECTSHIELD; }"; } },{},{} 21002,Velum_Katzbalger,Vellum Katzbalger,5,20,,2500,100,,1,0,0x00004082,63,2,34,4,95,1,3,{ bonus3 bHPVanishRaceRate,RC_Player,10000,8; },{},{} 21003,Muramasa_,Muramasa,5,20,,1000,155,,1,2,0x00004082,63,2,34,4,48,1,3,{},{},{} 21004,Alca_Bringer_,Alca Bringer,5,20,,3400,280,,2,2,0x00004082,63,2,34,3,100,1,3,{},{},{} -21005,Metal_Two_Hand_Sword,Metal Two Hand Sword,5,20,,0,95,,1,1,0x00004082,63,2,34,3,1,1,3,{ .@r = getrefine(); bonus bBaseAtk,(.@r*6); bonus bMatk,(.@r*2); set .@i,((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} -21009,Tanos_Greatsword,Tanos Greatsword,5,10,,1300,280:120,,,1,0x00004082,63,2,34,4,120,1,3,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bAtkRate,5; bonus2 bHPLossRate,100,10000; },{},{} -21010,Tw_Sword_Of_Evil_Slayer,Tw Sword Of Evil Slayer,5,10,,2000,,225,,1,0x00004080,63,2,34,3,100,1,3,{ bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9){ bonus bAtkRate,5; } if(.@r>=12){ bonus bAtkRate,7; } },{},{} -21011,Gigantic_Blade,Gigantic Blade,5,10,,5000,300,,,1,0x00004082,56,2,2,4,130,1,3,{ bonus bUnbreakableWeapon,1; bonus bAspdRate,-5; if(readparam(bStr)<=110){ bonus bBaseAtk,-250; } },{},{} -21014,Infinity_Two-Handed_Sword,Infinity Two-Handed Sword,5,20,,500,230,,1,0,0x00000002,63,2,34,4,100,1,3,{},{},{} +21005,Metal_Two_Hand_Sword,Metal Two Hand Sword,5,20,,0,95,,1,1,0x00004082,63,2,34,3,1,1,3,{ .@r = getrefine(); bonus bBaseAtk,(.@r*6); bonus bMatk,(.@r*2); .@i = ((BaseLevel/10)>12)?12:(BaseLevel/10); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} +21006,TE_Woe_Two_Hand_Sword,TE Woe Two Hand Sword,5,0,,0,150,,1,0,0x00004082,63,2,34,3,40,1,3,{ bonus2 bAddRace,RC_Player,40; bonus2 bAddEff,Eff_Bleeding,3000; },{},{} +21009,Tanos_Greatsword,Tanos Greatsword,5,10,,1300,280:120,,1,1,0x00004082,63,2,34,4,120,1,3,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bAtkRate,5; bonus2 bHPLossRate,100,10000; },{},{} +21010,Tw_Sword_Of_Evil_Slayer,Tw Sword Of Evil Slayer,5,10,,2000,,225,1,1,0x00004080,63,2,34,3,100,1,3,{ bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9){ bonus bAtkRate,5; } if(.@r>=12){ bonus bAtkRate,7; } },{},{} +21011,Gigantic_Blade,Gigantic Blade,5,10,,5000,300,,1,1,0x00004082,56,2,2,4,130,1,3,{ bonus bUnbreakableWeapon,1; bonus bAspdRate,-5; if(readparam(bStr)<=110){ bonus bBaseAtk,-250; } },{},{} +21012,Some_Wizard_MagicSword,Some Wizard MagicSword,5,0,,2200,200:150,,1,2,0x00000080,56,2,34,4,110,1,3,{},{},{} +21013,Hetairoi_Sword,Hetairoi Sword,5,0,,2200,210,,1,2,0x00000080,56,2,34,4,110,1,3,{ bonus2 bSkillUseSP,"KN_AUTOCOUNTER",2; bonus2 bSkillUseSP,"LK_PARRYING",25; },{},{} +21014,Infinity_Two-Handed_Sword,Infinity Two-Handed Sword,5,20,,500,230,,1,1,0x00000002,63,2,34,4,100,1,3,{},{},{} +21015,Crimson_Two-Handed_Sword,Crimson Two-Handed Sword,5,20,,1700,170,,1,2,0x00000002,63,2,34,3,70,1,3,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); },{},{} +21018,Lindy_Hop,Lindy Hop,5,20,,3400,340,,1,2,0x00000002,40,2,34,4,170,1,3,{ .@r = getrefine(); bonus bAtkRate,(.@r/2); bonus bAspdRate,.@r; },{},{} +21019,Onimaru,Onimaru,5,0,,4200,75,,1,2,0x00000080,56,2,34,4,130,1,3,{ .@bstr = readparam(bStr); .@r = getrefine(); bonus bBaseAtk,(.@bstr > 119 ? 120 : .@bstr); if (.@bstr > 119) bonus bBaseAtk,160; else if (.@bstr > 107) bonus bBaseAtk,80; else if (.@bstr > 94) bonus bBaseAtk,40; if (.@r > 6) bonus bUnbreakableWeapon,1; bonus4 bAutoSpell,"NPC_WIDECURSE",4,100,0; if (.@r > 8) bonus4 bAutoSpellOnSkill,"LK_BERSERK","BS_OVERTHRUST",5,100; },{},{} +//=================================================================== // New Items +//=================================================================== +22012,Mana_Boots,Mana Boots,4,0,,0,,,,0,0xFFFFFFFF,63,2,64,1,1,1,,{ bonus2 bExpAddRace,RC_All,10; },{},{} 22014,Enhanced_Variant_Shoes,Enhanced Variant Shoes,4,20,,500,,13,,1,0x7CCFDF80,63,2,64,,85,1,0,{ bonus bMaxHPrate,12; bonus bMaxSPrate,12; .@r = getrefine(); bonus bDef,.@r; bonus bMdef,.@r; },{},{} 22015,Impr_Angel's_Arrival,Advanced Angel's Reincarnation,4,10000,,300,,8,,1,0x00000001,63,2,64,,99,1,0,{ bonus bMaxHP,500; bonus bMaxSP,100; },{},{} -22018,Shoes_Of_Wise_Man,Shoes Of Wise Man,4,10,,300,,15,,0,0xFFFFFFFF,63,2,64,,50,1,,{ .@r = getrefine(); if(.@r>5){ bonus bInt,.@r-5; bonus bMaxHPrate,-(.@r-5); } },{},{} +22018,Shoes_Of_Wise_Man,Shoes Of Wise Man,4,10,,300,,15,,1,0xFFFFFFFF,63,2,64,,50,1,,{ .@r = getrefine(); if(.@r>5){ bonus bInt,.@r-5; bonus bMaxHPrate,-(.@r-5); } },{},{} 22033,Black_As_Night_Shoes,Black As Night Shoes,4,10,,0,,,,1,0xFFFFFFFF,63,2,64,,120,1,,{ bonus2 bSubEle,Ele_Holy,1+getrefine()/3; },{},{} 22035,Heoric_Nepenthes_Shoes,Heoric Nepenthes Shoes,4,10,,300,,10,,1,0xFFFFFFFF,63,2,64,,160,1,,{ .@r = getrefine(); if (.@r>=8 && .@r<=10) .@i=5+.@r; else if (.@r>=11 && .@r<=13) .@i=5+(.@r*3); else if (.@r>13) .@i=42; bonus bVariableCastrate,-10-.@i; },{},{} 22036,Heroic_Silver_Fox_Leather_Boots,Heroic Silver Fox Leather Boots,4,10,,300,,15,,1,0xFFFFFFFF,63,2,64,,160,1,,{ .@r = getrefine(); if (.@r>=8 && .@r<=13) .@i=.@r; else if (.@r>13) .@i=13; bonus bLongAtkRate,5+.@i; },{},{} 22037,Heroic_Ungoliant_Upgrade_Boots,Heroic Ungoliant Upgrade Boots,4,10,,300,,10,,1,0xFFFFFFFF,63,2,64,,160,1,,{ .@r = getrefine(); if (.@r>=8 && .@r<=13) .@i=.@r; else if (.@r>13) .@i=13; bonus bUseSPrate,-5-.@i; },{},{} -22042,Talaria_Shoes,Talaria Shoes,4,10,,300,,15,,0,0xFFFFFFFF,63,2,64,,50,1,,{ bonus bAgi,2; bonus bAspd,1; bonus bUnbreakableShoes,1; },{},{} +22042,Talaria_Shoes,Talaria Shoes,4,10,,300,,15,,1,0xFFFFFFFF,63,2,64,,50,1,,{ bonus bAgi,2; bonus bAspd,1; bonus bUnbreakableShoes,1; },{},{} 22043,AGI_Complement,AGI Complement,4,10,,350,,25,,1,0x00000400,56,2,64,,100,1,,{ bonus bAspdRate,5+(getrefine()/4); },{},{} 22044,Reinforced_Parts_Booster,Reinforced Parts - Booster,4,10,,1000,,23,,1,0x00000400,56,2,64,,100,1,,{ bonus2 bSkillUseSP,"NC_HOVERING",15; if(getrefine()>=7){bonus2 bSkillUseSP,"NC_HOVERING",-20;} },{},{} 22045,Beach_Sandals,Summer Sandals,4,10,,200,,5,,0,0xFFFFFFFF,63,2,64,,0,1,0,{ bonus bFlee,5; bonus3 bAutoSpellWhenHit,"AL_INCAGI",10,300; },{},{} 22046,Boots_Of_Airship,Boots Of Airship,4,10,,0,,26,,0,0xFFFFFFFF,63,2,64,,125,1,,{ bonus bAgi,1; bonus bSpeedRate,10; },{},{} 22047,Tarlock's_Boots,Tarlock's Boots,4,10,,250,,13,,0,0xFFFFFFFF,63,2,64,,125,1,,{ bonus bAgi,1; .@r = getrefine(); bonus bAspdRate,5; if(.@r>=7) { bonus bAgi,1; bonus bAspdRate,5; } if(.@r>=9) { bonus bAgi,1; bonus bAspdRate,5; } if(.@r>=12) { bonus bAspd,1; } },{},{} -22059,Aegir_Shoes,Aegir Shoes,4,10,,300,,13,,0,0xFFFFFFFF,63,2,64,,40,1,,{ bonus bUnbreakableShoes,1; bonus bMaxHP,500; bonus bMaxSP,50; },{},{} +22059,Aegir_Shoes,Aegir Shoes,4,10,,300,,13,,1,0xFFFFFFFF,63,2,64,,40,1,,{ bonus bUnbreakableShoes,1; bonus bMaxHP,500; bonus bMaxSP,50; },{},{} +22064,Thorny_Shoes,Thorny Shoes,4,0,,1000,,25,,1,0xFFFFFFFF,63,2,64,,,1,,{ bonus bShortWeaponDamageReturn,getrefine()/2; },{},{} 22067,Shoe_of_Witch,Shoe of Witch,4,10,,400,,10,,0,0xFFFFFFFE,63,2,64,,1,1,,{ skill "ALL_CATCRY",1,1; },{},{} +22072,Hikingboots,Hikingboots,4,0,,500,,10,,1,0xFFFFFFFF,63,2,64,1,100,1,,{ .@r = getrefine(); bonus bMaxHPRate,4+(.@r/3); bonus bMaxSPRate,4+(.@r/3); if (.@r > 9) bonus bSpeedRate,25; },{},{} +22082,Polyhedron_Shoes,Polyhedron Shoes,4,0,,500,,12,,1,0xFFFFFFFF,63,2,64,1,90,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; if (.@r > 4) { .@b = (.@r > 6) ? 10 : 5; bonus2 bAddEle,Ele_Neutral,.@b; bonus2 bAddEle,Ele_Fire,.@b; bonus2 bAddEle,Ele_Water,.@b; bonus2 bAddEle,Ele_Wind,.@b; } },{},{} // -22508,Para_Team_Mark_,Eden Group Mark,11,0,,0,,,,,,,,,,,,,{},{},{} +22508,Para_Team_Mark_,Eden Group Mark,11,0,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"AL_TELEPORT",3; },{},{} 22507,Worn-Out-Scroll,Worn-Out-Scroll,3,10,,10,,,,0,,,,,,,,,{},{},{} 22510,King_Wolf_Scroll,King Wolf Scroll,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO, confirm the rates*/ getitem callfunc("F_Rand",6635,19598,5658,6238,6239),1; },{},{} 22513,King_of_Gift_Box,King of Gift Box,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO, confirm the rates*/ getitem callfunc("F_Rand",12817,4403,14512),1; },{},{} @@ -9809,20 +10162,22 @@ 22623,New_Start_Box,New Start Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12803,1; getitem 12802,1; getitem 12809,1; },{},{} 22624,Riesen_Bretzel,Riesen Bretzel,0,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 100,0; },{},{} 22625,Oktoberfest_Bag,Oktoberfest Bag,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_OKTOBERFEST,600000,0; },{},{} +22626,January_Gift_Box,January Gift Box,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 19052,604800; },{},{} +22627,February_Gift_Box,February Gift Box,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12105,2; },{},{} 22628,Green_Package,Green Package,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22629,1; },{},{} 22629,Green_Package40,Green Package 40,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22630,1; },{},{} 22630,Green_Package80,Green Package 80,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22631,1; },{},{} -22631,Green_Package99,Green Package 99,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12213,1; /*getitem Transmission_Coupon,1;*/ getitem 5883,1; },{},{} +22631,Green_Package99,Green Package 99,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12213,1; getitem 7676,1; getitem 5883,1; },{},{} 22640,17173_Green_Package,Green Package,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22641,1; },{},{} 22641,17173_Green_Package40,Green Package 40,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22642,1; },{},{} 22642,17173_Green_Package80,Green Package 80,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22643,1; },{},{} -22643,17173_Green_Package99,Green Package 99,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12213,1; /*getitem Transmission_Coupon,1;*/ getitem 5883,1; },{},{} +22643,17173_Green_Package99,Green Package 99,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12213,1; getitem 7676,1; getitem 5883,1; },{},{} 22644,S_Green_Package,Green Package,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22645,1; },{},{} 22645,S_Green_Package40,Green Package 40,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22646,1; },{},{} 22646,S_Green_Package80,Green Package 80,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22647,1; },{},{} -22647,S_Green_Package99,Green Package 99,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12213,1; /*getitem Transmission_Coupon,1;*/ getitem 5883,1; },{},{} -22648,Angeling_Package,Angel Ring Package,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{} -22649,Deviling_Package,Devil Ring Package,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{} +22647,S_Green_Package99,Green Package 99,18,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12213,1; getitem 7676,1; getitem 5883,1; },{},{} +22648,Angeling_Package,Angel Ring Package,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",12539,6230,6234/*,Angeling Balloon*/),1; },{},{} +22649,Deviling_Package,Devil Ring Package,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",603,6230,6234/*,Angeling Balloon*/),1; },{},{} 22652,Briliant_Hat_Box,Brilliant Hat Box,2,10,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{} 22653,Wet_Card_Album,Wet Card Album,2,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{} 22654,Golden_Seal_Card,Golden Seal Card,3,20,,50,,,,,,,,,,,,,{},{},{} @@ -9830,25 +10185,33 @@ 22659,Pig_Steamed_Ribs,Pig Steamed Ribs,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bAspdRate,5; bonus bUseSPrate,-2; }",180; },{},{} 22658,Cow_Steamed_Ribs,Cow Steamed Ribs,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bVariableCastrate,5; bonus bUseSPrate,-3; }",180; },{},{} 22669,HALLOWEEN_G_BOX,Halloween Box,2,0,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_HALLOWEEN_G_BOX); },{},{} -22670,DARK_INVITATION,Invitation of Darkness,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ set .@r,rand(1,3); if(.@r==1){ specialeffect2 EF_DEVIL; warp "niflheim",193,186; }else if(.@r==2){ heal -500,-1000; sc_start SC_STUN,3000,0; }else{ specialeffect2 EF_DEVIL; warp "niflheim",347,255; } },{},{} +22670,DARK_INVITATION,Invitation of Darkness,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ .@r = rand(1,3); if(.@r==1){ specialeffect2 EF_DEVIL; warp "niflheim",193,186; }else if(.@r==2){ heal -500,-1000; sc_start SC_STUN,3000,0; }else{ specialeffect2 EF_DEVIL; warp "niflheim",347,255; } },{},{} +22671,March_Gift_Box,March Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{/*2 Lucky Eggs*/},{},{} +22672,April_Gift_Box,April Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600; },{},{} +22673,May_Gift_Box,May Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 22777,2; },{},{} +22674,June_Gift_Box,June Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{/*1 Potion Box*/},{},{} 22676,Hangul_Day_Event_Box,Hangul Day Event Box,2,20,,0,,,,,0xFFFFFFFF,63,2,,,0,,,{ getitem 22675,10; getitem 607,9; },{},{} 22675,Mysterious_Scroll,Mysterious Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,3600000,30; },{},{} 22679,Death_Bin,Death Bin,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,170,,,{ /*TODO*/ },{},{} 22685,Solo_Christmas_Gift,Single Union Christmas Gift,2,0,,0,,,,,0xFFFFFFFF,63,2,,,0,,,{ getgroupitem(IG_Solo_Christmas_Gift); },{},{} 22686,Solo_Cookie,Single Cookie,0,0,,50,,,,,0xFFFFFFFF,63,2,,,0,,,{ percentheal 5,5; },{},{} -22687,Fragments_Vicious_Mind,Fragments Vicious Mind,3,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO*/ },{},{} +22687,Fragments_Vicious_Mind,Fragments Vicious Mind,3,10,,1,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO*/ },{},{} 22691,Record_Fragment1,Record Fragment,3,10,,0,,,,,,,,,,,,,{},{},{} 22692,Record_Fragment2,Record Fragment,3,10,,0,,,,,,,,,,,,,{},{},{} 22693,Record_Fragment3,Record Fragment,3,10,,0,,,,,,,,,,,,,{},{},{} 22694,Record_Fragment4,Record Fragment,3,10,,0,,,,,,,,,,,,,{},{},{} 22695,Record_Fragment5,Record Fragment,3,10,,0,,,,,,,,,,,,,{},{},{} 22699,Test_Reagent,Test Reagent,3,10,,0,,,,,,,,,,,,,{},{},{} -22700,Jumping_Support_Box,Jumping Support Box,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: 1 white slim potion box, Beginners fly wing box(200), Novice Butterfly Wing(50), and 5 boxes that containing quivers + oridecons*/ },{},{} +22700,Jumping_Support_Box,Jumping Support Box,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: getitem 12529,1; getitem 12323,200; getitem 12324,50; and 5 boxes that containing quivers + oridecons*/ },{},{} 22708,Thrilling_Box,Thrilling Box,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*No clue the random item yet*/ },{},{} -// +22717,Wanderer_Ball,Wanderer Ball,3,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} +22718,Lude_Ball,Lude Ball,3,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} +22719,Tatacho_Ball,Tatacho Ball,3,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} +22720,Novus_Ball,Novus Ball,3,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} 22721,?_Box,? Box,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*No clue the random item yet*/ },{},{} 22734,Revolution_Quiz_Box,Revolution Quiz Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6635,2; getitem 6423,1; /*1x Enchanted Letter Introduction*/ },{},{} 22735,Sealed_Moonlight_Flower_Scroll,Sealed Moonlight Flower Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,24150,19934,6635,17474),1; },{},{} +22736,July_Gift_Box,July Gift Box,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 20212,1; },{},{} 22737,Bloody_Cartridge,Bloody Cartridge,18,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13222,500; },{},{} 22738,Silver_Cartridge,Silver Cartridge,18,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13221,500; },{},{} 22739,Lightning_Sphere_Pack,Lightning Sphere Pack,18,10,,350,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13224,500; },{},{} @@ -9868,6 +10231,7 @@ 22753,Trans_Scroll_Kobold_Archer,Transformation Scroll(Kobold Archer),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ transform 1282,1200000,SC_MTF_RANGEATK2,30; },{},{} 22754,Trans_Scroll_Necromancer,Transformation Scroll(Necromancer),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ transform 1870,1200000,SC_MTF_RANGEATK2,30; },{},{} 22755,Trans_Scroll_Wind_Ghost,Transformation Scroll(Wind Ghost),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ transform 1263,1200000,SC_MTF_MATK2,50; },{},{} +22756,August_Gift_Box,August Gift Box,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12246,1; },{},{} 22757,Collection_Of_Scrolls_Magical_Transformation,Collection Of Scrolls Magical Transformation,18,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 22755,1; getitem 22754,1; },{},{} 22758,Collection_Of_Scrolls_Shooting_Transformation,Collection Of Scrolls Shooting Transformation,18,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 22753,1; getitem 22752,1; },{},{} 22759,Collection_Of_Scrolls_Attack_Speed_Transformation,Collection Of Scrolls Attack Speed Transformation,18,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 22751,1; getitem 22750,1; },{},{} @@ -9903,8 +10267,45 @@ 22843,Superstar_Snack,Superstar Snack,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bAtk2,50; bonus bMatk,50; }",300; },{},{} 22844,Sealed_Dracula_Card_Album,Sealed Dracula Card Album,2,10,,10,,,,,,,,,,,,,{/*No Info*/},{},{} 22845,Sealed_Fortune_Egg,Sealed Fortune Egg,2,10,,10,,,,,,,,,,,,,{ getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,22846),1; },{},{} -22846,Sealed_Dracula_Card,Sealed Dracula Card,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus3 bSPDrainRate,50,5,0; }",300; },{},{} -// Shadow Equip +22846,Sealed_Dracula_Card,Sealed Dracula Card,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus2 bSPDrainRate,50,5; }",300; },{},{} +22847,Prontera_Medal,Prontera Medal,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "prontera",0,0; /*No coord info*/ },{},{} +22848,Prison_Key,Prison Key,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "prt_prison",0,0; /*No coord info*/ },{},{} +22849,Prontera_Time_Crystal,Prontera Time Crystal,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "prt_lib_q",0,0; /*No map+coord info*/ },{},{} +22850,January_Gift_Box,January Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 19052,604800; },{},{} +22851,February_Gift_Box,February Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12105,2; },{},{} +22852,March_Gift_Box,March Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{/*2 Lucky Eggs*/},{},{} +22853,April_Gift_Box,April Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600; },{},{} +22854,May_Gift_Box,May Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 22777,2; },{},{} +22855,June_Gift_Box,June Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{/*1 Potion Box*/},{},{} +22856,July_Gift_Box,July Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 20212,1; },{},{} +22857,August_Gift_Box,August Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12246,1; },{},{} +22858,September_Gift_Box,September Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{/*2 Lucky Eggs*/},{},{} +22859,October_Gift_Box,October Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12529,5; },{},{} +22860,November_Gift_Box,November Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600; },{},{} +22861,December_Gift_Box,December Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 22869,10; },{},{} +22868,Costume_Enchantment_Stone_Box_5,Costume Enchantment Stone Box 5,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",6908,6943,6944,6945,6946,6947,6948,6949,6950,6951),1; },{},{} +22869,Lucky_Roulette_Tickets,Lucky Roulette Ticket,2,10,,100,,,,,0xFFFFFFFF,63,2,,,50,,,{ RouletteBronze++; },{},{} +22870,Christmas_Package,Christmas Package,3,0,,10,,,,0,,,,,,,,,{},{},{} +22873,Sealed_Beelzebub_Scroll_II,Sealed Beelzebub Scroll II,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",22875,6238,6239,6228,6232,24231,24232,17474,6635),1; },{},{} +22874,Sealed_Beelzebub_Card_Album,Sealed Beelzebub Card Album,2,10,,50,,,,,0xFFFFFFFF,63,2,,,,,,{/*No Info*/},{},{} +22875,Sealed_Beelzebub_Card,Sealed Beelzebub Card,6,20,,10,,,,,,,,769,,,,,{ bonus bVariableCastrate,-15; /*Item removed on 2014-12-17*/ },{},{} +22876,Old_Money_Pocket,Old Money Pocket,3,0,,0,,,,,,,,,,,,,{},{},{} +22881,Rope_Gallows,Rope Gallows,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{/*Used to catch a Lost Sheep*/},{},{} +22882,Chocolate_Rice_Cake_Soup,Chocolate Rice Cake Soup,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 10,10; },{},{} +22883,September_Gift_Box,September Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{/*2 Lucky Eggs*/},{},{} +22884,October_Gift_Box,October Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12529,5; },{},{} +22885,November_Gift_Box,November Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600; },{},{} +22886,December_Gift_Box,December Gift Box,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 22869,10; },{},{} +22887,PC-Room_Box,PC-Room Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12531,1; getitem callfunc("F_Rand",6230,6234,22654),1; },{},{} +22888,New_Year's_Scroll,New Year's Scroll,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",6238,6239,6228,6232,24240,24241,24242,17474),1; },{},{} +22893,New_Year's_Shadow_Cube,New Year's Shadow Cube,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{/*Get a random Shadow Equip (No info which one)*/},{},{} +22894,(Limited)2015_Neuralizer,(Limited)2015 Neuralizer,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReset"; },{},{} +22895,(Limited)2015_Status_Initialization_Volume,(Limited)2015 Status Initialization Volume,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*Works like item 6320, can reset up to 3x within 1 hour*/ },{},{} +22896,(Limited)Old_Status_Initialization_Volume,(Limited)Old Status Initialization Volume,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*Works like item 6320, can reset up to 3x within 1 hour*/ },{},{} +22902,Sealed_Card_Album_Scroll_II,Sealed Card Album Scroll II,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",6238,6239,17474,22829,24243,24244,24245),1; },{},{} +//=================================================================== +// Shadow Equipments +//=================================================================== 24000,T_STR1_Armor_Shadow,T STR1 Armor Shadow,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,,,{ bonus bStr,1; },{},{} 24001,T_DEX1_Weapon_Shadow,T DEX1 Weapon Shadow,12,10,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,,,{ bonus bDex,1; },{},{} 24002,T_LUK1_Shield_Shadow,T LUK1 Shield Shadow,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,,,{ bonus bLuk,1; },{},{} @@ -10103,16 +10504,16 @@ 24195,Divine_Shadow_Armor,Divine Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Undead,1+(.@r/2); bonus2 bMagicAddEle,Ele_Undead,1+(.@r/2); },{},{} 24196,Hasty_Shadow_Shoes,Hasty Shadow Shoes,12,10,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bFlee,5+(getrefine()/2); },{},{} 24197,Hasty_Shadow_Armor,Hasty Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bFlee,5+(getrefine()/2); },{},{} -24198,Basis_Shadow_Shield,Basis Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); if(.@r<7) bonus2 bSubEle,Ele_Neutral,1; else if(.@r==7 || .@r==8) bonus2 bSubEle,Ele_Neutral,2; else if(.@r>=9) bonus2 bSubEle,Ele_Neutral,3; },{},{} -24199,Hallowed_Shadow_Shield,Hallowed Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); if(.@r<7) bonus2 bSubEle,Ele_Dark,1; else if(.@r==7 || .@r==8) bonus2 bSubEle,Ele_Dark,2; else if(.@r>=9) bonus2 bSubEle,Ele_Dark,3; },{},{} -24200,Saharic_Shadow_Shield,Saharic Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); if(.@r<7) bonus2 bSubEle,Ele_Water,1; else if(.@r==7 || .@r==8) bonus2 bSubEle,Ele_Water,2; else if(.@r>=9) bonus2 bSubEle,Ele_Water,3; },{},{} -24201,Underneath_Shadow_Shield,Underneath Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); if(.@r<7) bonus2 bSubEle,Ele_Earth,1; else if(.@r==7 || .@r==8) bonus2 bSubEle,Ele_Earth,2; else if(.@r>=9) bonus2 bSubEle,Ele_Earth,3; },{},{} -24202,Flammable_Shadow_Shield,Flammable Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); if(.@r<7) bonus2 bSubEle,Ele_Fire,1; else if(.@r==7 || .@r==8) bonus2 bSubEle,Ele_Fire,2; else if(.@r>=9) bonus2 bSubEle,Ele_Fire,3; },{},{} -24203,Windy_Shadow_Shield,Windy Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); if(.@r<7) bonus2 bSubEle,Ele_Wind,1; else if(.@r==7 || .@r==8) bonus2 bSubEle,Ele_Wind,2; else if(.@r>=9) bonus2 bSubEle,Ele_Wind,3; },{},{} -24204,Envenom_Shadow_Shield,Envenom Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); if(.@r<7) bonus2 bSubEle,Ele_Poison,1; else if(.@r==7 || .@r==8) bonus2 bSubEle,Ele_Poison,2; else if(.@r>=9) bonus2 bSubEle,Ele_Poison,3; },{},{} -24205,Damned_Shadow_Shield,Damned Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); if(.@r<7) bonus2 bSubEle,Ele_Holy,1; else if(.@r==7 || .@r==8) bonus2 bSubEle,Ele_Holy,2; else if(.@r>=9) bonus2 bSubEle,Ele_Holy,3; },{},{} -24206,Exorcism_Shadow_Shield,Exorcism Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); if(.@r<7) bonus2 bSubEle,Ele_Ghost,1; else if(.@r==7 || .@r==8) bonus2 bSubEle,Ele_Ghost,2; else if(.@r>=9) bonus2 bSubEle,Ele_Ghost,3; },{},{} -24207,Divine_Shadow_Shield,Divine Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); if(.@r<7) bonus2 bSubEle,Ele_Undead,1; else if(.@r==7 || .@r==8) bonus2 bSubEle,Ele_Undead,2; else if(.@r>=9) bonus2 bSubEle,Ele_Undead,3; },{},{} +24198,Basis_Shadow_Shield,Basis Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Neutral,(.@r<7)?1:((.@r<9)?2:3); },{},{} +24199,Hallowed_Shadow_Shield,Hallowed Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Dark,(.@r<7)?1:((.@r<9)?2:3); },{},{} +24200,Saharic_Shadow_Shield,Saharic Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Water,(.@r<7)?1:((.@r<9)?2:3); },{},{} +24201,Underneath_Shadow_Shield,Underneath Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Earth,(.@r<7)?1:((.@r<9)?2:3); },{},{} +24202,Flammable_Shadow_Shield,Flammable Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Fire,(.@r<7)?1:((.@r<9)?2:3); },{},{} +24203,Windy_Shadow_Shield,Windy Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Wind,(.@r<7)?1:((.@r<9)?2:3); },{},{} +24204,Envenom_Shadow_Shield,Envenom Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Poison,(.@r<7)?1:((.@r<9)?2:3); },{},{} +24205,Damned_Shadow_Shield,Damned Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Holy,(.@r<7)?1:((.@r<9)?2:3); },{},{} +24206,Exorcism_Shadow_Shield,Exorcism Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Ghost,(.@r<7)?1:((.@r<9)?2:3); },{},{} +24207,Divine_Shadow_Shield,Divine Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Undead,(.@r<7)?1:((.@r<9)?2:3); },{},{} 24208,Expert_Shadow_Shoes,Expert Shadow Shoes,12,20,,100,,,,0,0xFFFFFFFF,63,2,524288,,150:175,1,,{ bonus2 bExpAddRace,RC_All,1; },{},{} 24209,Expert_Shield_Shadow,Expert Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,150:175,1,,{ bonus2 bExpAddRace,RC_All,(getrefine()/4); },{},{} 24210,Beginner_Shadow_Shoes,Beginner Shadow Shoes,12,20,,0,,,,0,0xFFFFFFFF,63,2,524288,,1:49,1,,{ bonus2 bExpAddRace,RC_All,getrefine(); },{},{} @@ -10124,45 +10525,74 @@ 24216,Attack_Shadow_Armor,Attack Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); autobonus "{ bonus bAtk2,(.@r*5); }",(.@r*20)+100,3000,BF_NORMAL; },{},{} 24217,Blitz_Shadow_Earring,Blitz Shadow Earring,12,10,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); bonus bHit,(.@r/2)+5; if(.@r>=7){ bonus bAspd,1; } },{},{} 24218,Blitz_Shadow_Pendant,Blitz Shadow Pendant,12,10,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus bAtk2,(.@r/2)+5; if(.@r>=7){ bonus bAspd,1; } },{},{} -24219,Cold_Bolt_Shadow_Armor,Cold Bolt Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ set .@ref,getrefine(); if(.@ref>=2){ autobonus "{ bonus3 bAutoSpell,14,(.@ref/2),1000; }",(.@ref*2)+100,100,BF_SHORT; } },{},{} -24220,Fire_Bolt_Shadow_Armor,Fire Bolt Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ set .@ref,getrefine(); if(.@ref>=2){ autobonus "{ bonus3 bAutoSpell,19,(.@ref/2),1000; }",(.@ref*2)+100,100,BF_SHORT; } },{},{} -24221,Lightning_Bolt_Shadow_Armor,Lightning Bolt Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ set .@ref,getrefine(); if(.@ref>=2){ autobonus "{ bonus3 bAutoSpell,20,(.@ref/2),1000; }",(.@ref*2)+100,100,BF_SHORT; } },{},{} -24222,Earth_Spike_Shadow_Armor,Earth Spike Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ set .@ref,getrefine(); if(.@ref>=2){ autobonus "{ bonus3 bAutoSpell,90,(.@ref/2),1000; }",(.@ref*2)+100,100,BF_SHORT; } },{},{} +24219,Cold_Bolt_Shadow_Armor,Cold Bolt Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\"MG_COLDBOLT\",(.@r/2),1000; }",(.@r*2)+100,100,BF_SHORT; },{},{} +24220,Fire_Bolt_Shadow_Armor,Fire Bolt Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\"MG_FIREBOLT\",(.@r/2),1000; }",(.@r*2)+100,100,BF_SHORT; },{},{} +24221,Lightning_Bolt_Shadow_Armor,Lightning Bolt Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\"MG_LIGHTNINGBOLT\",(.@r/2),1000; }",(.@r*2)+100,100,BF_SHORT; },{},{} +24222,Earth_Spike_Shadow_Armor,Earth Spike Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\"WZ_EARTHSPIKE\",(.@r/2),1000; }",(.@r*2)+100,100,BF_SHORT; },{},{} 24223,Enhanced_Force_Shadow_Weapon,Enhanced Force Shadow Weapon,12,10,,0,,,,0,0xFFFFFFFF,56,2,131072,,100,1,,{ bonus bAtk2,10; bonus bAtkRate,(getrefine()/2); },{},{} -24224,Force_Shadow_Weapon,Force Shadow Weapon,12,10,,0,,,,0,0xFFFFFFFF,63,2,131072,,70,1,,{ .@r = getrefine(); if(.@r<7) bonus bAtkRate,1; else if(.@r==7 || .@r==8) bonus bAtkRate,2; else if(.@r>=9) bonus bAtkRate,3; },{},{} +24224,Force_Shadow_Weapon,Force Shadow Weapon,12,10,,0,,,,0,0xFFFFFFFF,63,2,131072,,70,1,,{ .@r = getrefine(); bonus bAtkRate,(.@r<7)?1:((.@r<9)?2:3); },{},{} 24225,Force_Shadow_Earring,Force Shadow Earring,12,10,,0,,,,0,0xFFFFFFFF,63,2,1048576,,70,1,,{ .@r = getrefine(); bonus bAtk2,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMaxSPrate,1; },{},{} 24226,Force_Shadow_Pendant,Force Shadow Pendant,12,10,,0,,,,0,0xFFFFFFFF,63,2,2097152,,70,1,,{ .@r = getrefine(); bonus bAtk2,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMaxSPrate,1; },{},{} 24227,Enhanced_Soul_Shadow_Weapon,Enhanced Soul Shadow Weapon,12,10,,0,,,,0,0xFFFFFFFF,56,2,131072,,100,1,,{ bonus bMatk,10; bonus bMatkRate,(getrefine()/2); },{},{} -24228,Soul_Shadow_Weapon,Soul Shadow Weapon,12,10,,0,,,,0,0xFFFFFFFF,63,2,131072,,70,1,,{ .@r = getrefine(); if(.@r<7) bonus bMatkRate,1; else if(.@r==7 || .@r==8) bonus bMatkRate,2; else if(.@r>=9) bonus bMatkRate,3; },{},{} +24228,Soul_Shadow_Weapon,Soul Shadow Weapon,12,10,,0,,,,0,0xFFFFFFFF,63,2,131072,,70,1,,{ .@r = getrefine(); bonus bMatkRate,(.@r<7)?1:((.@r<9)?2:3); },{},{} 24229,Soul_Shadow_Earring,Soul Shadow Earring,12,10,,0,,,,0,0xFFFFFFFF,63,2,1048576,,70,1,,{ .@r = getrefine(); bonus bMatk,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMatkRate,1; },{},{} 24230,Soul_Shadow_Pendant,Soul Shadow Pendant,12,10,,0,,,,0,0xFFFFFFFF,63,2,2097152,,70,1,,{ .@r = getrefine(); bonus bMatk,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMatkRate,1; },{},{} +24231,Blitz_Shadow_Shoes,Blitz Shadow Shoes,12,10,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bFlee,5; .@r = getrefine(); if(.@r>=2){ bonus bCritical,2; } if(.@r>=7){ bonus bAspd,1; } if(.@r>=9){ bonus bAspd,1; } },{},{} +24232,Blitz_Shadow_Shield,Blitz Shadow Shield,12,10,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bCritical,5; .@r = getrefine(); if(.@r>=2){ bonus bCritical,2; } if(.@r>=7){ bonus bAspd,1; } if(.@r>=9){ bonus bAspd,1; } },{},{} +24233,Exceeding_Shadow_Weapon,Exceeding Shadow Weapon,12,10,,0,,,,0,0xFFFFFFFF,63,2,131072,,100,1,,{ .@r = getrefine()/2; bonus bBaseAtk,5; bonus bMatk,5; bonus bAtkRate,.@r; bonus bMatkRate,.@r; },{},{} +24234,Titan_Shadow_Earring,Titan Shadow Earring,12,10,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Large,.@rate; bonus2 bMagicAddSize,Size_Large,.@rate; },{},{} +24235,Titan_Shadow_Pendant,Titan Shadow Pendant,12,10,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Large,.@rate; bonus2 bMagicAddSize,Size_Large,.@rate; },{},{} +24236,Boned_Shadow_Earring,Boned Shadow Earring,12,10,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Medium,.@rate; bonus2 bMagicAddSize,Size_Medium,.@rate; },{},{} +24237,Boned_Shadow_Pendant,Boned Shadow Pendant,12,10,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Medium,.@rate; bonus2 bMagicAddSize,Size_Medium,.@rate; },{},{} +24238,Gigantic_Shadow_Earring,Gigantic Shadow Earring,12,10,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Small,.@rate; bonus2 bMagicAddSize,Size_Small,.@rate; },{},{} +24239,Gigantic_Shadow_Pendant,Gigantic Shadow Pendant,12,10,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Small,.@rate; bonus2 bMagicAddSize,Size_Small,.@rate; },{},{} +24243,Reload_Shadow_Shoes,Reload Shadow Shoes,12,20,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); },{},{} +24244,Reload_Shadow_Shield,Reload Shadow Shield,12,20,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); },{},{} +24245,Reload_Shadow_Armor,Reload Shadow Armor,12,20,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); },{},{} // -28000,Tanos_Katar,Tanos Katar,5,10,,1800,220:80,,,1,0x00001000,63,2,32,4,120,1,16,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bAtkRate,5; bonus2 bHPLossRate,100,10000; },{},{} -28001,Katar_Of_Evil_Slayer,Katar Of Evil Slayer,5,10,,1200,,120,,1,0x00001000,63,2,32,3,100,1,16,{ bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9){ bonus bAtkRate,5; } if(.@r>=12){ bonus bAtkRate,7; } },{},{} -28002,Half_BF_Katar2,Half BF Katar2,5,20,,0,130,,1,0,0x00001000,63,2,34,3,80,1,16,{ bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus bCritAtkRate,10; bonus bAspdRate,3; bonus bUnbreakableWeapon,0; },{},{} -28005,Blue_Katar,Blue Katar,5,10,,1200,190,,1,1,0x00001000,56,2,2,3,100,1,16,{ bonus bAgi,5; bonus bStr,5; },{},{} +28000,Tanos_Katar,Tanos Katar,5,10,,1800,220:80,,,1,0x00001000,63,2,34,4,120,1,16,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bAtkRate,5; bonus2 bHPLossRate,100,10000; },{},{} +28001,Katar_Of_Evil_Slayer,Katar Of Evil Slayer,5,10,,1200,120,,1,1,0x00001000,63,2,34,3,100,1,16,{ bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9){ bonus bAtkRate,5; } if(.@r>=12){ bonus bAtkRate,7; } },{},{} +28002,Half_BF_Katar2,Half BF Katar2,5,20,,0,130,,1,0,0x00001000,63,2,34,3,80,1,16,{ bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player,35; bonus bCritAtkRate,10; bonus bAspdRate,3; bonus bUnbreakableWeapon,1; },{},{} +28005,Blue_Katar,Blue Katar,5,10,,1200,190,,1,1,0x00001000,56,2,34,3,100,1,16,{ bonus bAgi,5; bonus bStr,5; },{},{} +28006,Ru_Gold_Katar,Ru Gold Katar,5,0,,1200,190,,1,2,0x00001000,56,2,34,3,120,1,16,{ bonus bAgi,8; bonus bStr,8; },{},{} +28007,Crimson_Katar,Crimson Katar,5,20,,1300,130,,1,2,0x00001000,63,2,34,3,70,1,16,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{} +28010,Juliette_D._Rachel,Juliette D. Rachel,5,20,,2500,300,,1,2,0x00001000,56,2,34,4,170,1,16,{ .@r = getrefine(); bonus bAtkRate,(.@r/2); bonus bAspdRate,.@r; bonus bUnbreakableWeapon,1; },{},{} // 28100,Tanos_Axe,Tanos Axe,5,10,,4000,300:80,,,1,0x00000400,63,2,2,4,120,1,6,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bAtkRate,5; bonus2 bHPLossRate,100,10000; },{},{} 28101,Axe_Tornado,Axe Tornado,5,10,,4000,320,,,1,0x00000400,56,2,2,4,130,,6,{ bonus bAtkEle,4; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; },{},{} -28102,Half_BF_Two_Handed_Axe1,Half BF Two Handed Axe1,5,20,,0,200,,1,0,0x000444A2,63,2,34,3,80,1,7,{ bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon,0; },{},{} +28102,Half_BF_Two_Handed_Axe1,Half BF Two Handed Axe1,5,20,,0,200,,1,0,0x000444A2,63,2,34,3,80,1,7,{ bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon,1; },{},{} 28103,Blue_Twohand_Axe,Blue Twohand Axe,5,10,,3000,330,,1,1,0x00000400,56,2,2,3,1,1,7,{ bonus bStr,5; bonus bVit,5; },{},{} +28104,Ru_Gold_Axe_M,Ru Gold Axe M,5,0,,3000,330,,1,2,0x00000400,56,2,34,3,120,1,7,{ bonus bStr,8; bonus bVit,8; },{},{} 28105,Infinity_Axe,Infinity Axe,5,10,,500,265,,1,1,0x00000022,7,2,34,4,100,1,7,{},{},{} +28106,Crimson_Two-Handed_Axe,Crimson Two-Handed Axe,5,20,,2000,200,,1,2,0x00000022,63,2,34,3,70,1,7,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon,1; },{},{} // 28200,End_Of_The_Horizon,End Of The Horizon,5,2700000,,2400,410,,9,1,0x40000000,63,2,34,4,110,1,21,{},{},{} 28201,Southern_Cross,Southern Cross,5,2800000,,2000,480,,9,0,0x40000000,63,2,34,4,141,1,21,{ bonus3 bAutoSpell,"GC_CROSSIMPACT",1,50; },{},{} 28202,Southern_Cross_,Southern Cross,5,2800000,,2000,480,,9,1,0x40000000,63,2,34,4,141,1,21,{ bonus3 bAutoSpell,"GC_CROSSIMPACT",1,50; },{},{} -28203,Half_BF_Rifle1,Half BF Rifle1,5,0,,0,50,,9,0,0x41000000,63,2,34,3,80,1,18,{ bonus bDex,2; bonus bHit,8; bonus bCritical,8; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bVariableCastrate,"GS_TRACKING",-20; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon,0; },{},{} -28204,Half_BF_Shotgun1,Half BF Shotgun1,5,0,,0,100,,9,0,0x41000000,63,2,34,3,80,1,20,{ bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon,0; },{},{} +28203,Half_BF_Rifle1,Half BF Rifle1,5,0,,0,50,,9,0,0x41000000,63,2,34,3,80,1,18,{ bonus bDex,2; bonus bHit,8; bonus bCritical,8; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bVariableCastrate,"GS_TRACKING",-20; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; bonus bUnbreakableWeapon,1; },{},{} +28204,Half_BF_Shotgun1,Half BF Shotgun1,5,0,,0,100,,9,0,0x41000000,63,2,34,3,80,1,20,{ bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player,10; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon,1; },{},{} // -//28315,RCC2013_ARMLET -//28316,RCC2013_ARMLET_ -//28317,RCC2013_RING -//28318,RCC2013_RING_ +28315,RCC2013_ARMLET,RCC2013_ARMLET,4,200,,200,,,,0,0xFFFFFFFF,63,2,136,,1,0,,{ bonus2 bAddClass,Class_All,1; },{},{} +28316,RCC2013_ARMLET_,RCC2013_ARMLET_,4,200,,200,,,,1,0xFFFFFFFF,63,2,136,,1,0,,{ bonus2 bAddClass,Class_All,1; },{},{} +28317,RCC2013_RING,RCC2013_RING,4,200,,200,,,,0,0xFFFFFFFF,63,2,136,,1,0,,{ bonus2 bAddClass,Class_All,1; },{},{} +28318,RCC2013_RING_,RCC2013_RING_,4,200,,200,,,,1,0xFFFFFFFF,63,2,136,,1,0,,{ bonus2 bAddClass,Class_All,1; },{},{} 28310,Sarah's_Left_Earring,Sarah's Left Earring,4,10,,100,,,,0,0xFFFFFFFF,63,2,128,,145,1,,{ skill "AL_HEAL",1; },{},{} 28311,Sarah's_Right_Earring,Sarah's Right Earring,4,10,,100,,,,0,0xFFFFFFFF,63,2,8,,145,1,,{ skill "AL_TELEPORT",1; },{},{} +28321,Falconer_Claw,Falconer Claw,4,0,,100,,5,,1,0x00000800,63,2,136,1,80,1,,{ bonus bDex,1; bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW")*10; },{},{} 28326,Broken_Chips_01,Broken Chips 01,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,100,1,,{ bonus bStr,4; },{},{} 28327,Broken_Chips_02,Broken Chips 02,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,100,1,,{ bonus bInt,4; },{},{} 28332,Jewerly_Ring,Jewerly Ring,4,10,,100,,,,0,0xFFFFFFFF,63,2,136,,1,0,,{ bonus bLuk,20; autobonus "{ bonus bAspd,2; }",50,2000,BF_WEAPON|BF_MAGIC; },{},{} 28333,Gold_PC_Room_Ring,Gold PC Room Ring,4,10,,0,,,,1,0xFFFFFFFF,63,2,136,,1,1,,{ bonus bMaxHPrate,3; bonus bMaxSPrate,3; },{},{} +28342,Critical_Anklet,Critical Anklet,4,0,,200,,3,,1,0xFFFFFFFF,63,2,136,,,1,,{ bonus bCritical,5; },{},{} +28372,Imperial_Ring,Imperial Ring,4,0,,500,,3,,1,0xFFFFFFFF,63,2,136,1,50,1,,{ bonus bStr,1; bonus bInt,1; bonus bMaxHPRate,3; bonus bMaxSPRate,3; },{},{} 28600,Blue_Book,Blue Book,5,10,,500,160,,1,1,0x00000100,56,2,2,3,100,1,15,{ bonus bAgi,5; bonus bDex,5; },{},{} +28601,Ru_Gold_Book,Ru Gold Book,5,0,,500,160,,1,2,0x00000008,63,2,2,3,120,1,15,{ bonus bVit,8; bonus bInt,8; },{},{} +28602,Demon_Hunting_Bible,Demon Hunting Bible,5,0,,500,30:170,,1,2,0x00000008,63,2,2,3,110,1,15,{ bonus bInt,2; bonus bDex,2; .@b = readparam(bInt); bonus2 bSkillAtk,"PR_MAGNUS",30+((.@b > 120) ? 120 : .@b); },{},{} +28604,Crimson_Bible,Crimson Bible,5,20,,450,45,,1,2,0x00410100,63,2,2,3,70,1,15,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); },{},{} +28700,Ru_Gold_Dagger,Ru Gold Dagger,5,0,,1000,160,,1,2,0x00020000,56,2,2,3,120,1,1,{ bonus bStr,8; bonus bInt,8; },{},{} +28701,Ru_Gold_Knife,Ru Gold Knife,5,0,,500,160,,1,2,0x00010000,56,2,2,3,120,1,1,{ bonus bVit,8; bonus bInt,8; },{},{} +28702,Ru_Gold_Ashura,Ru Gold Ashura,5,0,,1000,150:150,,1,2,0x2000000,63,2,2,3,120,1,1,{},{},{} 28703,Infinity_Dagger,Infinity Dagger,5,10,,500,125,,1,1,0x0280026B,7,2,2,4,100,1,1,{},{},{} +28705,Crimson_Dagger,Crimson Dagger,5,20,,550,55,,1,2,0x02800271,63,2,2,3,70,1,1,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); },{},{} +28900,Guardsmen's_Shield,Guardsmen's Shield,4,20,,3000,,30,,1,0xFFFFFFFF,63,2,32,,100,1,1,{ .@r = getrefine(); skill "LG_SHIELDSPELL",1,1; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,(10+(.@r*10)); bonus bDef,(.@r*10); bonus bMdef,.@r; },{},{} +28903,Scutum,Scutum,4,0,,500,,1,,1,0xFFFFFFFF,63,2,32,1,1,1,,{ .@r = getrefine(); bonus bFlee,5+(.@r*3); bonus bFlee2,1+(.@r*2); if (.@r > 10) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } },{},{} diff --git a/db/re/item_delay.txt b/db/re/item_delay.txt index d8b58097b0..1f7b3969c5 100644 --- a/db/re/item_delay.txt +++ b/db/re/item_delay.txt @@ -1,41 +1,91 @@ // Item Delay Database // // Structure of Database: -// Item ID,Delay in Milliseconds +// ,{,} // -// NOTE: -// There is a max concurrent number of entries set in src/map/itemdb.h as MAX_ITEMDELAYS. +// +// ID of item that will has reuse delay. +// +// Re-use delay in milliseconds. +// +// SC (status change) group for the item. +// Example for SC_REUSE_LIMIT_MTF +// 12658,10000,620 // Transformation Scroll(Deviruchi) +// 12659,10000,620 // Transformation Scroll(Raydric) +// -> 12658 has reuse delay for 10 seconds, and also, +// 12659 cannot be used when this delay is active. +// Since this is optional, default is -1 will ignores the +// delay group and the delay will be stored in character's +// data that has limit set in src/map/itemdb.h as MAX_ITEMDELAYS. +// SC_REUSE_REFRESH 317 +12725,120000,317 //Runstone_Nosiege + +// SC_REUSE_LIMIT_A 609 +14538,300000,608 //Glass_Of_Illusion + +// SC_REUSE_LIMIT_B 610 +12596,180000,609 //Magic_Candy +14586,180000,609 //Spark_Candy + +// SC_REUSE_LIMIT_C 611 +12208,60000,610 //Battle_Manual + +// SC_REUSE_LIMIT_D 612 +12210,60000,611 //Bubble_Gum + +// SC_REUSE_LIMIT_E 613 +11522,1000,612 //Red_Raffle_Sap +11523,2000,612 //Yellow_Raffle_Sap +11524,3000,612 //White_Raffle_Sap + +// SC_REUSE_LIMIT_F 614 +607,5000,613 //Yggdrasil_Berry + +// SC_REUSE_LIMIT_G 615 +608,3000,614 //Yggdrasil_Seed +22559,3000,614 //Mock_Strawberry + +// SC_REUSE_LIMIT_H 616 +11525,5000,615 //Mora_Hip_Tea + +// SC_REUSE_LIMIT_ASPD_POTION 617 +//12684,0,616 //ASPD_Potion //! CHECKME: Need confirmation! + +// SC_REUSE_LIMIT_MTF 618 +12658,10000,620 //Transformation Scroll(Deviruchi) +12659,10000,620 //Transformation Scroll(Raydric) +12660,10000,620 //Transformation Scroll(Mavka) +12661,10000,620 //Transformation Scroll(Marduk) +12662,10000,620 //Transformation Scroll(Banshee) +12663,10000,620 //Transformation Scroll(Poring) +12664,10000,620 //Transformation Scroll(Golem) + +// SC_ALL_RIDING_REUSE_LIMIT 619 +12622,3000,621 //Boarding_Halter + +// SC_SEARCH_STORE_INFO 620 +12580,0,624 //Vending_Search_Scroll +12581,0,624 //Vending_Search_Scroll2 +12591,0,624 //Uni_Catalog_Bz + +// SC_REUSE_MILLENNIUMSHIELD 621 +12727,60000,625 //Runstone_Verkana + +// SC_REUSE_CRUSHSTRIKE 622 +12726,30000,626 //Runstone_Rhydo + +// SC_REUSE_STORMBLAST 623 +12732,1000,627 //Runstone_Pertz + +// Misc //12202,60000 //Str_Dish10_ //12203,60000 //Agi_Dish10_ //12204,60000 //Int_Dish10_ //12205,60000 //Dex_Dish10_ //12206,60000 //Luk_Dish10_ //12207,60000 //Vit_Dish10_ -12208,60000 //Battle_Manual -12210,60000 //Bubble_Gum -14538,300000 //Glass_Of_Illusion -607,5000 //Yggdrasil_Berry -608,3000 //Yggdrasil_Seed - -// Bifrost Items -11522,1000 //Red_Raffle_Sap -11523,2000 //Yellow_Raffle_Sap -11524,3000 //White_Raffle_Sap -11525,5000 //Mora_Hip_Tea - -12658,10000 //Transformation Scroll(Deviruchi) -12659,10000 //Transformation Scroll(Raydric) -12660,10000 //Transformation Scroll(Mavka) -12661,10000 //Transformation Scroll(Marduk) -12662,10000 //Transformation Scroll(Banshee) -12663,10000 //Transformation Scroll(Poring) -12664,10000 //Transformation Scroll(Golem) - -// FIX ME! Delays need confirmation. -12968,300000 //Emergency_Scroll1 -12969,300000 //Emergency_Scroll2 -12970,300000 //Emergency_Scroll3 - -12596,300000 //Magic_Candy -14586,300000 //Spark_Candy +12968,300000 //Emergency_Scroll1 //! CHECKME: Need confirmation! +12969,300000 //Emergency_Scroll2 //! CHECKME: Need confirmation! +12970,300000 //Emergency_Scroll3 //! CHECKME: Need confirmation! +22508,7200000 //Para_Team_Mark_ diff --git a/db/re/item_flag.txt b/db/re/item_flag.txt index 96a78c2156..49f2717392 100644 --- a/db/re/item_flag.txt +++ b/db/re/item_flag.txt @@ -2,10 +2,11 @@ // , // // : -// 1 - As Dead Branch item (will be logged at `branchlog` table and cannot be used at 'nobranch' mapflag) -// 2 - As item group container, check player's inventory and weight before consumed -// 4 - GUID item, cannot be stacked even same or stackable item -// 8 - Item will be bound item when equipped +// 1 - As Dead Branch item (will be logged at `branchlog` table and cannot be used at 'nobranch' mapflag) +// 2 - As item group container, check player's inventory and weight before consumed +// 4 - GUID Item: When this item is obtained, will generates GUID that cannot be stacked even same or stackable item +// 8 - Item will be bound item when equipped +// 16 - Special Broadcast: When item dropped by monster and player loot it, will be broadcasted! // NOTE: For removing flag by import file, use "-" to remove the flag. Example, 604,-1 will removes flag 1 from Branch_Of_Dead_Tree // Logged as Dead Branch item @@ -259,6 +260,10 @@ 14665,2 //Jung_Bi_Scroll 14666,2 //Je_Un_Scroll 14667,2 //Yong_Kwang_Scroll +14699,2 //Memorial_Garuda_Lucky_Egg +14701,2 //Rune_Midgard_Imortal_Lucky_Egg +14741,2 //Midgard_Celebration_Lucky_Egg +14753,2 //Hero_Midgard_Egg 16245,2 //Tw_April_Scroll 16257,2 //Buddah_Scroll 16304,2 //Evil_Incarnation @@ -373,17 +378,63 @@ 17256,2 //Good_Student_Gift_Box 17257,2 //Bad_Student_Gift_Box 17262,2 //Ex_Def_Potion_Box +17307,2 //Midgard_Egg +17317,2 //Sweet_Midgard_Egg +17320,2 //Birthday_IdRO10th_Scroll +17326,2 //Requiem_Egg,Requiem Egg +17337,2 //Holy_Spirit_Egg +17431,2 //Miracle_Lucky_Egg +17435,2 //Legend_Hero_Lucky_Egg +17447,2 //Blessing_Midgard_Lucky_Egg +17464,2 //Winter_Midgard_Egg +17471,2 //Spring_Festival_Lucky_Egg +17479,2 //Midgard_Festival_Egg +17482,2 //Solaris_Festival_Scroll +17490,2 //Time_Travel_Lucky_Egg +17494,2 //Rise_Midgard_Lucky_Egg +17519,2 //Epic_Heroes_Scroll +17526,2 //Majestic_Lucky_Egg +17532,2 //Blessing_Lucky_Egg +17552,2 //Garnet_Lucky_Egg +17572,2 //Erzulie_Lucky_Egg +17584,2 //Venus_Lucky_Egg +17588,2 //Amora_Lucky_Egg +17598,2 //Sograt_Lucky_Scroll 22514,2 //Candy_Holder 22558,2 //Lucky_Bag 22669,2 //HALLOWEEN_G_BOX 22685,2 //Solo_Christmas_Gift // GUID +12900,4 //Battle_Manual_Box +12901,4 //Insurance_Package +12902,4 //Bubble_Gum_Box +12903,4 //Str_Dish_Box +12904,4 //Agi_Dish_Box +12905,4 //Int_Dish_Box +12906,4 //Dex_Dish_Box +12907,4 //Luk_Dish_Box +12908,4 //Vit_Dish_Box +12909,4 //Kafra_Card_Box +12910,4 //Giant_Fly_Wing_Box +12911,4 //Neuralizer_Box +12912,4 //Convex_Mirror_Box +12913,4 //Blessing_10_Scroll_Box +12914,4 //Inc_Agi_10_Scroll_Box 12915,4 //Aspersio_5_Scroll_Box +12915,4 //Aspersio_5_Scroll_Box +12916,4 //Assumptio_5_Scroll_Box +12917,4 //Wind_Walk_10_Scroll_Box +12918,4 //Adrenaline_Scroll_Box +12919,4 //Megaphone_Box +12920,4 //Enriched_Elunium_Box +12921,4 //Enriched_Oridecon_Box +12922,4 //Token_Of_Siegfried_Box 12923,4 //Pet_Egg_Scroll_Box1 12924,4 //Pet_Egg_Scroll_Box2 12925,4 //Pet_Egg_Scroll1 12926,4 //Pet_Egg_Scroll2 +12927,4 //J_Aspersio_5_Scroll_Box 12929,4 //Pet_Egg_Scroll_Box3 12930,4 //Pet_Egg_Scroll_Box4 12931,4 //Pet_Egg_Scroll_Box5 @@ -420,6 +471,15 @@ 12962,4 //Vesper_Core02_Box 12963,4 //Vesper_Core03_Box 12964,4 //Vesper_Core04_Box +12965,4 //Emergency_Box1 +12966,4 //Emergency_Box2 +12967,4 //Emergency_Box3 +12971,4 //Teleport_Box1 +12972,4 //Teleport_Box2 +12973,4 //Teleport_Box3 +12974,4 //Teleport_Box4 +12975,4 //Teleport_Box5 +12976,4 //Teleport_Box6 12983,4 //Pet_Egg_Scroll_Box6 12984,4 //Pet_Egg_Scroll_Box7 12985,4 //Pet_Egg_Scroll_Box8 @@ -432,15 +492,141 @@ 12992,4 //Pet_Egg_Scroll9 12993,4 //Pet_Egg_Scroll10 12994,4 //Pet_Egg_Scroll11 +12995,4 //White_Herb_Box +12996,4 //Blue_Herb_Box +12997,4 //Elunium_Box +12998,4 //Oridecon_Box +12999,4 //Branch_Of_Dead_Tree_Box +13500,4 //Insurance60_Package +13501,4 //Assorted_Scroll_Box +13502,4 //Drooping_Kitty_Box +13503,4 //Magestic_Goat_Box +13504,4 //Deviruchi_Cap_Box +13505,4 //Executioner_Box +13506,4 //Brood_Axe_Box +13507,4 //Tomahawk_Box +13508,4 //Bow_Of_Rudra_Box +13509,4 //Cutlas_Box +13510,4 //Solar_Sword_Box +13511,4 //Sword_Breaker_Box +13512,4 //Mail_Breaker_Box +13513,4 //Moonlight_Sword_Box +13514,4 //Spanner_Box +13515,4 //Grape_Box +13516,4 //Royal_Jelly_Box +13517,4 //Yggdrasilberry_Box +13518,4 //Weapon_Card_Scroll_Box +13519,4 //Armor_Card_Scroll_Box +13520,4 //Helmet_Card_Scroll_Box +13521,4 //Garment_Card_Scroll_Box +13522,4 //Shield_Card_Scroll_Box +13523,4 //Shoes_Card_Scroll_Box +13524,4 //Accy_Card_Scroll_Box +13525,4 //Zeny_Scroll_Box +13526,4 //Pet_Egg_Scroll_Box1_ +13527,4 //Pet_Egg_Scroll_Box2_ +13528,4 //Pet_Egg_Scroll_Box3_ +13529,4 //Pet_Egg_Scroll_Box4_ +13530,4 //Pet_Egg_Scroll_Box5_ +13531,4 //Light_Red_Pot_Box +13532,4 //Light_Orange_Pot_Box +13533,4 //Light_Yellow_Pot_Box +13534,4 //Light_White_Pot_Box +13535,4 //Light_Center_Pot_Box +13536,4 //Light_Awakening_Pot_Box +13537,4 //Light_Berserk_Pot_Box +13538,4 //Meteor_10_Scroll_Box +13539,4 //Storm_10_Scroll_Box +13540,4 //Vermilion_10_Scroll_Box +13541,4 //Lex_Aeterna_Scroll_Box +13542,4 //Magnificat_5_Scroll_Box 13543,4 //CP_Helm_Scroll_Box 13544,4 //CP_Shield_Scroll_Box 13545,4 //CP_Armor_Scroll_Box 13546,4 //CP_Weapon_Scroll_Box 13547,4 //Repair_Scroll_Box +13548,4 //Big_Bun_Box +13549,4 //Pill__Box +13550,4 //Superb_Fish_Slice_Box +13551,4 //Chewy_Ricecake_Box +13552,4 //Oriental_Pastry_Box +13553,4 //Dun_Tele_Scroll1_Box +13554,4 //Weapon_Card_Scroll_Box2 +13555,4 //Weapon_Card_Scroll_Box3 +13556,4 //Armor_Card_Scroll_Box2 +13557,4 //Accy_Card_Scroll_Box2 +13558,4 //Weapon_Card_Scroll +13559,4 //Armor_Card_Scroll +13560,4 //Helmet_Card_Scroll +13561,4 //Hood_Card_Scroll +13562,4 //Hood_Card_Scroll2 +13563,4 //Shoes_Card_Scroll +13564,4 //Accy_Card_Scroll +13565,4 //Weapon_Card_Scroll2 +13566,4 //Weapon_Card_Scroll3 +13567,4 //Armor_Card_Scroll2 +13568,4 //Accy_Card_Scroll2 +13569,4 //PVP_Tele_Scroll_Box +13570,4 //Giant_Fly_Wing_Box50 +13571,4 //Giant_Fly_Wing_Box100 +13572,4 //Dex_Dish_Box30 +13573,4 //Dex_Dish_Box50 +13574,4 //Luk_Dish_Box30 +13575,4 //Luk_Dish_Box50 +13576,4 //Inc_Agi_10_Box30 +13577,4 //Inc_Agi_10_Box50 +13578,4 //Vit_Dish_Box30 +13579,4 //Vit_Dish_Box50 +13580,4 //Insurance_Package30 +13581,4 //Insurance_Package50 +13582,4 //Convex_Mirror_Box5 +13583,4 //Convex_Mirror_Box30 +13584,4 //Blessing10_Box30 +13585,4 //Blessing10_Box50 +13586,4 //Adrenaline10_Box30 +13587,4 //Adrenaline10_Box50 +13588,4 //Assumptio_5_Box30 +13589,4 //Assumptio_5_Box50 +13590,4 //Aspersio_5_Box30 +13591,4 //Aspersio_5_Box50 +13592,4 //Agi_Dish_Box30 +13593,4 //Agi_Dish_Box50 +13594,4 //Wind_Walk10_Box30 +13595,4 //Wind_Walk10_Box50 +13596,4 //Int_Dish_Box30 +13597,4 //Int_Dish_Box50 +13598,4 //Battle_Manual_Box1 +13599,4 //Battle_Manual_Box5 +13600,4 //Siegfried_Box5 +13601,4 //Siegfried_Box20 +13602,4 //Kafra_Card_Box30 +13603,4 //Kafra_Card_Box50 +13604,4 //Str_Dish_Box30 +13605,4 //Str_Dish_Box50 +13606,4 //Bubble_Gum_Box1 +13607,4 //Bubble_Gum_Box5 +13608,4 //Megaphone_Box1 +13609,4 //Megaphone_Box5 +13610,4 //Enriched_Elunium_Box5 +13611,4 //Enriched_Oridecon_Box5 +13612,4 //Handcuff_Box +13613,4 //Super_Pet_Egg_Box1 +13614,4 //Super_Pet_Egg_Box2 +13615,4 //Super_Pet_Egg_Box3 +13616,4 //Super_Pet_Egg_Box4 13617,4 //Super_Pet_Egg1 13618,4 //Super_Pet_Egg2 13619,4 //Super_Pet_Egg3 13620,4 //Super_Pet_Egg4 +13621,4 //Greed_Box30 +13622,4 //Greed_Box50 +13623,4 //Greed_Box100 +13624,4 //Flee_30_Scroll_Box +13625,4 //Accuracy_30_Scroll_Box +13626,4 //Super_Card_Pet_Egg_Box1 +13627,4 //Super_Card_Pet_Egg_Box2 +13628,4 //Super_Card_Pet_Egg_Box3 +13629,4 //Super_Card_Pet_Egg_Box4 13630,4 //Super_Card_Pet_Egg1 13631,4 //Super_Card_Pet_Egg2 13632,4 //Super_Card_Pet_Egg3 @@ -457,6 +643,61 @@ 13643,4 //Vigorgra_Package10 13644,4 //Vigorgra_Package11 13645,4 //Vigorgra_Package12 +13646,4 //Infiltrator_Box1 +13647,4 //Muramasa_Box1 +13648,4 //Excalibur_Box1 +13649,4 //Combat_Knife_Box1 +13650,4 //Counter_Dagger_Box1 +13651,4 //Kaiser_Knuckle_Box1 +13652,4 //Pole_Axe_Box1 +13653,4 //Mighty_Staff_Box1 +13654,4 //Right_Epsilon_Box1 +13655,4 //Balistar_Box1 +13656,4 //Diary_Of_Sage_Box1 +13657,4 //Asura_Box1 +13658,4 //Apple_Of_Archer_Box1 +13659,4 //Bunny_Band_Box1 +13660,4 //Sahkkat_Box1 +13661,4 //Lord_Circlet_Box1 +13662,4 //Elven_Ears_Box1 +13663,4 //Steel_Flower_Box1 +13664,4 //Critical_Ring_Box1 +13665,4 //Earring_Box1 +13666,4 //Ring_Box1 +13667,4 //Necklace_Box1 +13668,4 //Glove_Box1 +13669,4 //Brooch_Box1 +13670,4 //Rosary_Box1 +13671,4 //Safety_Ring_Box1 +13672,4 //Vesper_Core01_Box1 +13673,4 //Vesper_Core02_Box1 +13674,4 //Vesper_Core03_Box1 +13675,4 //Vesper_Core04_Box1 +13676,4 //Drooping_Kitty_Box1 +13677,4 //Magestic_Goat_Box1 +13678,4 //Deviruchi_Cap_Box1 +13679,4 //Executioner_Box1 +13680,4 //Brood_Axe_Box1 +13681,4 //Tomahawk_Box1 +13682,4 //Bow_Of_Rudra_Box1 +13683,4 //Cutlas_Box1 +13684,4 //Solar_Sword_Box1 +13685,4 //Sword_Breaker_Box1 +13686,4 //Mail_Breaker_Box1 +13687,4 //Moonlight_Sword_Box1 +13688,4 //Spanner_Box1 +13689,4 //Bok_Choy_Box +13690,4 //Chung_E_Cake_Box +13691,4 //Freyja_Overcoat_Box +13692,4 //Freyja_Boots_Box +13693,4 //Freyja_Cape_Box +13694,4 //Freyja_Crown_Box +13695,4 //Battle_Manual25_Box +13696,4 //Battle_Manual100_Box +13697,4 //J_Blessing10_Box +13698,4 //J_Inc_Agi10_Box +13699,4 //J_Wind_Walk10_Box +13700,4 //J_Adrenaline10_Box 13701,4 //Pet_Egg_Scroll12 13702,4 //Pet_Egg_Scroll13 13703,4 //Pet_Egg_Scroll14 @@ -465,18 +706,200 @@ 13706,4 //Super_Pet_Egg7 13707,4 //Super_Pet_Egg8 13708,4 //Pet_Egg_Scroll_E +13709,4 //BRO_Package_1 +13710,4 //Max_Weight_Up_Box +13711,4 //Small_Life_Potion_Box +13712,4 //Small_Life_Potion_Box30 +13713,4 //Small_Life_Potion_Box50 +13714,4 //Med_Life_Potion_Box +13715,4 //Med_Life_Potion_Box30 +13716,4 //Med_Life_Potion_Box50 +13717,4 //Abrasive_Box5 +13718,4 //Abrasive_Box10 +13719,4 //Regeneration_Box5 +13720,4 //Regeneration_Box10 +13721,4 //Dun_Tele_Scroll_Box10 +13722,4 //Pecopeco_Hairband_Box +13723,4 //Red_Glasses_Box +13724,4 //Whisper_Mask_Box 13725,4 //Ramen_Hat_Box +13726,4 //Gold_Box_ +13727,4 //Silver_Box_ +13728,4 //Gold_Key1_Box +13729,4 //Gold_Key5_Box +13730,4 //Silver_Key1_Box +13731,4 //Silver_Key5_Box +13734,4 //Pecopeco_Hairband_Box1 +13735,4 //Red_Glasses_Box1 +13736,4 //Whisper_Mask_Box1 +13737,4 //Ramen_Hat_Box1 +13738,4 //Glass_Of_Illusion_Box5 +13739,4 //Glass_Of_Illusion_Box10 +13740,4 //Shadow_Armor_S_Box5 +13741,4 //Shadow_Armor_S_Box10 +13742,4 //Shadow_Armor_S_Box30 +13743,4 //Holy_Armor_S_Box5 +13744,4 //Holy_Armor_S_Box10 +13745,4 //Holy_Armor_S_Box30 +13746,4 //S_Def_Potion_Box10 +13747,4 //S_Def_Potion_Box30 +13748,4 //S_Def_Potion_Box50 +13749,4 //B_Def_Potion_Box10 +13750,4 //B_Def_Potion_Box30 +13751,4 //B_Def_Potion_Box50 +13752,4 //S_Mdef_Potion_Box10 +13753,4 //S_Mdef_Potion_Box30 +13754,4 //S_Mdef_Potion_Box50 +13755,4 //B_Mdef_Potion_Box10 +13756,4 //B_Mdef_Potion_Box30 +13757,4 //B_Mdef_Potion_Box50 +13758,4 //Battle_Manual_X3_Box +13759,4 //In_Blue_Herb_Box +13760,4 //Honey_Box +13761,4 //Empty_Bottle_Box +13762,4 //In_Royal_Jelly_Box +13763,4 //5_Anniversary_Coin_Box +13764,4 //Battle_Manual_Box_TW +13765,4 //Certificate_TW_Box +13766,4 //Nagan_Box +13767,4 //Skewer_Box +13768,4 //Survival_Rod_Box +13769,4 //Quadrille_Box +13770,4 //Great_Axe_Box +13771,4 //Bloody_Roar_Box +13772,4 //Hardback_Box 13773,4 //Fire_Brand_Box +13774,4 //Immaterial_Sword_Box +13775,4 //Unholy_Touch_Box +13776,4 //Cloak_Of_Survival_Box +13777,4 //Masquerade_Box +13778,4 //Orc_Hero_Helm_Box +13779,4 //Evil_Wing_Ears_Box +13780,4 //Dark_Blindfold_Box +13781,4 //kRO_Drooping_Kitty_Box +13782,4 //Corsair_Box +13783,4 //Bloody_Iron_Ball_Box +13784,4 //Spiritual_Ring_Box +13785,4 //Nagan_Box1 +13786,4 //Skewer_Box1 +13787,4 //Survival_Rod_Box1 +13788,4 //Quadrille_Box1 +13789,4 //Great_Axe_Box1 +13790,4 //Bloody_Roar_Box1 +13791,4 //Hardback_Box1 +13792,4 //Fire_Brand_Box1 +13793,4 //Immaterial_Sword_Box1 +13794,4 //Unholy_Touch_Box1 +13795,4 //Cloak_Of_Survival_Box1 +13796,4 //Masquerade_Box1 +13797,4 //Orc_Hero_Helm_Box1 +13798,4 //Evil_Wing_Ears_Box1 +13799,4 //Dark_Blindfold_Box1 +13800,4 //kRO_Drooping_Kitty_Box1 +13801,4 //Corsair_Box1 +13802,4 //Bloody_Iron_Ball_Box1 +13803,4 //Spiritual_Ring_Box1 +13804,4 //Fire_Cracker_Love_Box +13805,4 //Fire_Cracker_Wday_Box +13806,4 //Fire_Cracker_Vday_Box +13807,4 //Fire_Cracker_Bday_Box +13808,4 //Fire_Cracker_Xmas_Box +13809,4 //Blue_Gemstone_Box +13810,4 //Blue_Potion_Box +13811,4 //Food_Box_Lv1 +13812,4 //Food_Box_Lv2 +13813,4 //Food_Box_Lv3 +13814,4 //Indonesia_Box +13815,4 //Knife_Goblin_Box +13816,4 //Flail_Goblin_Box +13817,4 //Hammer_Goblin_Box +13818,4 //Red_Deleter_Box +13819,4 //Diabolic_Box +13820,4 //Wanderer_Box +13821,4 //Green_Apple_Box +13822,4 //Whole_Barbecue_Box +13823,4 //Meat_Veg_Skewer_Box +13824,4 //Spirit_Liquor_Box +13825,4 //Green_Box_ +13826,4 //Power_Box1 +13827,4 //Power_Box2 +13828,4 //Resist_Box1 +13829,4 //Resist_Box2 +13830,4 //Stat_Boost1 +13831,4 //Stat_Boost2 +13832,4 //Stat_Boost3 +13833,4 //Stat_Boost4 +13834,4 //Dun_Tele_Scroll2_Box5 +13835,4 //Dun_Tele_Scroll2_Box10 +13836,4 //Mbl_Str_Dish_Box +13837,4 //Mbl_Agi_Dish_Box +13838,4 //Mbl_Int_Dish_Box +13839,4 //Mbl_Dex_Dish_Box +13840,4 //Mbl_Luk_Dish_Box +13841,4 //Mbl_Vit_Dish_Box +13842,4 //Mbl_Kafra_Card_Box +13843,4 //Mbl_Battle_Manual_Box +13844,4 //Heroic_Stone_Box 13845,4 //Mysterious_Travel_Sack1 13846,4 //Mysterious_Travel_Sack2 13847,4 //Mysterious_Travel_Sack3 13848,4 //Mysterious_Travel_Sack4 +13849,4 //WOB_Box_Rune5 +13850,4 //WOB_Box_Rune10 +13851,4 //WOB_Box_Schawaltz5 +13852,4 //WOB_Box_Schawaltz10 +13853,4 //WOB_Box_Rachel5 +13854,4 //WOB_Box_Rachel10 +13855,4 //WOB_Box_Local5 +13856,4 //WOB_Box_Local10 +13857,4 //Spark_Candy_Box5 +13858,4 //Spark_Candy_Box10 +13859,4 //Directive_A_Envelope +13860,4 //Directive_B_Envelope +13861,4 //Mini_Battle_Manual_Box +13862,4 //Trial_Box +13863,4 //Repair_Scroll_Box10 +13864,4 //Hockey_Mask_Box +13865,4 //Observer_Box +13866,4 //Flying_Angel_Box +13867,4 //Neko_Mimi_Box +13868,4 //MFH_Box +13869,4 //Chick_Hat_Box +13870,4 //New_Style_Box 13871,4 //Magician_Card_Box 13872,4 //Acolyte_Card_Box 13873,4 //Archer_Card_Box 13874,4 //Swordman_Card_Box 13875,4 //Thief_Card_Box 13876,4 //Merchant_Card_Box +13877,4 //Clock_Tower_Card_Box +13878,4 //Geffenia_Card_Box +13879,4 //Owl_Card_Box +13880,4 //Ghost_Card_Box +13881,4 //Nightmare_Card_Box +13882,4 //Curse_Card_Box +13883,4 //Sleep_Card_Box +13884,4 //Freeze_Card_Box +13885,4 //Stun_Card_Box +13886,4 //Silence_Card_Box +13887,4 //Blind_Card_Box +13888,4 //Chaos_Card_Box +13889,4 //Elunium_Box_ +13890,4 //Oridecon_Box_ +13891,4 //Fire_Converter_Box +13892,4 //Water_Converter_Box +13893,4 //Wind_Converter_Box +13894,4 //Earth_Converter_Box +13895,4 //Starter_Pack +13896,4 //Mimic_Scroll_Box5 +13897,4 //Disguise_Scroll_Box5 +13898,4 //Alice_Scroll_Box5 +13899,4 //Mimic_Scroll_Box10 +13900,4 //Disguise_Scroll_Box10 +13901,4 //Alice_Scroll_Box10 +13902,4 //Fish_Head_Hat_Box +13903,4 //Santa_Poring_Hat_Box +13904,4 //Bell_Ribbon_Box 13905,4 //Hard_Core_Set_Box 13906,4 //Kitty_Set_Box 13907,4 //Soft_Core_Set_Box @@ -484,19 +907,327 @@ 13909,4 //MVP_Hunt_Box 13910,4 //Brewing_Box 13911,4 //Christmas_Pet_Scroll +13912,4 //Pty_Blessing_Box +13913,4 //Pty_Inc_Agi_Box +13914,4 //Pty_Assumptio_Box +13915,4 //Love_Angel_Box +13916,4 //Squirrel_Box +13917,4 //Gogo_Box +13918,4 //Drooping_W_Kitty_Box +13919,4 //L_Magestic_Goat_Box +13920,4 //Satanic_Chain_P_Box +13921,4 //Antique_Pipe_Box +13922,4 //Rabbit_Ear_Hat_Box +13923,4 //Darkness_Helm_Box +13924,4 //L_Orc_Hero_Helm_Box 13925,4 //Lucky_Scroll08 +13926,4 //Crusader_Card_Box +13927,4 //Alchemist_Card_Box +13928,4 //Rogue_Card_Box +13929,4 //Bard_Dancer_Card_Box +13930,4 //Sage_Card_Box +13931,4 //Monk_Card_Box +13932,4 //Sylph_Box +13933,4 //Undine_Box +13934,4 //Salamander_Box +13935,4 //Soul_Box +13936,4 //Noum_Bpx +13937,4 //Robo_Eye_Box +13938,4 //Twin_Ribbon_Box +13939,4 //Diadem_Box +13940,4 //Siege_Tele_Scroll_Box +13941,4 //TW_Valentine_Scroll +13942,4 //Love_Angel_Box_1m +13943,4 //Squirrel_Box_1m +13944,4 //Gogo_Box_1m 13945,4 //Br_SwordPackage 13946,4 //Br_MagePackage 13947,4 //Br_AcolPackage 13948,4 //Br_ArcherPackage 13949,4 //Br_MerPackage 13950,4 //Br_ThiefPackage +13951,4 //Wasteland_Outlaw_Box +13952,4 //Lever_Action_Rifle_Box 13953,4 //All_In_One_Ring_Box +13954,4 //Spiritual_Tunic_Box +13955,4 //Recuperative_Armor_Box +13956,4 //Shelter_Resistance_Box +13957,4 //Sylphid_Manteau_Box +13958,4 //Refresh_Shoes_Box +13959,4 //Toast_Box +13960,4 //Name_Change_Coupon_Box +13961,4 //Mojji_Box +13962,4 //Deprotai_Doll_Hat_Box +13963,4 //Claris_Doll_Hat_Box +13964,4 //Sorin_Doll_Hat_Box +13965,4 //Tayelin_Doll_Hat_Box +13966,4 //Binit_Doll_Hat_Box +13967,4 //Debril_Doll_Hat_Box +13968,4 //Bubblegum_Lower_Box +13969,4 //Lucky_Clip_Box +13970,4 //Iron_10_Box +13971,4 //Steel_10_Box +13972,4 //Coal_10_Box +13973,4 //Poison_Bottle_30_Box +13974,4 //TW_Scroll01 +13975,4 //Picture_Diary_Box +13976,4 //Mini_Heart_Box +13977,4 //Newcomer_Box +13978,4 //Kid_Box +13979,4 //Magic_Castle_Box +13980,4 //Bulging_Head_Box +13981,4 //Picture_Diary_Box_1m +13982,4 //Mini_Heart_Box_1m +13983,4 //Newcomer_Box_1m +13984,4 //Kid_Box_1m +13985,4 //Magic_Castle_Box_1m +13986,4 //Bulging_Head_Box_1m +13987,4 //Ori_Stone_5_Box +13988,4 //Ori_Stone_50_Box 13989,4 //Acidbomb_10_Box +13990,4 //Job_Manual50_Box +13991,4 //Tiger_Mask_Box +13992,4 //Cat_Hat_Box +13993,4 //Alice_Doll_Box +13994,4 //Speed_Up_Potion_Box5 +13995,4 //Speed_Up_Potion_Box10 +13996,4 //Big_Bun_Box100 +13997,4 //Big_Bun_Box500 +13998,4 //Giant_Fly_Wing_Box500 +13999,4 //Pill__Box100 +14000,4 //Pill__Box500 14001,4 //Basic_Siege_Supply_Box 14002,4 //Adv_Siege_Supply_Box 14003,4 //Elite_Siege_Supply_Box +14004,4 //Poison_Bottle_10_Box +14005,4 //Poison_Bottle_5_Box +14006,4 //F_Drooping_W_Kitty_Box +14007,4 //F_Rabbit_Ear_Hat_Box +14008,4 //F_L_Orc_Hero_Helm_Box +14009,4 //F_Love_Angel_Box +14010,4 //F_Squirrel_Box +14011,4 //F_Gogo_Box +14012,4 //F_Love_Angel_Box_1m +14013,4 //F_Squirrel_Box_1m +14014,4 //F_Gogo_Box_1m +14015,4 //F_Wasteland_Outlaw_Box +14016,4 //F_Lever_Action_Rifle_Box +14017,4 //F_All_In_One_Ring_Box +14018,4 //F_Spritual_Tunic_Box +14019,4 //F_Recuperative_Box +14020,4 //F_Shelter_Resist_Box +14021,4 //F_Sylphid_Manteau_Box +14022,4 //F_Refresh_Shoes_Box +14023,4 //F_Toast_Box +14024,4 //F_Robo_Eye_Box +14025,4 //F_Twin_Ribbon_Box +14026,4 //F_Diadem_Box +14027,4 //F_Fish_Head_Hat_Box +14028,4 //F_Santa_Poring_Hat_Box +14029,4 //F_Bell_Ribbon_Box +14030,4 //F_Mimic_Scroll_Box5 +14031,4 //F_Disguise_Scroll_Box5 +14032,4 //F_Alice_Scroll_Box5 +14033,4 //F_Mimic_Scroll_Box10 +14034,4 //F_Disguise_Scroll_Box10 +14035,4 //F_Alice_Scroll_Box10 +14036,4 //F_New_Style_Coupon_Box +14037,4 //F_Repair_Scroll_Box +14038,4 //F_Repair_Scroll_Box10 +14039,4 //F_Hockey_Mask_Box +14040,4 //F_Observer_Box +14041,4 //F_WOB_Rune_Box5 +14042,4 //F_WOB_Rune_Box10 +14043,4 //F_WOB_Schwaltz_Box5 +14044,4 //F_WOB_Schwaltz_Box10 +14045,4 //F_WOB_Rachel_Box5 +14046,4 //F_WOB_Rachel_Box10 +14047,4 //F_WOB_Local_Box5 +14048,4 //F_WOB_Local_Box10 +14049,4 //F_Spark_Candy_Box5 +14050,4 //F_Spark_Candy_Box10 +14051,4 //F_Dun_Tel_Scroll2_Box5 +14052,4 //F_Dun_Tel_Scroll2_Box10 +14053,4 //F_Little_Angel_Doll_Box +14054,4 //F_Triple_Poring_Hat_Box +14055,4 //F_Nagan_Box +14056,4 //F_Skewer_Box +14057,4 //F_Survival_Rod_Box +14058,4 //F_Quadrille_Box +14059,4 //F_Great_Axe_Box +14060,4 //F_Bloody_Roar_Box +14061,4 //F_Hardback_Box +14062,4 //F_Fire_Brand_Box +14063,4 //F_Immaterial_Sword_Box +14064,4 //F_Unholy_Touch_Box +14065,4 //F_Clack_Of_Servival_Box +14066,4 //F_Masquerade_Box +14067,4 //F_Orc_Hero_Helm_Box +14068,4 //F_Ear_Of_Devil_Wing_Box +14069,4 //F_Dark_Blindfold_Box +14070,4 //F_K_Drooping_Kitty_Box +14071,4 //F_Corsair_Box +14072,4 //F_Bloody_Iron_Ball_Box +14073,4 //F_Spiritual_Ring_Box +14074,4 //F_G_O_I_Box5 +14075,4 //F_G_O_I_Box10 +14076,4 //F_Shadow_Armor_S_Box5 +14077,4 //F_Shadow_Armor_S_Box10 +14078,4 //F_Shadow_Armor_S_Box30 +14079,4 //F_Holy_Armor_S_Box5 +14080,4 //F_Holy_Armor_S_Box10 +14081,4 //F_Holy_Armor_S_Box30 +14082,4 //FS_Def_Potion_Box10 +14083,4 //FS_Def_Potion_Box30 +14084,4 //FS_Def_Potion_Box50 +14085,4 //FB_Def_Potion_Box10 +14086,4 //FB_Def_Potion_Box30 +14087,4 //FB_Def_Potion_Box50 +14088,4 //FS_Mdef_Potion_Box10 +14089,4 //FS_Mdef_Potion_Box30 +14090,4 //FS_Mdef_Potion_Box50 +14091,4 //FB_Mdef_Potion_Box10 +14092,4 //FB_Mdef_Potion_Box30 +14093,4 //FB_Mdef_Potion_Box50 +14094,4 //F_Flying_Angel_Box +14095,4 //F_Cat_Hat_Box +14096,4 //F_M_F_H_Box +14097,4 //F_Chick_Hat_Box +14098,4 //F_Pecopeco_Hairband_Box +14099,4 //F_Red_Glasses_Box +14100,4 //F_Whisper_Mask_Box +14101,4 //F_Ramen_Hat_Box +14102,4 //F_Dun_Tele_Scroll1_Box +14103,4 //F_Max_Weight_Up_Box +14104,4 //F_S_Life_Potion_Box +14105,4 //F_S_Life_Potion_Box30 +14106,4 //F_S_Life_Potion_Box50 +14107,4 //F_M_Life_Potion_Box +14108,4 //F_M_Life_Potion_Box30 +14109,4 //F_M_Life_Potion_Box50 +14110,4 //F_Abrasive_Box5 +14111,4 //F_Abrasive_Box10 +14112,4 //F_Regeneration_Box5 +14113,4 //F_Regeneration_Box10 +14114,4 //F_Dun_Tele_Scroll_Box10 +14115,4 //F_Infiltrator_Box +14116,4 //F_Muramasa_Box +14117,4 //F_Excalibur_Box +14118,4 //F_Combat_Knife_Box +14119,4 //F_Counter_Dagger_Box +14120,4 //F_Kaiser_Knuckle_Box +14121,4 //F_Mighty_Staff_Box +14122,4 //F_Right_Epsilon_Box +14123,4 //F_Balistar_Box +14124,4 //F_Diary_Of_Great_Sage +14125,4 //F_Asura_Box +14126,4 //F_Apple_Of_Archer_Box +14127,4 //F_Bunny_Band_Box +14128,4 //F_Sahkkat_Box +14129,4 //F_Lord_Circlet_Box +14130,4 //F_Elven_Ears_Box +14131,4 //F_Steel_Flower_Box +14132,4 //F_Critical_Ring_Box +14133,4 //F_Earring_Box +14134,4 //F_Ring_Box +14135,4 //F_Necklace_Box +14136,4 //F_Glove_Box +14137,4 //F_Brooch_Box +14138,4 //F_Rosary_Box +14139,4 //F_Safety_Ring_Box +14140,4 //F_Vesper_Core_Box01 +14141,4 //F_Vesper_Core_Box02 +14142,4 //F_Vesper_Core_Box03 +14143,4 //F_Vesper_Core_Box04 +14144,4 //F_Vigorgra_Package1 +14145,4 //F_Vigorgra_Package2 +14146,4 //F_Vigorgra_Package3 +14147,4 //F_Vigorgra_Package4 +14148,4 //F_Vigorgra_Package5 +14149,4 //F_Vigorgra_Package6 +14150,4 //F_Vigorgra_Package7 +14151,4 //F_Vigorgra_Package8 +14152,4 //F_Vigorgra_Package9 +14153,4 //F_Vigorgra_Package10 +14154,4 //F_Vigorgra_Package11 +14155,4 //F_Vigorgra_Package12 +14156,4 //F_Battle_Manual_Box +14157,4 //F_Insurance_Package +14158,4 //F_Bubble_Gum_Box +14159,4 //F_Str_Dish_Box +14160,4 //F_Agi_Dish_Box +14161,4 //F_Int_Dish_Box +14162,4 //F_Dex_Dish_Box +14163,4 //F_Luk_Dish_Box +14164,4 //F_Vit_Dish_Box +14165,4 //F_Kafra_Card_Box +14166,4 //F_Giant_Fly_Wing_Box +14167,4 //F_Neuralizer_Box +14168,4 //F_Convex_Mirror_Box +14169,4 //F_Blessing_10_Scroll_Box +14170,4 //F_Inc_Agi_10_Scroll_Box +14171,4 //F_Aspersio_5_Scroll_Box +14172,4 //F_Assumptio_5_Scroll_Box +14173,4 //F_Wind_Walk_10_Scroll_Box +14174,4 //F_Adrenaline_Scroll_Box +14175,4 //F_Megaphone_Box +14176,4 //F_Enriched_Elunium_Box +14177,4 //F_Enriched_Oridecon_Box +14178,4 //F_Token_Of_Siegfried_Box +14179,4 //F_Giant_Fly_Wing_Box50 +14180,4 //F_Giant_Fly_Wing_Box100 +14181,4 //F_Dex_Dish_Box30 +14182,4 //F_Dex_Dish_Box50 +14183,4 //F_Luk_Dish_Box30 +14184,4 //F_Luk_Dish_Box50 +14185,4 //F_Inc_Agi_10_Box30 +14186,4 //F_Inc_Agi_10_Box50 +14187,4 //F_Vit_Dish_Box30 +14188,4 //F_Vit_Dish_Box50 +14189,4 //F_Insurance_Package30 +14190,4 //F_Insurance_Package50 +14191,4 //F_Convex_Mirror_Box5 +14192,4 //F_Convex_Mirror_Box30 +14193,4 //F_Blessing10_Box30 +14194,4 //F_Blessing10_Box50 +14195,4 //F_Adrenaline10_Box30 +14196,4 //F_Adrenaline10_Box50 +14197,4 //F_Assumptio_5_Box30 +14198,4 //F_Assumptio_5_Box50 +14199,4 //F_Aspersio_5_Box30 +14200,4 //F_Aspersio_5_Box50 +14201,4 //F_Agi_Dish_Box30 +14202,4 //F_Agi_Dish_Box50 +14203,4 //F_Wind_Walk10_Box30 +14204,4 //F_Wind_Walk10_Box50 +14205,4 //F_Int_Dish_Box30 +14206,4 //F_Int_Dish_Box50 +14207,4 //F_Battle_Manual_Box1 +14208,4 //F_Battle_Manual_Box5 +14209,4 //F_Siegfried_Box5 +14210,4 //F_Siegfried_Box20 +14211,4 //F_Kafra_Card_Box30 +14212,4 //F_Kafra_Card_Box50 +14213,4 //F_Str_Dish_Box30 +14214,4 //F_Str_Dish_Box50 +14215,4 //F_Bubble_Gum_Box1 +14216,4 //F_Bubble_Gum_Box5 +14217,4 //F_Megaphone_Box1 +14218,4 //F_Megaphone_Box5 +14219,4 //F_Enriched_Elunium_Box5 +14220,4 //FEnriched_Oridecon_Box5 +14221,4 //MP_Scroll_Box +14222,4 //MP_Scroll_Box30 +14223,4 //MP_Scroll_Box50 +14224,4 //Quagmire_Scroll_Box +14225,4 //Quagmire_Scroll_Box30 +14226,4 //Quagmire_Scroll_Box50 +14227,4 //Healing_Staff_Box +14228,4 //Praxinus_Box 14229,4 //Sakura_Scroll +14232,4 //Yggdrasilberry_Box_ +14233,4 //Dead_Tree_Branch_Box1 +14234,4 //Dead_Tree_Branch_Box2 14242,4 //Beholder_Ring_Box 14243,4 //Hallow_Ring_Box 14244,4 //Clamorous_Ring_Box @@ -507,20 +1238,175 @@ 14249,4 //Bloody_Ring_Box 14250,4 //Satanic_Ring_Box 14251,4 //Dragoon_Ring_Box +14252,4 //Beholder_Ring_Box2 +14253,4 //Hallow_Ring_Box2 +14254,4 //Clamorous_Ring_Box2 +14255,4 //Chemical_Ring_Box2 +14256,4 //Insecticide_Ring_Box2 +14257,4 //Fisher_Ring_Box2 +14258,4 //Decussate_Ring_Box2 +14259,4 //Bloody_Ring_Box2 +14260,4 //Satanic_Ring_Box2 +14261,4 //Dragoon_Ring_Box2 +14283,4 //Marriage_Covenant_Box +14289,4 //Cloth_Dye_Coupon_Box +14290,4 //Cloth_Dye_Coupon2_Box 14296,4 //Angel_Scroll 14297,4 //Devil_Scroll 14298,4 //Surprise_Scroll +14300,4 //Mask_Of_Ifrit_Box +14301,4 //Ifrit's_Ear_Box +14304,4 //Scuba_Mask_Box 14306,4 //RWC_Special_Scroll 14307,4 //RWC_Limited_Scroll +14308,4 //Ardor_Scroll +14314,4 //PhreeoniS_Box +14315,4 //GhostringS_Box 14316,4 //July7_Scroll 14317,4 //Bacsojin_Scroll +14343,4 //Spiked_Scarf_Box +14344,4 //Rainbow_Scarf_Box 14345,4 //Animal_Scroll +14349,4 //Mental_Potion20_Box +14350,4 //Mental_Potion50_Box +14351,4 //Tyr's_Blessing20_Box +14352,4 //Tyr's_Blessing50_Box +14361,4 //Orc_HeroS_Box +14362,4 //Orc_LoadS_Box 14363,4 //Heart_Scroll +14372,4 //Powder_Snow_Box +14375,4 //Holy_Celestial_Axe_Box +14376,4 //Angeling_Pot_Box +14377,4 //Shout_Megaphone_Box +14379,4 //Love_Daddy_Box +14380,4 //Anubis_Helm_Box +14381,4 //Piercing_Box_M +14382,4 //Lich_Bone_Box_M +14383,4 //Long_Horn_Box_M +14384,4 //Hunting_Spear_Box_M +14385,4 //Death_Note_Box_M +14386,4 //Destruction_Box_M +14387,4 //Rider_Insignia_Box_M +14388,4 //Mithril_Cape_Box_M +14389,4 //Sniping_Box_M +14390,4 //Orleans_Box_M +14391,4 //Spiritual_Box_M +14392,4 //Variant_Box_M +14393,4 //Almighty_Charm_Box +14407,4 //Xmas_Scroll 14408,4 //New_Year_Scroll +14438,4 //Honglyun's_Sword_Box +14439,4 //Power_Of_Thor_Box +14440,4 //Dice_Hat_Box +14441,4 //King_Tiger_Doll_Hat_Box +14442,4 //Wondering_Wolf_Helm_Box +14443,4 //Pizza_Hat_Box +14444,4 //Icecream_Hat_Box +14447,4 //Pirate's_Pride_Box +14448,4 //Necromencer's_Hood_Box +14459,4 //Rabbit_Magic_Hat_Box +14460,4 //China_Wedding_Veil_Box +14461,4 //Asara_Fairy_Hat_Box 14466,4 //Valentine_Pledge_Box 14469,4 //Ox_Tail_Scroll +14485,4 //Academy_Badge_Box +14486,4 //Academy_Fresh_Hat_Box +14487,4 //Academy_Gradu_Cap_Box +14488,4 //Blue_Pajamas_Hat_Box +14489,4 //Pink_Pajamas_Hat_Box +14490,4 //Shark_Hat_Box +14494,4 //Samambaia_Box +14495,4 //Aquarius_Diadem_Box +14496,4 //Aquarius_Crown_Box +14497,4 //Pisces_Diadem_Box +14498,4 //Pisces_Crown_Box +14499,4 //Peacock_Feather_Box +16131,4 //Lady_Tanee_Doll_Box +16132,4 //Lunatic_Hat_Box +16133,4 //G_Staff_Of_Light_Box +16134,4 //King_Frog_Hat_Box +16135,4 //Evil's_Bone_Hat_Box +16185,4 //Raven_Cap_Box +16186,4 //B_Dragon_Hat_Box +16192,4 //Quati_Hat_Box +16193,4 //Tucan_Hat_Box +16194,4 //Jaguar_Hat_Box +16195,4 //Tw_March_Scroll +16226,4 //Aries_Diadem_Box +16227,4 //Aries_Crown_Box +16228,4 //RJC_Katusa_Box +16229,4 //Scarlet_Rose_Box +16230,4 //Taurus_Diadem_Box +16231,4 //Taurus_Crown_Box +16232,4 //Reginleif_Box +16235,4 //Octopus_Hat_Box +16236,4 //Leaf_Cat_Hat_Box +16237,4 //Fur_Seal_Hat_Box +16238,4 //Wild_Rose_Hat_Box +16239,4 //Saci_Hat_Box +16244,4 //Dolor_Hat_Box 16245,4 //Tw_April_Scroll +16246,4 //Crown_Of_Deceit_Box +16247,4 //Dragon_Arhat_Mask_Box +16248,4 //Tiger_Arhat_Mask_Box +16249,4 //Knight_Gift_Box +16251,4 //Gemini_Diadem_Box +16252,4 //Gemini_Crown_Box +16253,4 //Rabbit_Scroll +16254,4 //Energizing_Potion_Box +16257,4 //Buddah_Scroll +16258,4 //HD_Bradium_Box5 +16259,4 //HD_Carnium_Box5 +16260,4 //HD_Bradium_Box10 +16261,4 //HD_Carnium_Box10 +16269,4 //Cancer_Diadem_Box +16270,4 //Cancer_Crown_Box 16304,4 //Evil_Incarnation +16305,4 //Upg_Guard_Box +16306,4 //F_Upg_Guard_Box +16307,4 //Upg_Buckler_Box +16308,4 //F_Upg_Buckler_Box +16309,4 //Upg_Shield_Box +16310,4 //F_Upg_Shield_Box +16311,4 //Upg_Shoes_Box +16312,4 //F_Upg_Shoes_Box +16313,4 //Upg_Boots_Box +16314,4 //F_Upg_Boots_Box +16315,4 //Upg_Greave_Box +16316,4 //F_Upg_Greave_Box +16317,4 //Upg_Hood_Box +16318,4 //F_Upg_Hood_Box +16319,4 //Upg_Muffler_Box +16320,4 //F_Upg_Muffler_Box +16321,4 //Upg_Manteau_Box +16322,4 //F_Upg_Manteau_Box +16323,4 //Upg_Clip_Box +16324,4 //F_Upg_Clip_Box +16327,4 //Upg_Adv_Suit_Box +16328,4 //F_Upg_Adv_Suit_Box +16329,4 //Upg_Coat_Box +16330,4 //F_Upg_Coat_Box +16331,4 //Upg_Saint_Robe_Box +16332,4 //F_Upg_Saint_Robe_Box +16333,4 //Upg_Tights_Box +16334,4 //F_Upg_Tights_Box +16335,4 //Upg_Thief_Cloth_Box +16336,4 //F_Upg_Thief_Cloth_Box +16337,4 //Upg_Mail_Box +16338,4 //F_Upg_Mail_Box +16339,4 //Upg_Formal_Dress_Box +16340,4 //F_Upg_Formal_Dress_Box +16341,4 //Greed_Clip_Box +16342,4 //F_Greed_Clip_Box +16343,4 //Leo_Crown_Box +16344,4 //Leo_Diadem_Box +16345,4 //F_Leo_Crown_Box +16346,4 //F_Leo_Diadem_Box +16360,4 //Desert_Prince_Box +16361,4 //FDesert_Prince_Box +16362,4 //Sigrun's_Wing_Box +16363,4 //FSigrun's_Wing_Box +16368,4 //Virgo_Crown_Box 16371,4 //Tw_Aug_Scroll 16372,4 //F_Clover_Box_Mouth 16374,4 //Mouth_Bubble_Gum_Box @@ -528,27 +1414,84 @@ 16386,4 //F_Clover_Box_Mouth4 16389,4 //BGum_Box_In_Mouth2 16390,4 //BGum_Box_In_Mouth4 +16393,4 //HD_Ori_Box5 +16394,4 //HD_Ori_Box10 +16395,4 //HD_Elu_Box5 +16396,4 //HD_Elu_Box10 +16397,4 //Virgo_Diadem_Box +16405,4 //Midgard_Coin_Box +16406,4 //FMidgard_Coin_Box 16409,4 //Tw_Sep_Scroll +16410,4 //Chung_Hairband_Box +16411,4 //FChung_Hairband_Box +16412,4 //Ice_Wing_Ear_Box +16413,4 //FIce_Wing_Ear_Box +16414,4 //Turtle_Hat_Box +16415,4 //FTurtle_Hat_Box +16436,4 //Libra_Crown_Box +16438,4 //Libra_Diadem_Box +16440,4 //Filir_Wing_Box 16446,4 //Tw_October_Scroll +16447,4 //Scorpio_Crown_Box +16448,4 //Scorpio_Diadem_Box +16450,4 //FScorpio_Diadem_Box 16456,4 //My_Scroll1 16457,4 //Tw_Nov_Scroll +16461,4 //Red_Wing_Hat_Box +16462,4 //FRed_Wing_Hat_Box 16466,4 //My_Scroll2 +16503,4 //E_Insurance_Package 16542,4 //Xmas_Bless +16543,4 //Snowman_Hat_Box +16544,4 //FSnowman_Hat_Box +16548,4 //Sagittarius_Crown_Box +16549,4 //Sagittarius_Diadem_Box 16555,4 //Pr_Reset_Stone_Box 16556,4 //FPr_Reset_Stone_Box +16557,4 //CP_Helm_Scroll10 +16558,4 //CP_Shield_Scroll10 +16559,4 //CP_Armor_Scroll10 +16560,4 //CP_Weapon_Scroll10 +16561,4 //CP_Scroll_Package 16562,4 //Majestic_Devil_Scroll +16563,4 //BM100_Box_5 +16565,4 //Capricorn_Crown_Box +16567,4 //Capricorn_Diadem_Box +16568,4 //FCapricorn_Diadem_Box +16569,4 //Summber_Scroll 16576,4 //Illusion_Nothing +16577,4 //Dragon_Captain +16582,4 //Red_Bunny_Band_Box +16584,4 //Sloth_Hat_Box +16585,4 //F_Sloth_Hat_Box +16586,4 //Duneyrr_Helm_Box +16587,4 //F_Duneyrr_Helm_Box +16600,4 //Spring_Flower_Scr_Tw +16601,4 //Blue_Arara_Hat_Box +16602,4 //F_Blue_Arara_Hat_Box +16619,4 //Yellow_Bunnyband_Box +16631,4 //Aributa_Scroll 16638,4 //Life_Ribbon_Box 16639,4 //Life_Ribbon_Box2 16640,4 //Life_Ribbon_Box3 16652,4 //Flame_Light +16653,4 //BM75_10Box +16654,4 //Valiant_Will +16664,4 //Leo_Scroll +16665,4 //Virgo_Scroll 16666,4 //Magic_Candy_Box10 16673,4 //Libra_Scroll 16675,4 //Splash_Scroll 16681,4 //BR_Independence_Scroll 16682,4 //Boarding_Halter_Box +16683,4 //B_Halter_Box_30Days +16684,4 //Wing_Of_Fly_Box10 +16685,4 //Wing_Of_Fly_Box50 +16686,4 //Wing_Of_Fly_Box100 16687,4 //RWC2010_SuitcaseA 16688,4 //RWC2010_SuitcaseB +16691,4 //Scorpius_Scroll +16740,4 //Ptotection_Seagod_Box 16741,4 //Hairtail_Box1 16742,4 //Hairtail_Box2 16743,4 //Spearfish_Box1 @@ -561,6 +1504,10 @@ 16750,4 //Malang_Crab_Box2 16751,4 //Brindle_Eel_Box1 16752,4 //Brindle_Eel_Box2 +16753,4 //Unbreak_Weap_Box +16754,4 //F_Unbreak_Weap_Box +16755,4 //Unbreak_Def_Box +16756,4 //F_Unbreak_Def_Box 16757,4 //Hallo_Scroll 16760,4 //Umbala_Spirit_Box2 16761,4 //F_Umbala_Spirit_Box2 @@ -575,18 +1522,38 @@ 16775,4 //Sagittarius_Scroll 16826,4 //Sagittarius_Scr_Box 16972,4 //Weather_Report_Box +16973,4 //Yellow_Hat_Box 16974,4 //Comin_Actor_Box +16975,4 //Singing_Bird_Box 16976,4 //Hen_Set_Box +16977,4 //Red_Minicrown_Box 16979,4 //Silvervine_Fruit_Box4 16990,4 //Sagittar_Diadem_Scroll 16991,4 //Sagittar_Di_Scroll_Box +16992,4 //Butterfly_Wing_Box20 +16993,4 //Butterfly_Wing_Box50 +16995,4 //Old_Hat_Box 16996,4 //Capri_Crown_Scroll 16997,4 //Capri_Crown_Scroll_Box +16998,4 //Archangel_Wing_Box +16999,4 //Bravery_Bag_Box +17000,4 //Wander_Man_Box5 +17001,4 //Wander_Man_Box10 +17002,4 //Wicked_Nymph_Box5 +17003,4 //Wicked_Nymph_Box10 +17004,4 //Kasa_Scroll_Box5 +17005,4 //Kasa_Scroll_Box10 +17006,4 //Salamander_Box5 +17007,4 //Salamander_Box10 +17008,4 //Teddy_Bear_Box5 +17009,4 //Teddy_Bear_Box10 17011,4 //Capricon_Di_Scroll 17012,4 //Capricon_Di_Scroll_Box 17013,4 //Malang_Woe_Encard_Box 17016,4 //Aquarius_Diadem_Scroll 17017,4 //Aquarius_Di_Scroll_Box +17018,4 //Libra_Scroll2 +17019,4 //Scorpio_Scroll2 17020,4 //Tw_Nov_Scroll2 17021,4 //Summer_Scroll3 17022,4 //Super_Pet_Egg1_2 @@ -596,25 +1563,107 @@ 17026,4 //Boitata_Scroll 17028,4 //Pisces_Diadem_Scroll 17029,4 //Pisces_Diadem_Box +17030,4 //St_Pat_Hat_box 17035,4 //Energetic_Pisces_Scroll 17036,4 //Energetic_Pisces_Box +17037,4 //Trans_Box_Devi +17038,4 //Trans_Box_Ray_Arch +17039,4 //Trans_Box_Mavka +17040,4 //Trans_Box_Marduk +17041,4 //Trans_Box_Banshee +17042,4 //Trans_Box_Poring +17043,4 //Trans_Box_Golem 17050,4 //Aries_Scroll 17051,4 //Aries_Scroll_Box +17052,4 //Holy_Mom_Blaze_Box +17056,4 //Wiz_Card_Album +17057,4 //Swordman_Card_Album +17058,4 //Thief_Card_Album +17059,4 //Acolyte_Card_Album +17060,4 //Merchant_Card_Album +17061,4 //Archer_Card_Album 17062,4 //Taurus_Diadem_Scroll 17063,4 //Taurus_Di_Scroll_Box +17064,4 //Tw_Sagitt_Scroll +17066,4 //Poison_Bottle_Box50 +17067,4 //Poison_Bottle_Box100 +17068,4 //Acidbomb_Box50 +17069,4 //Acidbomb_Box100 +17070,4 //Acidbomb_Box500 +17071,4 //Superb_Fish_Box50 +17072,4 //Superb_Fish_Box100 +17073,4 //Superb_Fish_Box500 +17074,4 //Empty_Bottle_Box10 +17075,4 //Empty_Bottle_Box100 +17076,4 //Empty_Bottle_Box500 17077,4 //Taurus_Crown_Scroll 17078,4 //Taurus_Crown_Scroll_Box +17079,4 //Indonesia_Box2 +17080,4 //Scorpio_Scroll3 +17081,4 //Yggdrasil_Crown_Box 17082,4 //Gemi_Diadem_Scroll 17083,4 //Gemi_Diadem_Scroll_Box +17084,4 //Upg_Katar_Box +17085,4 //Upg_Two_Handed_Axe_Box +17086,4 //Upg_Lance_Box +17087,4 //Upg_Book_Box +17088,4 //Upg_Staff_Box +17089,4 //Upg_Dagger_Box +17090,4 //Upg_Revolver_Box +17091,4 //Upg_Mace_Box +17092,4 //Upg_Bow_Box +17093,4 //Upg_Twohand_Sword_Box +17094,4 //Upg_Katar_Box2 +17095,4 //Upg_Two_Handed_Axe_Box2 +17096,4 //Upg_Lance_Box2 +17097,4 //Upg_Book_Box2 +17098,4 //Upg_Staff_Box2 +17099,4 //Upg_Dagger_Box2 +17100,4 //Upg_Revolver_Box2 +17101,4 //Upg_Mace_Box2 +17102,4 //Upg_Bow_Box2 +17103,4 //Upg_Twohand_Sword_Box2 +17104,4 //HD_Oridecon_50Box +17105,4 //HD_Elunium_50Box +17106,4 //Max_Weight_Up_10Box 17107,4 //Gemi_Crown_Scroll 17108,4 //Gemi_Crown_Scroll_Box +17109,4 //Capri_Scroll +17110,4 //Aquarius_Scroll +17113,4 //Pisces_Scroll +17114,4 //Horn_Of_Ancient_Box +17115,4 //Sprout_Hat_Box +17116,4 //Mercury_Helm_Box +17117,4 //Aries_Scroll +17118,4 //ASPD_Potion_Box10 +17120,4 //Taurus_Scroll +17121,4 //Starry_Scroll +17122,4 //Immuned_Shield_Box +17123,4 //Black_Devil_Mask_Box +17124,4 //Cat_Ears_Beret_Box +17125,4 //Red_Bread_Hat_Box +17126,4 //ASPD_Potion_Box10_2 +17127,4 //Leo_Scroll2 +17134,4 //RWC_Scroll 17138,4 //Ms_Cancer_Scroll 17139,4 //RWC_Super_Scroll 17140,4 //Leo_Scroll 17141,4 //Ms_Virgo_Scroll 17143,4 //Ms_Scorpio_Scroll +17146,4 //Dep_Alice_Hat_Box +17147,4 //Ribbon_Chef_Hat_Box +17152,4 //Bridal_Ribbon_Box +17155,4 //Upg_Huuma_Shuriken_Box 17156,4 //TCG_Card_Scroll +17157,4 //Vital_Flower_Box +17158,4 //Flame_Gemstone_Box +17162,4 //Boarding_Halter_Box7 17165,4 //Challenge_Kit +17176,4 //Boarding_Halter_Box3 +17181,4 //Jan_Groove_Box +17184,4 //3rd_Test_Pass_Box +17203,4 //Free_Pass_Box +17207,4 //Idn_Heart_Scroll 17209,4 //Tw_Rainbow_Scroll 17210,4 //Tw_Red_Scroll 17211,4 //Tw_Orange_Scroll @@ -627,9 +1676,30 @@ 17238,4 //Scroll_Of_Holiness 17239,4 //Horned_Scroll 17240,4 //Mercury_Scroll +17245,4 //Idn_Independ_Scroll 17251,4 //C_Wing_Of_Fly_3Day_Box 17252,4 //RWC_2012_Set_Box +17253,4 //RWC_2012_Ring_Box +17254,4 //RWC_2012_Pendant_Box 17256,4 //Good_Student_Gift_Box 17257,4 //Bad_Student_Gift_Box 17262,4 //Ex_Def_Potion_Box +17270,4 //STR_Biscuit_Stick_Box +17271,4 //VIT_Biscuit_Stick_Box +17272,4 //AGI_Biscuit_Stick_Box +17273,4 //INT_Biscuit_Stick_Box +17274,4 //DEX_Biscuit_Stick_Box +17275,4 //LUK_Biscuit_Stick_Box +//17297,4 //B_Halter_Box_1year +//17318,4 //10_Anniv_Package +//17319,4 //10_Anniv_Collection +//17327,4 //Fashion_Costume_Box1 +//17328,4 //Fashion_Costume_Box2 +//17329,4 //Fashion_Costume_Box3 +//17330,4 //Fashion_Costume_Box4 +//17335,4 //Mysterious_Ingredient_B 22558,4 //Lucky_Bag + +// Special Broadcast +7782,16 //Gold_Key77 +7783,16 //Silver_Key77 diff --git a/db/re/item_misc.txt b/db/re/item_misc.txt index 5544654951..39f77141a2 100644 --- a/db/re/item_misc.txt +++ b/db/re/item_misc.txt @@ -612,174 +612,188 @@ IG_A_Grade_Coin_Bag,6418,3 // A Grade Coin IG_A_Grade_Coin_Bag,6419,2 // B Grade Coin IG_A_Grade_Coin_Bag,6420,1 // C Grade Coin // Advanced Weapons Box -IG_Advanced_Weapons_Box,1130,1 // Nagan -IG_Advanced_Weapons_Box,1131,1 // Ice_Falchon +IG_Advanced_Weapons_Box,1130,2 // Nagan +IG_Advanced_Weapons_Box,1131,7 // Ice_Falchon IG_Advanced_Weapons_Box,1132,1 // Edge -IG_Advanced_Weapons_Box,1133,1 // Fire_Brand -IG_Advanced_Weapons_Box,1134,1 // Caesar's Sword -IG_Advanced_Weapons_Box,1135,1 // Cutlas -IG_Advanced_Weapons_Box,1136,1 // Solar_Sword -IG_Advanced_Weapons_Box,1137,1 // Excalibur -IG_Advanced_Weapons_Box,1138,1 // Mysteltainn -IG_Advanced_Weapons_Box,1139,1 // Tirfing -IG_Advanced_Weapons_Box,1140,1 // Byeollungum -IG_Advanced_Weapons_Box,1141,1 // Immaterial_Sword -IG_Advanced_Weapons_Box,1148,1 // Star_Dust_Blade -IG_Advanced_Weapons_Box,1164,1 // Muramasa -IG_Advanced_Weapons_Box,1165,1 // Masamune -IG_Advanced_Weapons_Box,1166,1 // Dragon_Slayer -IG_Advanced_Weapons_Box,1167,1 // Schweizersabel -IG_Advanced_Weapons_Box,1168,1 // Zweihander -IG_Advanced_Weapons_Box,1169,1 // Executioner -IG_Advanced_Weapons_Box,1170,1 // Katzbalger -IG_Advanced_Weapons_Box,1171,1 // Zweihander_ -IG_Advanced_Weapons_Box,1175,1 // Altas_Weapon -IG_Advanced_Weapons_Box,1176,1 // Muscle_Cutter -IG_Advanced_Weapons_Box,1178,1 // Schweizersabel_ -IG_Advanced_Weapons_Box,1179,1 // Executioner__ -IG_Advanced_Weapons_Box,1180,1 // Dragon_Slayer_ -IG_Advanced_Weapons_Box,1181,1 // Tae_Goo_Lyeon -IG_Advanced_Weapons_Box,1182,1 // Bloody_Eater +IG_Advanced_Weapons_Box,1133,7 // Fire_Brand +IG_Advanced_Weapons_Box,1134,7 // Caesar's Sword +IG_Advanced_Weapons_Box,1135,7 // Cutlas +IG_Advanced_Weapons_Box,1136,7 // Solar_Sword +IG_Advanced_Weapons_Box,1137,2 // Excalibur +IG_Advanced_Weapons_Box,1138,7 // Mysteltainn +IG_Advanced_Weapons_Box,1139,7 // Tirfing +IG_Advanced_Weapons_Box,1140,7 // Byeollungum +IG_Advanced_Weapons_Box,1141,7 // Immaterial_Sword +IG_Advanced_Weapons_Box,1148,7 // Star_Dust_Blade +IG_Advanced_Weapons_Box,1164,7 // Muramasa +IG_Advanced_Weapons_Box,1165,2 // Masamune +IG_Advanced_Weapons_Box,1166,7 // Dragon_Slayer +IG_Advanced_Weapons_Box,1167,7 // Schweizersabel +IG_Advanced_Weapons_Box,1168,7 // Zweihander +IG_Advanced_Weapons_Box,1169,2 // Executioner +IG_Advanced_Weapons_Box,1170,7 // Katzbalger +IG_Advanced_Weapons_Box,1171,7 // Zweihander_ +IG_Advanced_Weapons_Box,1175,2 // Altas_Weapon +IG_Advanced_Weapons_Box,1176,7 // Muscle_Cutter +IG_Advanced_Weapons_Box,1178,7 // Schweizersabel_ +IG_Advanced_Weapons_Box,1179,2 // Executioner__ +IG_Advanced_Weapons_Box,1180,7 // Dragon_Slayer_ +IG_Advanced_Weapons_Box,1181,7 // Tae_Goo_Lyeon +IG_Advanced_Weapons_Box,1182,7 // Bloody_Eater IG_Advanced_Weapons_Box,1185,1 // Violet_Fear IG_Advanced_Weapons_Box,1186,1 // Death_Guidance -IG_Advanced_Weapons_Box,1188,1 // Veteran_Sword -IG_Advanced_Weapons_Box,1189,1 // Krasnaya -IG_Advanced_Weapons_Box,1196,1 // Chrome_Metal_Two-Hand_Sword -IG_Advanced_Weapons_Box,1223,1 // Forturn_Sword -IG_Advanced_Weapons_Box,1224,1 // Sword_Breaker -IG_Advanced_Weapons_Box,1225,1 // Mail_Breaker -IG_Advanced_Weapons_Box,1227,1 // Weeder_Knife -IG_Advanced_Weapons_Box,1228,1 // Combat_Knife -IG_Advanced_Weapons_Box,1229,1 // Kitchen_Knife +IG_Advanced_Weapons_Box,1188,7 // Veteran_Sword +IG_Advanced_Weapons_Box,1189,5 // Krasnaya +IG_Advanced_Weapons_Box,1196,2 // Chrome_Metal_Two-Hand_Sword +IG_Advanced_Weapons_Box,1223,2 // Forturn_Sword +IG_Advanced_Weapons_Box,1224,4 // Sword_Breaker +IG_Advanced_Weapons_Box,1227,5 // Weeder_Knife +IG_Advanced_Weapons_Box,1228,2 // Combat_Knife +IG_Advanced_Weapons_Box,1229,5 // Kitchen_Knife IG_Advanced_Weapons_Box,1230,1 // Ice_Pick IG_Advanced_Weapons_Box,1231,1 // Bazerald -IG_Advanced_Weapons_Box,1232,1 // Assasin_Dagger -IG_Advanced_Weapons_Box,1233,1 // Exorciser -IG_Advanced_Weapons_Box,1234,1 // Moonlight_Dagger -IG_Advanced_Weapons_Box,1235,1 // Azoth -IG_Advanced_Weapons_Box,1236,1 // Sucsamad -IG_Advanced_Weapons_Box,1237,1 // Grimtooth -IG_Advanced_Weapons_Box,1240,1 // Princess_Knife -IG_Advanced_Weapons_Box,1241,1 // Cursed_Dagger -IG_Advanced_Weapons_Box,1242,1 // Counter_Dagger -IG_Advanced_Weapons_Box,1244,1 // Holy_Dagger +IG_Advanced_Weapons_Box,1232,5 // Assasin_Dagger +IG_Advanced_Weapons_Box,1233,5 // Exorciser +IG_Advanced_Weapons_Box,1234,2 // Moonlight_Dagger +IG_Advanced_Weapons_Box,1235,5 // Azoth +IG_Advanced_Weapons_Box,1236,5 // Sucsamad +IG_Advanced_Weapons_Box,1237,5 // Grimtooth +IG_Advanced_Weapons_Box,1240,5 // Princess_Knife +IG_Advanced_Weapons_Box,1241,5 // Cursed_Dagger +IG_Advanced_Weapons_Box,1242,5 // Counter_Dagger +IG_Advanced_Weapons_Box,1244,5 // Holy_Dagger IG_Advanced_Weapons_Box,1261,1 // Infiltrator -IG_Advanced_Weapons_Box,1263,1 // Unholy_Touch -IG_Advanced_Weapons_Box,1265,1 // Bloody_Roar +IG_Advanced_Weapons_Box,1263,5 // Unholy_Touch +IG_Advanced_Weapons_Box,1265,2 // Bloody_Roar IG_Advanced_Weapons_Box,1266,1 // Infiltrator_ -IG_Advanced_Weapons_Box,1268,1 // Wild_Beast_Claw -IG_Advanced_Weapons_Box,1269,1 // Inverse_Scale -IG_Advanced_Weapons_Box,1270,1 // Drill_Katar -IG_Advanced_Weapons_Box,1271,1 // Blood_Tears -IG_Advanced_Weapons_Box,1284,1 // Krishna -IG_Advanced_Weapons_Box,1285,1 // Chakram -IG_Advanced_Weapons_Box,1305,1 // Cleaver -IG_Advanced_Weapons_Box,1311,1 // Vecer_Axe -IG_Advanced_Weapons_Box,1363,1 // Bloody_Axe -IG_Advanced_Weapons_Box,1364,1 // Great_Axe -IG_Advanced_Weapons_Box,1365,1 // Sabbath +IG_Advanced_Weapons_Box,1268,2 // Wild_Beast_Claw +IG_Advanced_Weapons_Box,1269,2 // Inverse_Scale +IG_Advanced_Weapons_Box,1270,5 // Drill_Katar +IG_Advanced_Weapons_Box,1271,5 // Blood_Tears +IG_Advanced_Weapons_Box,1284,5 // Krishna +IG_Advanced_Weapons_Box,1285,5 // Chakram +IG_Advanced_Weapons_Box,1305,5 // Cleaver +IG_Advanced_Weapons_Box,1311,5 // Vecer_Axe +IG_Advanced_Weapons_Box,1363,2 // Bloody_Axe +IG_Advanced_Weapons_Box,1364,5 // Great_Axe +IG_Advanced_Weapons_Box,1365,5 // Sabbath IG_Advanced_Weapons_Box,1366,1 // Light Epsilon -IG_Advanced_Weapons_Box,1367,1 // Slaughter -IG_Advanced_Weapons_Box,1368,1 // Tomahawk -IG_Advanced_Weapons_Box,1369,1 // Guillotine +IG_Advanced_Weapons_Box,1367,5 // Slaughter +IG_Advanced_Weapons_Box,1368,5 // Tomahawk +IG_Advanced_Weapons_Box,1369,2 // Guillotine IG_Advanced_Weapons_Box,1370,1 // Doom_Slayer IG_Advanced_Weapons_Box,1371,1 // Doom_Slayer_ IG_Advanced_Weapons_Box,1376,1 // Heart_Breaker IG_Advanced_Weapons_Box,1377,1 // Hurricane_Fury -IG_Advanced_Weapons_Box,1385,1 // Bradium_Stonehammer -IG_Advanced_Weapons_Box,1387,1 // Giant_Axe -IG_Advanced_Weapons_Box,1413,1 // Gungnir -IG_Advanced_Weapons_Box,1414,1 // Gelerdria -IG_Advanced_Weapons_Box,1415,1 // Brocca -IG_Advanced_Weapons_Box,1416,1 // Tjungkuletti -IG_Advanced_Weapons_Box,1418,1 // Gungnir_ -IG_Advanced_Weapons_Box,1420,1 // Long_Horn -IG_Advanced_Weapons_Box,1421,1 // Battle_Hook +IG_Advanced_Weapons_Box,1385,5 // Bradium_Stonehammer +IG_Advanced_Weapons_Box,1387,2 // Giant_Axe +IG_Advanced_Weapons_Box,1413,5 // Gungnir +IG_Advanced_Weapons_Box,1414,5 // Gelerdria +IG_Advanced_Weapons_Box,1415,2 // Brocca +IG_Advanced_Weapons_Box,1416,5 // Tjungkuletti +IG_Advanced_Weapons_Box,1418,5 // Gungnir_ +IG_Advanced_Weapons_Box,1420,5 // Long_Horn +IG_Advanced_Weapons_Box,1421,2 // Battle_Hook IG_Advanced_Weapons_Box,1422,1 // Hunting_Spear -IG_Advanced_Weapons_Box,1433,1 // Imperial_Spear -IG_Advanced_Weapons_Box,1466,1 // Crescent_Scythe -IG_Advanced_Weapons_Box,1467,1 // Bill_Guisarme -IG_Advanced_Weapons_Box,1468,1 // Zephyrus -IG_Advanced_Weapons_Box,1469,1 // Longinus's_Spear -IG_Advanced_Weapons_Box,1470,1 // Brionac -IG_Advanced_Weapons_Box,1471,1 // Hell_Fire -IG_Advanced_Weapons_Box,1473,1 // Wizardy_Staff -IG_Advanced_Weapons_Box,1474,1 // Gae_Bolg -IG_Advanced_Weapons_Box,1477,1 // Spectral_Spear -IG_Advanced_Weapons_Box,1478,1 // Ahlspiess -IG_Advanced_Weapons_Box,1479,1 // Spectral_Spear_ -IG_Advanced_Weapons_Box,1480,1 // Gae_Bolg_ -IG_Advanced_Weapons_Box,1481,1 // Zephyrus_ -IG_Advanced_Weapons_Box,1484,1 // Cardo -IG_Advanced_Weapons_Box,1523,1 // Spike -IG_Advanced_Weapons_Box,1524,1 // Golden_Mace -IG_Advanced_Weapons_Box,1525,1 // Long_Mace -IG_Advanced_Weapons_Box,1527,1 // Quadrille +IG_Advanced_Weapons_Box,1433,2 // Imperial_Spear +IG_Advanced_Weapons_Box,1466,5 // Crescent_Scythe +IG_Advanced_Weapons_Box,1467,5 // Bill_Guisarme +IG_Advanced_Weapons_Box,1468,5 // Zephyrus +IG_Advanced_Weapons_Box,1469,5 // Longinus's_Spear +IG_Advanced_Weapons_Box,1470,5 // Brionac +IG_Advanced_Weapons_Box,1471,5 // Hell_Fire +IG_Advanced_Weapons_Box,1473,5 // Wizardy_Staff +IG_Advanced_Weapons_Box,1474,5 // Gae_Bolg +IG_Advanced_Weapons_Box,1477,5 // Spectral_Spear +IG_Advanced_Weapons_Box,1478,5 // Ahlspiess +IG_Advanced_Weapons_Box,1479,5 // Spectral_Spear_ +IG_Advanced_Weapons_Box,1480,5 // Gae_Bolg_ +IG_Advanced_Weapons_Box,1481,5 // Zephyrus_ +IG_Advanced_Weapons_Box,1484,2 // Cardo +IG_Advanced_Weapons_Box,1523,2 // Spike +IG_Advanced_Weapons_Box,1524,5 // Golden_Mace +IG_Advanced_Weapons_Box,1525,5 // Long_Mace +IG_Advanced_Weapons_Box,1527,5 // Quadrille IG_Advanced_Weapons_Box,1528,1 // Grand_Cross -IG_Advanced_Weapons_Box,1538,1 // Spike_ -IG_Advanced_Weapons_Box,1539,1 // Golden_Mace_ +IG_Advanced_Weapons_Box,1538,2 // Spike_ +IG_Advanced_Weapons_Box,1539,5 // Golden_Mace_ IG_Advanced_Weapons_Box,1540,1 // Grand_Cross_ -IG_Advanced_Weapons_Box,1541,1 // Nemesis -IG_Advanced_Weapons_Box,1557,1 // Book_Of_The_Apocalypse -IG_Advanced_Weapons_Box,1558,1 // Girl's_Diary -IG_Advanced_Weapons_Box,1559,1 // Legacy_Of_Dragon -IG_Advanced_Weapons_Box,1561,1 // Hardcover_Book -IG_Advanced_Weapons_Box,1562,1 // Battlefield_Textbook +IG_Advanced_Weapons_Box,1541,5 // Nemesis +IG_Advanced_Weapons_Box,1557,5 // Book_Of_The_Apocalypse +IG_Advanced_Weapons_Box,1558,5 // Girl's_Diary +IG_Advanced_Weapons_Box,1559,5 // Legacy_Of_Dragon +IG_Advanced_Weapons_Box,1561,5 // Hardcover_Book +IG_Advanced_Weapons_Box,1562,5 // Battlefield_Textbook IG_Advanced_Weapons_Box,1565,1 // Ledger of Death -IG_Advanced_Weapons_Box,1616,1 // Wing Staff -IG_Advanced_Weapons_Box,1629,1 // Gentleman's Staff -IG_Advanced_Weapons_Box,1631,1 // Holy_Stick +IG_Advanced_Weapons_Box,1616,5 // Wing Staff +IG_Advanced_Weapons_Box,1629,5 // Gentleman's Staff +IG_Advanced_Weapons_Box,1631,5 // Holy_Stick IG_Advanced_Weapons_Box,1636,1 // Thorn_Staff IG_Advanced_Weapons_Box,1637,1 // Eraser -IG_Advanced_Weapons_Box,1643,1 // Dead_Tree_Cane -IG_Advanced_Weapons_Box,1654,1 // Mental_Stick -IG_Advanced_Weapons_Box,1719,1 // Bow_Of_Roguemaster -IG_Advanced_Weapons_Box,1720,1 // Bow_Of_Rudra -IG_Advanced_Weapons_Box,1722,1 // Ballista -IG_Advanced_Weapons_Box,1724,1 // Dragon_Wing -IG_Advanced_Weapons_Box,1725,1 // Bow_Of_Minstrel -IG_Advanced_Weapons_Box,1727,1 // Balistar_ -IG_Advanced_Weapons_Box,1737,1 // Ixion_Wing -IG_Advanced_Weapons_Box,1740,1 // Nepenthes_Bow -IG_Advanced_Weapons_Box,1741,1 // Cursed_Lyre -IG_Advanced_Weapons_Box,1745,1 // Falken_Blitz -IG_Advanced_Weapons_Box,1813,1 // Kaiser_Knuckle +IG_Advanced_Weapons_Box,1643,5 // Dead_Tree_Cane +IG_Advanced_Weapons_Box,1654,2 // Mental_Stick +IG_Advanced_Weapons_Box,1719,2 // Bow_Of_Roguemaster +IG_Advanced_Weapons_Box,1720,2 // Bow_Of_Rudra +IG_Advanced_Weapons_Box,1722,2 // Ballista +IG_Advanced_Weapons_Box,1724,5 // Dragon_Wing +IG_Advanced_Weapons_Box,1725,5 // Bow_Of_Minstrel +IG_Advanced_Weapons_Box,1727,2 // Balistar_ +IG_Advanced_Weapons_Box,1737,5 // Ixion_Wing +IG_Advanced_Weapons_Box,1740,5 // Nepenthes_Bow +IG_Advanced_Weapons_Box,1741,5 // Cursed_Lyre +IG_Advanced_Weapons_Box,1745,5 // Falken_Blitz +IG_Advanced_Weapons_Box,1813,5 // Kaiser_Knuckle IG_Advanced_Weapons_Box,1814,1 // Berserk -IG_Advanced_Weapons_Box,1815,1 // Claw_Of_Garm +IG_Advanced_Weapons_Box,1815,5 // Claw_Of_Garm IG_Advanced_Weapons_Box,1816,1 // Berserk_ -IG_Advanced_Weapons_Box,1830,1 // Great_King's_Dance -IG_Advanced_Weapons_Box,1913,1 // Electronic_Guitar -IG_Advanced_Weapons_Box,1918,1 // Oriental_Lute +IG_Advanced_Weapons_Box,1830,2 // Sura's Rampage +IG_Advanced_Weapons_Box,1913,5 // Electronic_Guitar +IG_Advanced_Weapons_Box,1918,5 // Oriental_Lute IG_Advanced_Weapons_Box,1920,1 // Berserk_Guitar -IG_Advanced_Weapons_Box,1922,1 // Oriental_Lute_ -IG_Advanced_Weapons_Box,1926,1 // Harp_Of_Nepenthes -IG_Advanced_Weapons_Box,1930,1 // Green_Whistle -IG_Advanced_Weapons_Box,1962,1 // Lariat_Whip -IG_Advanced_Weapons_Box,1963,1 // Rapture_Rose -IG_Advanced_Weapons_Box,1964,1 // Chemeti_Whip -IG_Advanced_Weapons_Box,1969,1 // Blade_Whip -IG_Advanced_Weapons_Box,1970,1 // Queen's_Whip -IG_Advanced_Weapons_Box,1972,1 // Electric_Eel -IG_Advanced_Weapons_Box,1973,1 // Sea_Witch_Foot -IG_Advanced_Weapons_Box,1974,1 // Carrot_Whip -IG_Advanced_Weapons_Box,1976,1 // Queen's_Whip_ -IG_Advanced_Weapons_Box,1979,1 // Stem_Of_Nepenthes -IG_Advanced_Weapons_Box,1984,1 // Stem_Whip +IG_Advanced_Weapons_Box,1922,5 // Oriental_Lute_ +IG_Advanced_Weapons_Box,1926,5 // Harp_Of_Nepenthes +IG_Advanced_Weapons_Box,1930,2 // Green_Whistle +IG_Advanced_Weapons_Box,1962,5 // Lariat_Whip +IG_Advanced_Weapons_Box,1963,5 // Rapture_Rose +IG_Advanced_Weapons_Box,1964,5 // Chemeti_Whip +IG_Advanced_Weapons_Box,1969,5 // Blade_Whip +IG_Advanced_Weapons_Box,1970,5 // Queen's_Whip +IG_Advanced_Weapons_Box,1972,5 // Electric_Eel +IG_Advanced_Weapons_Box,1973,5 // Sea_Witch_Foot +IG_Advanced_Weapons_Box,1974,5 // Carrot_Whip +IG_Advanced_Weapons_Box,1976,5 // Queen's_Whip_ +IG_Advanced_Weapons_Box,1979,5 // Stem_Of_Nepenthes +IG_Advanced_Weapons_Box,1984,2 // Stem_Whip IG_Advanced_Weapons_Box,1985,1 // Rose_Vine IG_Advanced_Weapons_Box,2000,1 // Destruction_Rod -IG_Advanced_Weapons_Box,2001,1 // Divine_Cross -IG_Advanced_Weapons_Box,2004,1 // Kronos -IG_Advanced_Weapons_Box,2005,1 // Dea_Staff -IG_Advanced_Weapons_Box,13046,1 // Krieg -IG_Advanced_Weapons_Box,13047,1 // Weihna -IG_Advanced_Weapons_Box,13061,1 // Black_Wing -IG_Advanced_Weapons_Box,13062,1 // Ancient_Dagger -IG_Advanced_Weapons_Box,13421,1 // Ruber -IG_Advanced_Weapons_Box,13431,1 // Chrome_Metal_Sword -IG_Advanced_Weapons_Box,16000,1 // Erde -IG_Advanced_Weapons_Box,16001,1 // Red_Square_Bag -IG_Advanced_Weapons_Box,16010,1 // Red_Ether_Bag -IG_Advanced_Weapons_Box,18103,1 // Mystic_Bow +IG_Advanced_Weapons_Box,2001,5 // Divine_Cross +IG_Advanced_Weapons_Box,2004,5 // Kronos +IG_Advanced_Weapons_Box,2005,5 // Dea_Staff +IG_Advanced_Weapons_Box,13046,5 // Krieg +IG_Advanced_Weapons_Box,13047,5 // Weihna +IG_Advanced_Weapons_Box,13061,5 // Black_Wing +IG_Advanced_Weapons_Box,13062,1 // Ancient_Dagger +IG_Advanced_Weapons_Box,13421,5 // Ruber +IG_Advanced_Weapons_Box,13431,2 // Chrome_Metal_Sword +IG_Advanced_Weapons_Box,16000,5 // Erde +IG_Advanced_Weapons_Box,16001,5 // Red_Square_Bag +IG_Advanced_Weapons_Box,16010,5 // Red_Ether_Bag +IG_Advanced_Weapons_Box,18103,5 // Mystic_Bow +IG_Advanced_Weapons_Box,1476,1 // Crescent_Scythe_ +IG_Advanced_Weapons_Box,1526,5 // Slash +IG_Advanced_Weapons_Box,1290,1 // Agent_Katar +IG_Advanced_Weapons_Box,1291,1 // Guillotine_Katar +IG_Advanced_Weapons_Box,1392,1 // Ygnus_Stale +IG_Advanced_Weapons_Box,1393,1 // End_Sektura +IG_Advanced_Weapons_Box,1435,1 // Cannon_Spear +IG_Advanced_Weapons_Box,1584,1 // Chilly_Spell_Book +IG_Advanced_Weapons_Box,1659,1 // Recovery_Light +IG_Advanced_Weapons_Box,13069,1 // Aztoe_Nail +IG_Advanced_Weapons_Box,13070,1 // Scarletto_Nail +IG_Advanced_Weapons_Box,16017,1 // Bloody_Cross +IG_Advanced_Weapons_Box,18109,1 // Catapult +IG_Advanced_Weapons_Box,18110,1 // Big_CrossBow +IG_Advanced_Weapons_Box,18111,1 // Creeper_Bow // Splendid Box IG_Splendid_Box,1189,1 // Krasnaya IG_Splendid_Box,1191,1 // Alca Bringer diff --git a/db/re/item_noequip.txt b/db/re/item_noequip.txt index c2f917dff6..1af0a5807c 100644 --- a/db/re/item_noequip.txt +++ b/db/re/item_noequip.txt @@ -106,3 +106,51 @@ // Zone 7 - Towns //---------------------------------------------------------------------------- 14529,2048 //Greed_Scroll + +//---------------------------------------------------------------------------- +// WoE TE Items - Only can be used in WoE TE maps +// Assumed WOE TE maps are restricted zone 8. +// TODO: &1 (Normal) is currently removed since if the map is restricted, it'll fail. +//---------------------------------------------------------------------------- +//1299,4094 // TE_Woe_Katar +//1319,4094 // TE_Woe_Axe +//1399,4094 // TE_Woe_Two_Handed_Axe +//1437,4094 // TE_Woe_Pike +//1495,4094 // TE_Woe_Lance +//1591,4094 // TE_Woe_Book +//1667,4094 // TE_Woe_Staff +//1834,4094 // TE_Woe_Fist +//1932,4094 // TE_Woe_Guitar +//1987,4094 // TE_Woe_Rope +//2019,4094 // TE_Woe_Two_Hand_Staff +//2178,4094 // TE_Woe_Buckler +//2179,4094 // TE_Woe_Shield +//2180,4094 // TE_Woe_Magic_Guard +//2496,4094 // TE_Woe_Shoes +//2497,4094 // TE_Woe_Boots +//2498,4094 // TE_Woe_Magic_Sandal +//2944,4094 // TE_Ring_Of_Protection +//2945,4094 // TE_Ring_Of_Rage +//2946,4094 // TE_Ring_Of_Defiance +//11557,4094 // TE_White_Potion +//11558,4094 // TE_White_Slim_Potion +//13083,4094 // TE_Woe_Knife +//13117,4094 // TE_Woe_Pistol +//13184,4094 // TE_Woe_Rifle +//13185,4094 // TE_Woe_Gatling +//13186,4094 // TE_Woe_Shotgun +//13187,4094 // TE_Woe_Grenade +//13317,4094 // TE_Woe_Huuma +//13439,4094 // TE_Woe_Sword +//15062,4094 // TE_Woe_Coat +//15063,4094 // TE_Woe_Chain_Mail +//15064,4094 // TE_Woe_Mage_Coat +//16025,4094 // TE_Woe_Mace +//18118,4094 // TE_Woe_Bow +//18732,4094 // TE_Woe_Cap +//18733,4094 // TE_Woe_Bone_Helm +//18734,4094 // TE_Woe_Magic_Eyes +//20702,4094 // TE_Woe_Muffler +//20703,4094 // TE_Woe_Manteau +//20704,4094 // TE_Woe_Magic_Manteau +//21006,4094 // TE_Woe_Two_Hand_Sword diff --git a/db/re/item_package.txt b/db/re/item_package.txt index ec3634937f..859292d389 100644 --- a/db/re/item_package.txt +++ b/db/re/item_package.txt @@ -3,1942 +3,1941 @@ // Structure of Database: // GroupID,ItemID,Rate{,Amount,Random,isAnnounced,Duration,GUID,isBound,isNamed} -IG_Special_Box,Wrapped_Mask,3,1,1 -IG_Special_Box,Poison_Bottle,10,2,1 -IG_Special_Box,Set_Of_Taiming_Item,5,1,1 -IG_Special_Box,Cookie_Bag,100,2,1 -IG_Special_Box,Mysterious_Can2,80,3,1 -IG_Special_Box,Mysterious_PET_Bottle2,80,3,1 -IG_Special_Box,Speed_Up_Potion,80,2,1 -IG_Special_Box,Old_Blue_Box,19,1,1 -IG_Special_Box,Branch_Of_Dead_Tree,14,5,1 -IG_Special_Box,First_Aid_Kit,19,1,1 -IG_Special_Box,Dried_Yggdrasilberry,70,3,1 -IG_Special_Box,Angeling_Potion,70,3,1 -IG_Special_Box,Ygnizem_Scroll,50,2,1 -IG_Special_Box,Doppelganger_Scroll,50,2,1 -IG_Special_Box,Wild_Rose_Scroll,60,2,1 -IG_Special_Box,Gift_Box,70,1,1 -IG_Special_Box,Red_Bag,70,3,1 -IG_Special_Box,Cool_Summer_Outfit,70,3,1 -IG_Special_Box,Slow_Down_Potion,80,2,1 - -IG_Tresure_Box_WoE_,Majestic_Goat_Repl,5,1,1 -IG_Tresure_Box_WoE_,Jewel_Crown_Repl,15,1,1 -IG_Tresure_Box_WoE_,Prontera_Army_Cap_Repl,20,1,1 -IG_Tresure_Box_WoE_,Feather_Bonnet_Repl,20,1,1 -IG_Tresure_Box_WoE_,Viking_Helm_Repl,20,1,1 -IG_Tresure_Box_WoE_,Mysterious_Can,50,10,1 -IG_Tresure_Box_WoE_,Mysterious_PET_Bottle,50,10,1 -IG_Tresure_Box_WoE_,Mysterious_Can2,50,10,1 -IG_Tresure_Box_WoE_,Mysterious_PET_Bottle2,50,10,1 -IG_Tresure_Box_WoE_,Hometown_Gift,50,10,1 -IG_Tresure_Box_WoE_,Yggdrasilberry,30,5,1 -IG_Tresure_Box_WoE_,Seed_Of_Yggdrasil,50,10,1 -IG_Tresure_Box_WoE_,Dried_Yggdrasilberry,50,10,1 -IG_Tresure_Box_WoE_,Unripe_Fruit,50,5,1 -IG_Tresure_Box_WoE_,First_Aid_Kit,40,10,1 -IG_Tresure_Box_WoE_,Gift_Box,250,5,1 -IG_Tresure_Box_WoE_,Comp_Battle_Manual,20,3,1 -IG_Tresure_Box_WoE_,Old_Blue_Box,180,5,1 - -IG_RWC_Parti_Box,Wrapped_Mask,3,1,1 -IG_RWC_Parti_Box,Poison_Bottle,10,2,1 -IG_RWC_Parti_Box,Set_Of_Taiming_Item,5,1,1 -IG_RWC_Parti_Box,Cookie_Bag,90,1,1 -IG_RWC_Parti_Box,Mysterious_Can2,70,3,1 -IG_RWC_Parti_Box,Mysterious_PET_Bottle2,70,3,1 -IG_RWC_Parti_Box,Speed_Up_Potion,60,2,1 -IG_RWC_Parti_Box,Old_Violet_Box,19,1,1 -IG_RWC_Parti_Box,Cat_Foot_Hairpin,10,1,1 -IG_RWC_Parti_Box,Int_Dish10,35,2,1 -IG_RWC_Parti_Box,Vit_Dish10,35,2,1 -IG_RWC_Parti_Box,Agi_Dish10,35,2,1 -IG_RWC_Parti_Box,Dex_Dish10,35,2,1 -IG_RWC_Parti_Box,Luk_Dish10,35,2,1 -IG_RWC_Parti_Box,Str_Dish10,35,2,1 -IG_RWC_Parti_Box,Branch_Of_Dead_Tree,14,3,1 -IG_RWC_Parti_Box,Dried_Yggdrasilberry,70,3,1 -IG_RWC_Parti_Box,Angeling_Potion,50,3,1 -IG_RWC_Parti_Box,Ygnizem_Scroll,50,2,1 -IG_RWC_Parti_Box,Doppelganger_Scroll,50,2,1 -IG_RWC_Parti_Box,Wild_Rose_Scroll,50,2,1 -IG_RWC_Parti_Box,Old_Blue_Box,50,1,1 -IG_RWC_Parti_Box,Hometown_Gift,99,2,1 -IG_RWC_Parti_Box,Pink_Drooping_Kitty,10,1,1 -IG_RWC_Parti_Box,Red_Deviruchi_Cap,10,1,1 - -IG_RWC_Final_Comp_Box,Comp_Battle_Manual,0,2,0 -IG_RWC_Final_Comp_Box,Comp_Insurance,0,2,0 -IG_RWC_Final_Comp_Box,Enriched_Slim_Pot,0,30,0 -IG_RWC_Final_Comp_Box,Rafini_Staff,80,1,1 -IG_RWC_Final_Comp_Box,Round_Buckler,180,1,1 -IG_RWC_Final_Comp_Box,Puente_Robe,70,1,1 -IG_RWC_Final_Comp_Box,Claire_Suits,60,1,1 -IG_RWC_Final_Comp_Box,Fricco_Shoes,150,1,1 -IG_RWC_Final_Comp_Box,Rider_Insignia,120,1,1 -IG_RWC_Final_Comp_Box,Undershirt_,40,1,1 -IG_RWC_Final_Comp_Box,Muffler_,300,1,1 - -IG_Gift_Bundle,White_Slim_Potion,0,30,0 -IG_Gift_Bundle,Seed_Of_Yggdrasil,0,30,0 -IG_Gift_Bundle,GM_Handwriting,0,30,0 - -IG_Caracas_Ring_Box,Caracas_Ring,0,1,0,0,4500 - -IG_Crumpled_Paper,Calender_January,84,1,1 -IG_Crumpled_Paper,Calender_February,84,1,1 -IG_Crumpled_Paper,Calender_March,84,1,1 -IG_Crumpled_Paper,Calender_April,84,1,1 -IG_Crumpled_Paper,Calender_May,83,1,1 -IG_Crumpled_Paper,Calender_June,83,1,1 -IG_Crumpled_Paper,Calender_July,83,1,1 -IG_Crumpled_Paper,Calender_August,83,1,1 -IG_Crumpled_Paper,Calender_September,83,1,1 -IG_Crumpled_Paper,Calender_October,83,1,1 -IG_Crumpled_Paper,Calender_November,83,1,1 -IG_Crumpled_Paper,Calender_December,83,1,1 - -IG_Solo_Gift_Basket,Lovely_Choco_Tart,1,5,1 -IG_Solo_Gift_Basket,Cute_Strawberry_Choco,1,3,1 -IG_Solo_Gift_Basket,White_Chocolate,1,3,1 -IG_Solo_Gift_Basket,Chocolate_Drink,1,4,1 -IG_Solo_Gift_Basket,HandMade_Chocolate,1,10,1 -IG_Solo_Gift_Basket,HandMade_Chocolate_,1,10,1 - -IG_Couple_Event_Basket,Fire_Cracker_Love,1,10,1 -IG_Couple_Event_Basket,Fire_Cracker_Wday,1,10,1 -IG_Couple_Event_Basket,14548,1,10,1 -IG_Couple_Event_Basket,Fire_Cracker_Bday,1,10,1 -IG_Couple_Event_Basket,Fire_Cracker_Xmas,1,10,1 - -IG_GM_Warp_Box,Wing_Of_Fly,155,3,1 -IG_GM_Warp_Box,Wing_Of_Butterfly,155,3,1 -IG_GM_Warp_Box,Warp_Free_Ticket,150,3,1 -IG_GM_Warp_Box,WOB_Rune,140,3,1 -IG_GM_Warp_Box,WOB_Schwaltz,140,3,1 -IG_GM_Warp_Box,WOB_Rachel,130,3,1 -IG_GM_Warp_Box,WOB_Local,130,3,1 - -IG_Fortune_Cookie1,Bless_Word_Paper1,100,1,1 -IG_Fortune_Cookie1,Bless_Word_Paper2,100,1,1 -IG_Fortune_Cookie1,Bless_Word_Paper3,100,1,1 -IG_Fortune_Cookie1,Bless_Word_Paper4,100,1,1 -IG_Fortune_Cookie1,Bless_Word_Paper5,100,1,1 -IG_Fortune_Cookie1,Bless_Word_Paper6,100,1,1 -IG_Fortune_Cookie1,Bless_Word_Paper7,100,1,1 -IG_Fortune_Cookie1,Bless_Word_Paper8,100,1,1 -IG_Fortune_Cookie1,Bless_Word_Paper9,100,1,1 -IG_Fortune_Cookie1,Bless_Word_Paper10,100,1,1 - -IG_Fortune_Cookie2,Guidebook_Exchange,0,1,0,1 - -IG_Fortune_Cookie3,Free_Cash_Coupon,0,1,0,1 - -IG_New_Gift_Envelope,Honey_Pastry,115,1,1 -IG_New_Gift_Envelope,Lucky_Cookie03,50,3,1 -IG_New_Gift_Envelope,Gingerbread,50,3,1 -IG_New_Gift_Envelope,Guyak_Pudding,150,3,1 -IG_New_Gift_Envelope,New_Year_Bun,250,10,1 -IG_New_Gift_Envelope,Charm_Of_Happiness,80,2,1 -IG_New_Gift_Envelope,Shaman_Hat_,40,1,1 -IG_New_Gift_Envelope,Halohalo,80,1,1 -IG_New_Gift_Envelope,Branch_Of_Dead_Tree,80,2,1 -IG_New_Gift_Envelope,Traditional_Firecrack,100,1,1 -IG_New_Gift_Envelope,Magic_Card_Album,5,1,1 - -IG_Passion_FB_Hat_Box,Passion_FB_Hat,0,1,0,0,60 - -IG_Cool_FB_Hat_Box,Cool_FB_Hat,0,1,0,0,60 - -IG_Victory_FB_Hat_Box,Victory_FB_Hat,0,1,0,0,60 +IG_Special_Box,12107,3,1,1 // 1x Wrapped_Mask +IG_Special_Box,678,10,2,1 // 2x Poison_Bottle +IG_Special_Box,12105,5,1,1 // 1x Set_Of_Taiming_Item +IG_Special_Box,12130,100,2,1 // 2x Cookie_Bag +IG_Special_Box,12376,80,3,1 // 3x Mysterious_Can2 +IG_Special_Box,12377,80,3,1 // 3x Mysterious_PET_Bottle2 +IG_Special_Box,12016,80,2,1 // 2x Speed_Up_Potion +IG_Special_Box,603,19,1,1 // 1x Old_Blue_Box +IG_Special_Box,604,14,5,1 // 5x Branch_Of_Dead_Tree +IG_Special_Box,12110,19,1,1 // 1x First_Aid_Kit +IG_Special_Box,12293,70,3,1 // 3x Dried_Yggdrasilberry +IG_Special_Box,12350,70,3,1 // 3x Angeling_Potion +IG_Special_Box,12302,50,2,1 // 2x Ygnizem_Scroll +IG_Special_Box,12301,50,2,1 // 2x Doppelganger_Scroll +IG_Special_Box,12300,60,2,1 // 2x Wild_Rose_Scroll +IG_Special_Box,644,70,1,1 // 1x Gift_Box +IG_Special_Box,12132,70,3,1 // 3x Red_Bag +IG_Special_Box,12260,70,3,1 // 3x Cool_Summer_Outfit +IG_Special_Box,12017,80,2,1 // 2x Slow_Down_Potion + +IG_Tresure_Box_WoE_,5683,5,1,1 // 1x Majestic_Goat_Repl +IG_Tresure_Box_WoE_,5684,15,1,1 // 1x Jewel_Crown_Repl +IG_Tresure_Box_WoE_,5685,20,1,1 // 1x Prontera_Army_Cap_Repl +IG_Tresure_Box_WoE_,5686,20,1,1 // 1x Feather_Bonnet_Repl +IG_Tresure_Box_WoE_,5687,20,1,1 // 1x Viking_Helm_Repl +IG_Tresure_Box_WoE_,12290,50,10,1 // 10x Mysterious_Can +IG_Tresure_Box_WoE_,12291,50,10,1 // 10x Mysterious_PET_Bottle +IG_Tresure_Box_WoE_,12376,50,10,1 // 10x Mysterious_Can2 +IG_Tresure_Box_WoE_,12377,50,10,1 // 10x Mysterious_PET_Bottle2 +IG_Tresure_Box_WoE_,12194,50,10,1 // 10x Hometown_Gift +IG_Tresure_Box_WoE_,607,30,5,1 // 5x Yggdrasilberry +IG_Tresure_Box_WoE_,608,50,10,1 // 10x Seed_Of_Yggdrasil +IG_Tresure_Box_WoE_,12293,50,10,1 // 10x Dried_Yggdrasilberry +IG_Tresure_Box_WoE_,12292,50,5,1 // 5x Unripe_Fruit +IG_Tresure_Box_WoE_,12110,40,10,1 // 10x First_Aid_Kit +IG_Tresure_Box_WoE_,644,250,5,1 // 5x Gift_Box +IG_Tresure_Box_WoE_,12263,20,3,1 // 3x Comp_Battle_Manual +IG_Tresure_Box_WoE_,603,180,5,1 // 5x Old_Blue_Box + +IG_RWC_Parti_Box,12107,3,1,1 // 1x Wrapped_Mask +IG_RWC_Parti_Box,678,10,2,1 // 2x Poison_Bottle +IG_RWC_Parti_Box,12105,5,1,1 // 1x Set_Of_Taiming_Item +IG_RWC_Parti_Box,12130,90,1,1 // 1x Cookie_Bag +IG_RWC_Parti_Box,12376,70,3,1 // 3x Mysterious_Can2 +IG_RWC_Parti_Box,12377,70,3,1 // 3x Mysterious_PET_Bottle2 +IG_RWC_Parti_Box,12016,60,2,1 // 2x Speed_Up_Potion +IG_RWC_Parti_Box,617,19,1,1 // 1x Old_Violet_Box +IG_RWC_Parti_Box,5446,10,1,1 // 1x Cat_Foot_Hairpin +IG_RWC_Parti_Box,12080,35,2,1 // 2x Int_Dish10 +IG_RWC_Parti_Box,12085,35,2,1 // 2x Vit_Dish10 +IG_RWC_Parti_Box,12090,35,2,1 // 2x Agi_Dish10 +IG_RWC_Parti_Box,12095,35,2,1 // 2x Dex_Dish10 +IG_RWC_Parti_Box,12100,35,2,1 // 2x Luk_Dish10 +IG_RWC_Parti_Box,12075,35,2,1 // 2x Str_Dish10 +IG_RWC_Parti_Box,604,14,3,1 // 3x Branch_Of_Dead_Tree +IG_RWC_Parti_Box,12293,70,3,1 // 3x Dried_Yggdrasilberry +IG_RWC_Parti_Box,12350,50,3,1 // 3x Angeling_Potion +IG_RWC_Parti_Box,12302,50,2,1 // 2x Ygnizem_Scroll +IG_RWC_Parti_Box,12301,50,2,1 // 2x Doppelganger_Scroll +IG_RWC_Parti_Box,12300,50,2,1 // 2x Wild_Rose_Scroll +IG_RWC_Parti_Box,603,50,1,1 // 1x Old_Blue_Box +IG_RWC_Parti_Box,12194,99,2,1 // 2x Hometown_Gift +IG_RWC_Parti_Box,5232,10,1,1 // 1x Pink_Drooping_Kitty +IG_RWC_Parti_Box,5227,10,1,1 // 1x Red_Deviruchi_Cap + +IG_RWC_Final_Comp_Box,12263,0,2,0 // 2x Comp_Battle_Manual +IG_RWC_Final_Comp_Box,12265,0,2,0 // 2x Comp_Insurance +IG_RWC_Final_Comp_Box,11514,0,30,0 // 30x Enriched_Slim_Pot +IG_RWC_Final_Comp_Box,1649,80,1,1 // 1x Rafini_Staff +IG_RWC_Final_Comp_Box,2147,180,1,1 // 1x Round_Buckler +IG_RWC_Final_Comp_Box,15012,70,1,1 // 1x Puente_Robe +IG_RWC_Final_Comp_Box,15013,60,1,1 // 1x Claire_Suits +IG_RWC_Final_Comp_Box,2417,150,1,1 // 1x Fricco_Shoes +IG_RWC_Final_Comp_Box,2529,120,1,1 // 1x Rider_Insignia +IG_RWC_Final_Comp_Box,2523,40,1,1 // 1x Undershirt_ +IG_RWC_Final_Comp_Box,2504,300,1,1 // 1x Muffler_ + +IG_Gift_Bundle,547,0,30,0 // 30x White_Slim_Potion +IG_Gift_Bundle,608,0,30,0 // 30x Seed_Of_Yggdrasil +IG_Gift_Bundle,6302,0,30,0 // 30x GM_Handwriting + +IG_Caracas_Ring_Box,2841,0,1,0,0,4500 // 1x Caracas_Ring + +IG_Crumpled_Paper,6328,84,1,1 // 1x Calender_January +IG_Crumpled_Paper,6329,84,1,1 // 1x Calender_February +IG_Crumpled_Paper,6330,84,1,1 // 1x Calender_March +IG_Crumpled_Paper,6331,84,1,1 // 1x Calender_April +IG_Crumpled_Paper,6332,83,1,1 // 1x Calender_May +IG_Crumpled_Paper,6333,83,1,1 // 1x Calender_June +IG_Crumpled_Paper,6334,83,1,1 // 1x Calender_July +IG_Crumpled_Paper,6335,83,1,1 // 1x Calender_August +IG_Crumpled_Paper,6336,83,1,1 // 1x Calender_September +IG_Crumpled_Paper,6337,83,1,1 // 1x Calender_October +IG_Crumpled_Paper,6338,83,1,1 // 1x Calender_November +IG_Crumpled_Paper,6339,83,1,1 // 1x Calender_December + +IG_Solo_Gift_Basket,597,1,5,1 // 5x Lovely_Choco_Tart +IG_Solo_Gift_Basket,596,1,3,1 // 3x Cute_Strawberry_Choco +IG_Solo_Gift_Basket,561,1,3,1 // 3x White_Chocolate +IG_Solo_Gift_Basket,573,1,4,1 // 4x Chocolate_Drink +IG_Solo_Gift_Basket,559,1,10,1 // 10x HandMade_Chocolate +IG_Solo_Gift_Basket,560,1,10,1 // 10x HandMade_Chocolate_ + +IG_Couple_Event_Basket,14546,1,10,1 // 10x Fire_Cracker_Love +IG_Couple_Event_Basket,14547,1,10,1 // 10x Fire_Cracker_Wday +IG_Couple_Event_Basket,14548,1,10,1 // 10x Fire_Cracker_Valentine +IG_Couple_Event_Basket,14549,1,10,1 // 10x Fire_Cracker_Bday +IG_Couple_Event_Basket,14550,1,10,1 // 10x Fire_Cracker_Xmas + +IG_GM_Warp_Box,601,155,3,1 // 3x Wing_Of_Fly +IG_GM_Warp_Box,602,155,3,1 // 3x Wing_Of_Butterfly +IG_GM_Warp_Box,7060,150,3,1 // 3x Warp_Free_Ticket +IG_GM_Warp_Box,14582,140,3,1 // 3x WOB_Rune +IG_GM_Warp_Box,14583,140,3,1 // 3x WOB_Schwaltz +IG_GM_Warp_Box,14584,130,3,1 // 3x WOB_Rachel +IG_GM_Warp_Box,14585,130,3,1 // 3x WOB_Local + +IG_Fortune_Cookie1,6347,100,1,1 // 1x Bless_Word_Paper1 +IG_Fortune_Cookie1,6348,100,1,1 // 1x Bless_Word_Paper2 +IG_Fortune_Cookie1,6349,100,1,1 // 1x Bless_Word_Paper3 +IG_Fortune_Cookie1,6350,100,1,1 // 1x Bless_Word_Paper4 +IG_Fortune_Cookie1,6351,100,1,1 // 1x Bless_Word_Paper5 +IG_Fortune_Cookie1,6352,100,1,1 // 1x Bless_Word_Paper6 +IG_Fortune_Cookie1,6353,100,1,1 // 1x Bless_Word_Paper7 +IG_Fortune_Cookie1,6354,100,1,1 // 1x Bless_Word_Paper8 +IG_Fortune_Cookie1,6355,100,1,1 // 1x Bless_Word_Paper9 +IG_Fortune_Cookie1,6356,100,1,1 // 1x Bless_Word_Paper10 + +IG_Fortune_Cookie2,6359,0,1,0,1 // 1x Guidebook_Exchange + +IG_Fortune_Cookie3,6358,0,1,0,1 // 1x Free_Cash_Coupon + +IG_New_Gift_Envelope,12123,115,1,1 // 1x Honey_Pastry +IG_New_Gift_Envelope,12708,50,3,1 // 3x Lucky_Cookie03 +IG_New_Gift_Envelope,12232,50,3,1 // 3x Gingerbread +IG_New_Gift_Envelope,12710,150,3,1 // 3x Guyak_Pudding +IG_New_Gift_Envelope,12754,250,10,1 // 10x New_Year_Bun +IG_New_Gift_Envelope,12328,80,2,1 // 2x Charm_Of_Happiness +IG_New_Gift_Envelope,5841,40,1,1 // 1x Shaman_Hat_ +IG_New_Gift_Envelope,12247,80,1,1 // 1x Halohalo +IG_New_Gift_Envelope,604,80,2,1 // 2x Branch_Of_Dead_Tree +IG_New_Gift_Envelope,12755,100,1,1 // 1x Traditional_Firecrack +IG_New_Gift_Envelope,12246,5,1,1 // 1x Magic_Card_Album + +IG_Passion_FB_Hat_Box,5856,0,1,0,0,60 // 1x Passion_FB_Hat + +IG_Cool_FB_Hat_Box,5857,0,1,0,0,60 // 1x Cool_FB_Hat + +IG_Victory_FB_Hat_Box,5858,0,1,0,0,60 // 1x Victory_FB_Hat -IG_Glory_FB_Hat_Box,Glory_FB_Hat,0,1,0,0,1440 +IG_Glory_FB_Hat_Box,5859,0,1,0,0,1440 // 1x Glory_FB_Hat -IG_Passion_Hat_Box2,Passion_FB_Hat,0,1,0,0,3600 +IG_Passion_Hat_Box2,5856,0,1,0,0,3600 // 1x Passion_FB_Hat -IG_Cool_Hat_Box2,Cool_FB_Hat,0,1,0,0,3600 +IG_Cool_Hat_Box2,5857,0,1,0,0,3600 // 1x Cool_FB_Hat -IG_Victory_Hat_Box2,Victory_FB_Hat,0,1,0,0,3600 +IG_Victory_Hat_Box2,5858,0,1,0,0,3600 // 1x Victory_FB_Hat -IG_Aspersio_5_Scroll_Box,Aspersio_5_Scroll,0,10,0,0,0,1 +IG_Aspersio_5_Scroll_Box,12217,0,10,0,0,0,1 // 10x Aspersio_5_Scroll -IG_Pet_Egg_Scroll_Box1,Pet_Egg_Scroll1,0,1,0,0,0,1 +IG_Pet_Egg_Scroll_Box1,12925,0,1,0,0,0,1 // 1x Pet_Egg_Scroll1 -IG_Pet_Egg_Scroll_Box2,Pet_Egg_Scroll2,0,1,0,0,0,1 +IG_Pet_Egg_Scroll_Box2,12926,0,1,0,0,0,1 // 1x Pet_Egg_Scroll2 -IG_Pet_Egg_Scroll1,Battle_Manual,100,2,1,0,0,1 -IG_Pet_Egg_Scroll1,Insurance,200,2,1,0,0,1 -IG_Pet_Egg_Scroll1,Enriched_Oridecon,80,1,1,0,0,1 -IG_Pet_Egg_Scroll1,Kafra_Card,300,2,1,0,0,1 -IG_Pet_Egg_Scroll1,Adrenaline_Scroll,300,2,1,0,0,1 -IG_Pet_Egg_Scroll1,Neuralizer,10,1,1,0,0,1 -IG_Pet_Egg_Scroll1,Red_Deviruchi_Cap,10,1,1,0,0,1 +IG_Pet_Egg_Scroll1,12208,100,2,1,0,0,1 // 2x Battle_Manual +IG_Pet_Egg_Scroll1,12209,200,2,1,0,0,1 // 2x Insurance +IG_Pet_Egg_Scroll1,7620,80,1,1,0,0,1 // 1x Enriched_Oridecon +IG_Pet_Egg_Scroll1,12211,300,2,1,0,0,1 // 2x Kafra_Card +IG_Pet_Egg_Scroll1,12220,300,2,1,0,0,1 // 2x Adrenaline_Scroll +IG_Pet_Egg_Scroll1,12213,10,1,1,0,0,1 // 1x Neuralizer +IG_Pet_Egg_Scroll1,5227,10,1,1,0,0,1 // 1x Red_Deviruchi_Cap -IG_Pet_Egg_Scroll2,Battle_Manual,90,2,1,0,0,1 -IG_Pet_Egg_Scroll2,Wind_Walk_10_Scroll,150,2,1,0,0,1 -IG_Pet_Egg_Scroll2,Token_Of_Siegfried,200,2,1,0,0,1 -IG_Pet_Egg_Scroll2,Giant_Fly_Wing,200,2,1,0,0,1 -IG_Pet_Egg_Scroll2,Aspersio_5_Scroll,200,2,1,0,0,1 -IG_Pet_Egg_Scroll2,Bubble_Gum,150,2,1,0,0,1 -IG_Pet_Egg_Scroll2,Red_Wizardry_Hat,10,1,1,0,0,1 +IG_Pet_Egg_Scroll2,12208,90,2,1,0,0,1 // 2x Battle_Manual +IG_Pet_Egg_Scroll2,12219,150,2,1,0,0,1 // 2x Wind_Walk_10_Scroll +IG_Pet_Egg_Scroll2,7621,200,2,1,0,0,1 // 2x Token_Of_Siegfried +IG_Pet_Egg_Scroll2,12212,200,2,1,0,0,1 // 2x Giant_Fly_Wing +IG_Pet_Egg_Scroll2,12217,200,2,1,0,0,1 // 2x Aspersio_5_Scroll +IG_Pet_Egg_Scroll2,12210,150,2,1,0,0,1 // 2x Bubble_Gum +IG_Pet_Egg_Scroll2,5238,10,1,1,0,0,1 // 1x Red_Wizardry_Hat -IG_Pet_Egg_Scroll_Box3,Pet_Egg_Scroll3,0,1,0,0,0,1 +IG_Pet_Egg_Scroll_Box3,12932,0,1,0,0,0,1 // 1x Pet_Egg_Scroll3 -IG_Pet_Egg_Scroll_Box4,Pet_Egg_Scroll4,0,1,0,0,0,1 +IG_Pet_Egg_Scroll_Box4,12933,0,1,0,0,0,1 // 1x Pet_Egg_Scroll4 -IG_Pet_Egg_Scroll_Box4,Pet_Egg_Scroll5,0,1,0,0,0,1 +IG_Pet_Egg_Scroll_Box4,12934,0,1,0,0,0,1 // 1x Pet_Egg_Scroll5 -IG_Pet_Egg_Scroll3,Battle_Manual,100,2,1,0,0,1 -IG_Pet_Egg_Scroll3,Insurance,200,2,1,0,0,1 -IG_Pet_Egg_Scroll3,Enriched_Oridecon,80,1,1,0,0,1 -IG_Pet_Egg_Scroll3,Kafra_Card,300,2,1,0,0,1 -IG_Pet_Egg_Scroll3,Adrenaline_Scroll,300,2,1,0,0,1 -IG_Pet_Egg_Scroll3,Neuralizer,10,1,1,0,0,1 -IG_Pet_Egg_Scroll3,Pink_Drooping_Kitty,100,1,1,0,0,1 +IG_Pet_Egg_Scroll3,12208,100,2,1,0,0,1 // 2x Battle_Manual +IG_Pet_Egg_Scroll3,12209,200,2,1,0,0,1 // 2x Insurance +IG_Pet_Egg_Scroll3,7620,80,1,1,0,0,1 // 1x Enriched_Oridecon +IG_Pet_Egg_Scroll3,12211,300,2,1,0,0,1 // 2x Kafra_Card +IG_Pet_Egg_Scroll3,12220,300,2,1,0,0,1 // 2x Adrenaline_Scroll +IG_Pet_Egg_Scroll3,12213,10,1,1,0,0,1 // 1x Neuralizer +IG_Pet_Egg_Scroll3,5232,100,1,1,0,0,1 // 1x Pink_Drooping_Kitty -IG_Pet_Egg_Scroll4,Battle_Manual,90,2,1,0,0,1 -IG_Pet_Egg_Scroll4,Wind_Walk_10_Scroll,150,2,1,0,0,1 -IG_Pet_Egg_Scroll4,Token_Of_Siegfried,200,2,1,0,0,1 -IG_Pet_Egg_Scroll4,Giant_Fly_Wing,200,2,1,0,0,1 -IG_Pet_Egg_Scroll4,Aspersio_5_Scroll,200,2,1,0,0,1 -IG_Pet_Egg_Scroll4,Bubble_Gum,150,2,1,0,0,1 -IG_Pet_Egg_Scroll4,Pink_Fur_Hat,10,1,1,0,0,1 +IG_Pet_Egg_Scroll4,12208,90,2,1,0,0,1 // 2x Battle_Manual +IG_Pet_Egg_Scroll4,12219,150,2,1,0,0,1 // 2x Wind_Walk_10_Scroll +IG_Pet_Egg_Scroll4,7621,200,2,1,0,0,1 // 2x Token_Of_Siegfried +IG_Pet_Egg_Scroll4,12212,200,2,1,0,0,1 // 2x Giant_Fly_Wing +IG_Pet_Egg_Scroll4,12217,200,2,1,0,0,1 // 2x Aspersio_5_Scroll +IG_Pet_Egg_Scroll4,12210,150,2,1,0,0,1 // 2x Bubble_Gum +IG_Pet_Egg_Scroll4,5237,10,1,1,0,0,1 // 1x Pink_Fur_Hat -IG_Pet_Egg_Scroll5,Battle_Manual,150,2,1,0,0,1 -IG_Pet_Egg_Scroll5,Enriched_Elunium,135,1,1,0,0,1 -IG_Pet_Egg_Scroll5,Token_Of_Siegfried,200,2,1,0,0,1 -IG_Pet_Egg_Scroll5,Giant_Fly_Wing,300,2,1,0,0,1 -IG_Pet_Egg_Scroll5,Mini_Propeller_,5,1,1,0,0,1 -IG_Pet_Egg_Scroll5,Bubble_Gum,200,1,1,0,0,1 -IG_Pet_Egg_Scroll5,White_Wizardry_Hat,10,1,1,0,0,1 +IG_Pet_Egg_Scroll5,12208,150,2,1,0,0,1 // 2x Battle_Manual +IG_Pet_Egg_Scroll5,7619,135,1,1,0,0,1 // 1x Enriched_Elunium +IG_Pet_Egg_Scroll5,7621,200,2,1,0,0,1 // 2x Token_Of_Siegfried +IG_Pet_Egg_Scroll5,12212,300,2,1,0,0,1 // 2x Giant_Fly_Wing +IG_Pet_Egg_Scroll5,5226,5,1,1,0,0,1 // 1x Mini_Propeller_ +IG_Pet_Egg_Scroll5,12210,200,1,1,0,0,1 // 1x Bubble_Gum +IG_Pet_Egg_Scroll5,5239,10,1,1,0,0,1 // 1x White_Wizardry_Hat -IG_Infiltrator_Box,Infiltrator_C,0,1,0,0,10080,1 +IG_Infiltrator_Box,1267,0,1,0,0,10080,1 // 1x Infiltrator_C -IG_Muramasa_Box,Muramasa_C,0,1,0,0,10080,1 +IG_Muramasa_Box,1173,0,1,0,0,10080,1 // 1x Muramasa_C -IG_Excalibur_Box,Excalibur_C,0,1,0,0,10080,1 +IG_Excalibur_Box,13401,0,1,0,0,10080,1 // 1x Excalibur_C -IG_Combat_Knife_Box,Combat_Knife_C,0,1,0,0,10080,1 +IG_Combat_Knife_Box,13021,0,1,0,0,10080,1 // 1x Combat_Knife_C -IG_Counter_Dagger_Box,Counter_Dagger_C,0,1,0,0,10080,1 +IG_Counter_Dagger_Box,13022,0,1,0,0,10080,1 // 1x Counter_Dagger_C -IG_Kaiser_Knuckle_Box,Kaiser_Knuckle_C,0,1,0,0,10080,1 +IG_Kaiser_Knuckle_Box,1817,0,1,0,0,10080,1 // 1x Kaiser_Knuckle_C -IG_Pole_Axe_Box,Pole_Axe_C,0,1,0,0,10080,1 +IG_Pole_Axe_Box,1419,0,1,0,0,10080,1 // 1x Pole_Axe_C -IG_Mighty_Staff_Box,Mighty_Staff_C,0,1,0,0,10080,1 +IG_Mighty_Staff_Box,1623,0,1,0,0,10080,1 // 1x Mighty_Staff_C -IG_Right_Epsilon_Box,Right_Epsilon_C,0,1,0,0,10080,1 +IG_Right_Epsilon_Box,1372,0,1,0,0,10080,1 // 1x Right_Epsilon_C -IG_Balistar_Box,Balistar_C,0,1,0,0,10080,1 +IG_Balistar_Box,1728,0,1,0,0,10080,1 // 1x Balistar_C -IG_Diary_Of_Great_Sage_Box,Diary_Of_Great_Sage_C,0,1,0,0,10080,1 +IG_Diary_Of_Great_Sage_Box,1563,0,1,0,0,10080,1 // 1x Diary_Of_Great_Sage_C -IG_Asura_Box,Asura_C,0,1,0,0,10080,1 +IG_Asura_Box,13023,0,1,0,0,10080,1 // 1x Asura_C -IG_Apple_Of_Archer_Box,Apple_Of_Archer_C,0,1,0,0,10080,1 +IG_Apple_Of_Archer_Box,5265,0,1,0,0,10080,1 // 1x Apple_Of_Archer_C -IG_Bunny_Band_Box,Bunny_Band_C,0,1,0,0,10080,1 +IG_Bunny_Band_Box,5266,0,1,0,0,10080,1 // 1x Bunny_Band_C -IG_Sahkkat_Box,Sahkkat_C,0,1,0,0,10080,1 +IG_Sahkkat_Box,5267,0,1,0,0,10080,1 // 1x Sahkkat_C -IG_Lord_Circlet_Box,Lord_Circlet_C,0,1,0,0,10080,1 +IG_Lord_Circlet_Box,5268,0,1,0,0,10080,1 // 1x Lord_Circlet_C -IG_Elven_Ears_Box,Elven_Ears_C,0,1,0,0,10080,1 +IG_Elven_Ears_Box,2686,0,1,0,0,10080,1 // 1x Elven_Ears_C -IG_Steel_Flower_Box,Steel_Flower_C,0,1,0,0,10080,1 +IG_Steel_Flower_Box,2687,0,1,0,0,10080,1 // 1x Steel_Flower_C -IG_Critical_Ring_Box,Critical_Ring_C,0,1,0,0,10080,1 +IG_Critical_Ring_Box,2688,0,1,0,0,10080,1 // 1x Critical_Ring_C -IG_Earring_Box,Earring_C,0,1,0,0,10080,1 +IG_Earring_Box,2689,0,1,0,0,10080,1 // 1x Earring_C -IG_Ring_Box,Ring_C,0,1,0,0,10080,1 +IG_Ring_Box,2690,0,1,0,0,10080,1 // 1x Ring_C -IG_Necklace_Box,Necklace_C,0,1,0,0,10080,1 +IG_Necklace_Box,2691,0,1,0,0,10080,1 // 1x Necklace_C -IG_Glove_Box,Glove_C,0,1,0,0,10080,1 +IG_Glove_Box,2692,0,1,0,0,10080,1 // 1x Glove_C -IG_Brooch_Box,Brooch_C,0,1,0,0,10080,1 +IG_Brooch_Box,2693,0,1,0,0,10080,1 // 1x Brooch_C -IG_Rosary_Box,Rosary_C,0,1,0,0,10080,1 +IG_Rosary_Box,2694,0,1,0,0,10080,1 // 1x Rosary_C -IG_Safety_Ring_Box,Safety_Ring_C,0,1,0,0,10080,1 +IG_Safety_Ring_Box,2695,0,1,0,0,10080,1 // 1x Safety_Ring_C -IG_Vesper_Core01_Box,Vesper_Core01_C,0,1,0,0,10080,1 +IG_Vesper_Core01_Box,2696,0,1,0,0,10080,1 // 1x Vesper_Core01_C -IG_Vesper_Core02_Box,Vesper_Core02_C,0,1,0,0,10080,1 +IG_Vesper_Core02_Box,2697,0,1,0,0,10080,1 // 1x Vesper_Core02_C -IG_Vesper_Core03_Box,Vesper_Core03_C,0,1,0,0,10080,1 +IG_Vesper_Core03_Box,2698,0,1,0,0,10080,1 // 1x Vesper_Core03_C -IG_Vesper_Core04_Box,Vesper_Core04_C,0,1,0,0,10080,1 +IG_Vesper_Core04_Box,2699,0,1,0,0,10080,1 // 1x Vesper_Core04_C -IG_Pet_Egg_Scroll_Box6,Pet_Egg_Scroll6,0,1,0,0,0,1 +IG_Pet_Egg_Scroll_Box6,12989,0,1,0,0,0,1 // 1x Pet_Egg_Scroll6 -IG_Pet_Egg_Scroll_Box7,Pet_Egg_Scroll7,0,1,0,0,0,1 +IG_Pet_Egg_Scroll_Box7,12990,0,1,0,0,0,1 // 1x Pet_Egg_Scroll7 -IG_Pet_Egg_Scroll_Box8,Pet_Egg_Scroll8,0,1,0,0,0,1 +IG_Pet_Egg_Scroll_Box8,12991,0,1,0,0,0,1 // 1x Pet_Egg_Scroll8 -IG_Pet_Egg_Scroll_Box9,Pet_Egg_Scroll9,0,1,0,0,0,1 +IG_Pet_Egg_Scroll_Box9,12992,0,1,0,0,0,1 // 1x Pet_Egg_Scroll9 -IG_Pet_Egg_Scroll_Box10,Pet_Egg_Scroll10,0,1,0,0,0,1 +IG_Pet_Egg_Scroll_Box10,12993,0,1,0,0,0,1 // 1x Pet_Egg_Scroll10 -IG_Pet_Egg_Scroll_Box11,Pet_Egg_Scroll11,0,1,0,0,0,1 +IG_Pet_Egg_Scroll_Box11,12994,0,1,0,0,0,1 // 1x Pet_Egg_Scroll11 -IG_Pet_Egg_Scroll6,Battle_Manual_Box,200,1,1,0,0,1 -IG_Pet_Egg_Scroll6,Enriched_Elunium_Box,195,1,1,0,0,1 -IG_Pet_Egg_Scroll6,Token_Of_Siegfried_Box,400,1,1,0,0,1 -IG_Pet_Egg_Scroll6,Bubble_Gum_Box,200,1,1,0,0,1 -IG_Pet_Egg_Scroll6,Pair_Of_Red_Ribbon_,2,1,1,0,0,1 -IG_Pet_Egg_Scroll6,Drooping_Kitty_,1,1,1,0,0,1 -IG_Pet_Egg_Scroll6,Orc_Hero_Helm_TW,1,1,1,0,0,1 -IG_Pet_Egg_Scroll6,Magestic_Goat_TW,1,1,1,0,0,1 +IG_Pet_Egg_Scroll6,12900,200,1,1,0,0,1 // 1x Battle_Manual_Box +IG_Pet_Egg_Scroll6,12920,195,1,1,0,0,1 // 1x Enriched_Elunium_Box +IG_Pet_Egg_Scroll6,12922,400,1,1,0,0,1 // 1x Token_Of_Siegfried_Box +IG_Pet_Egg_Scroll6,12902,200,1,1,0,0,1 // 1x Bubble_Gum_Box +IG_Pet_Egg_Scroll6,5221,2,1,1,0,0,1 // 1x Pair_Of_Red_Ribbon_ +IG_Pet_Egg_Scroll6,5219,1,1,1,0,0,1 // 1x Drooping_Kitty_ +IG_Pet_Egg_Scroll6,5224,1,1,1,0,0,1 // 1x Orc_Hero_Helm_TW +IG_Pet_Egg_Scroll6,5217,1,1,1,0,0,1 // 1x Magestic_Goat_TW -IG_Pet_Egg_Scroll7,Battle_Manual,80,2,1,0,0,1 -IG_Pet_Egg_Scroll7,Insurance,30,2,1,0,0,1 -IG_Pet_Egg_Scroll7,Enriched_Oridecon,120,2,1,0,0,1 -IG_Pet_Egg_Scroll7,Kafra_Card,190,10,1,0,0,1 -IG_Pet_Egg_Scroll7,Megaphone_,190,5,1,0,0,1 -IG_Pet_Egg_Scroll7,Old_Violet_Box,50,3,1,0,0,1 -IG_Pet_Egg_Scroll7,Vit_Dish10,200,5,1,0,0,1 -IG_Pet_Egg_Scroll7,Bloody_Dead_Branch,120,1,1,0,0,1 -IG_Pet_Egg_Scroll7,Succubus_Card,2,1,1,0,0,1 -IG_Pet_Egg_Scroll7,Incubus_Card,2,1,1,0,0,1 -IG_Pet_Egg_Scroll7,Smoking_Pipe_,5,1,1,0,0,1 -IG_Pet_Egg_Scroll7,Pair_Of_Red_Ribbon_,9,1,1,0,0,1 - -IG_Pet_Egg_Scroll8,Battle_Manual,80,2,1,0,0,1 -IG_Pet_Egg_Scroll8,Wind_Walk_10_Scroll,60,5,1,0,0,1 -IG_Pet_Egg_Scroll8,Token_Of_Siegfried,120,5,1,0,0,1 -IG_Pet_Egg_Scroll8,Giant_Fly_Wing,244,10,1,0,0,1 -IG_Pet_Egg_Scroll8,Neuralizer,1,1,1,0,0,1 -IG_Pet_Egg_Scroll8,Bubble_Gum,150,2,1,0,0,1 -IG_Pet_Egg_Scroll8,Yggdrasilberry,200,10,1,0,0,1 -IG_Pet_Egg_Scroll8,Agi_Dish10,100,5,1,0,0,1 -IG_Pet_Egg_Scroll8,Old_Violet_Box,30,3,1,0,0,1 -IG_Pet_Egg_Scroll8,Silver_Tiara,3,1,1,0,0,1 -IG_Pet_Egg_Scroll8,Magestic_Goat_TW,3,1,1,0,0,1 -IG_Pet_Egg_Scroll8,Fish_On_Head_,9,1,1,0,0,1 - -IG_Pet_Egg_Scroll9,Battle_Manual,200,2,1,0,0,1 -IG_Pet_Egg_Scroll9,Insurance,50,2,1,0,0,1 -IG_Pet_Egg_Scroll9,Enriched_Oridecon,160,2,1,0,0,1 -IG_Pet_Egg_Scroll9,Kafra_Card,80,10,1,0,0,1 -IG_Pet_Egg_Scroll9,Adrenaline_Scroll,200,5,1,0,0,1 -IG_Pet_Egg_Scroll9,Neuralizer,1,1,1,0,0,1 -IG_Pet_Egg_Scroll9,Old_Violet_Box,60,3,1,0,0,1 -IG_Pet_Egg_Scroll9,Str_Dish10,208,5,1,0,0,1 -IG_Pet_Egg_Scroll9,Dark_Illusion_Card,5,1,1,0,0,1 -IG_Pet_Egg_Scroll9,Dark_Lord_Card,1,1,1,0,0,1 -IG_Pet_Egg_Scroll9,Orc_Hero_Helm_TW,5,1,1,0,0,1 -IG_Pet_Egg_Scroll9,Bunny_Band_,10,1,1,0,0,1 - -IG_Pet_Egg_Scroll10,Battle_Manual,100,2,1,0,0,1 -IG_Pet_Egg_Scroll10,Wind_Walk_10_Scroll,80,5,1,0,0,1 -IG_Pet_Egg_Scroll10,Token_Of_Siegfried,100,5,1,0,0,1 -IG_Pet_Egg_Scroll10,Giant_Fly_Wing,200,10,1,0,0,1 -IG_Pet_Egg_Scroll10,Megaphone_,160,5,1,0,0,1 -IG_Pet_Egg_Scroll10,Bubble_Gum,100,2,1,0,0,1 -IG_Pet_Egg_Scroll10,Yggdrasilberry,152,10,1,0,0,1 -IG_Pet_Egg_Scroll10,Int_Dish10,100,5,1,0,0,1 -IG_Pet_Egg_Scroll10,Injustice_Card,2,1,1,0,0,1 -IG_Pet_Egg_Scroll10,Zherlthsh_Card,2,1,1,0,0,1 -IG_Pet_Egg_Scroll10,Angelic_Chain_,2,1,1,0,0,1 -IG_Pet_Egg_Scroll10,Satanic_Chain_,2,1,1,0,0,1 - -IG_Pet_Egg_Scroll11,Battle_Manual,115,2,1,0,0,1 -IG_Pet_Egg_Scroll11,Enriched_Elunium,90,2,1,0,0,1 -IG_Pet_Egg_Scroll11,Token_Of_Siegfried,205,5,1,0,0,1 -IG_Pet_Egg_Scroll11,Giant_Fly_Wing,205,10,1,0,0,1 -IG_Pet_Egg_Scroll11,Bubble_Gum,115,2,1,0,0,1 -IG_Pet_Egg_Scroll11,Old_Violet_Box,55,3,1,0,0,1 -IG_Pet_Egg_Scroll11,Dex_Dish10,205,5,1,0,0,1 -IG_Pet_Egg_Scroll11,Owl_Baron_Card,2,1,1,0,0,1 -IG_Pet_Egg_Scroll11,Owl_Duke_Card,2,1,1,0,0,1 -IG_Pet_Egg_Scroll11,Slipper,2,1,1,0,0,1 -IG_Pet_Egg_Scroll11,Drooping_Kitty_,2,1,1,0,0,1 -IG_Pet_Egg_Scroll11,Big_Golden_Bell_,2,1,1,0,0,1 - -IG_CP_Helm_Scroll_Box,CP_Helm_Scroll,0,1,0,0,0,1 -IG_CP_Helm_Scroll_Box,Coating_Bottle,0,1,0,0,0,1 - -IG_CP_Shield_Scroll_Box,CP_Shield_Scroll,0,1,0,0,0,1 -IG_CP_Shield_Scroll_Box,Coating_Bottle,0,1,0,0,0,1 - -IG_CP_Armor_Scroll_Box,CP_Armor_Scroll,0,1,0,0,0,1 -IG_CP_Armor_Scroll_Box,Coating_Bottle,0,1,0,0,0,1 - -IG_CP_Weapon_Scroll_Box,CP_Weapon_Scroll,0,1,0,0,0,1 -IG_CP_Weapon_Scroll_Box,Coating_Bottle,0,1,0,0,0,1 - -IG_Repair_Scroll_Box,Repair_Scroll,0,1,0,0,0,1 -IG_Repair_Scroll_Box,Iron_Ore,0,1,0,0,0,1 -IG_Repair_Scroll_Box,Iron,0,1,0,0,0,1 -IG_Repair_Scroll_Box,Oridecon_Stone,0,1,0,0,0,1 -IG_Repair_Scroll_Box,Steel,0,1,0,0,0,1 - -IG_Super_Pet_Egg1,Tiara,2,1,1,0,0,1 -IG_Super_Pet_Egg1,Crown,2,1,1,0,0,1 -IG_Super_Pet_Egg1,Loard_Circlet,1,1,1,0,0,1 -IG_Super_Pet_Egg1,Ear_Of_Angel's_Wing,5,1,1,0,0,1 -IG_Super_Pet_Egg1,Ear_Of_Devil's_Wing,5,1,1,0,0,1 -IG_Super_Pet_Egg1,Flying_Angel,20,1,1,0,0,1 -IG_Super_Pet_Egg1,Dark_Lord_Card,1,1,1,0,0,1 -IG_Super_Pet_Egg1,Angeling_Card,2,1,1,0,0,1 -IG_Super_Pet_Egg1,Ghostring_Card,2,1,1,0,0,1 -IG_Super_Pet_Egg1,Nurse_Cap,80,1,1,0,0,1 -IG_Super_Pet_Egg1,Centimental_Flower,45,1,1,0,0,1 -IG_Super_Pet_Egg1,Tulip_Hairpin,50,1,1,0,0,1 -IG_Super_Pet_Egg1,Old_Card_Album,85,2,1,0,0,1 -IG_Super_Pet_Egg1,Old_Violet_Box,130,5,1,0,0,1 -IG_Super_Pet_Egg1,Yggdrasilberry,170,15,1,0,0,1 -IG_Super_Pet_Egg1,Seed_Of_Yggdrasil,170,30,1,0,0,1 -IG_Super_Pet_Egg1,Zeny_Scroll,230,10,1,0,0,1 - -IG_Super_Pet_Egg2,Golden_Gear,6,1,1,0,0,1 -IG_Super_Pet_Egg2,Coronet,3,1,1,0,0,1 -IG_Super_Pet_Egg2,Ghost_Bandana,6,1,1,0,0,1 -IG_Super_Pet_Egg2,Horn_Of_Succubus,2,1,1,0,0,1 -IG_Super_Pet_Egg2,Inccubus_Horn,2,1,1,0,0,1 -IG_Super_Pet_Egg2,Archangeling_Card,10,1,1,0,0,1 -IG_Super_Pet_Egg2,Knight_Of_Abyss_Card,3,1,1,0,0,1 -IG_Super_Pet_Egg2,Pharaoh_Card,1,1,1,0,0,1 -IG_Super_Pet_Egg2,Poring_Hat,80,1,1,0,0,1 -IG_Super_Pet_Egg2,Centimental_Leaf,50,1,1,0,0,1 -IG_Super_Pet_Egg2,First_Moon_Hair_Pin,40,1,1,0,0,1 -IG_Super_Pet_Egg2,Cigar,20,1,1,0,0,1 -IG_Super_Pet_Egg2,Old_Card_Album,90,2,1,0,0,1 -IG_Super_Pet_Egg2,Old_Violet_Box,130,5,1,0,0,1 -IG_Super_Pet_Egg2,Yggdrasilberry,160,15,1,0,0,1 -IG_Super_Pet_Egg2,Seed_Of_Yggdrasil,170,30,1,0,0,1 -IG_Super_Pet_Egg2,Zeny_Scroll,227,10,1,0,0,1 - -IG_Super_Pet_Egg3,Oldman's_Romance,5,1,1,0,0,1 -IG_Super_Pet_Egg3,Fillet,6,1,1,0,0,1 -IG_Super_Pet_Egg3,Smoking_Pipe,3,1,1,0,0,1 -IG_Super_Pet_Egg3,Kafra_Band,1,1,1,0,0,1 -IG_Super_Pet_Egg3,Hair_Protector,6,1,1,0,0,1 -IG_Super_Pet_Egg3,Crescent_Scythe,10,1,1,0,0,1 -IG_Super_Pet_Egg3,House_Auger,33,1,1,0,0,1 -IG_Super_Pet_Egg3,Dark_Illusion_Card,2,1,1,0,0,1 -IG_Super_Pet_Egg3,Drake_Card,2,1,1,0,0,1 -IG_Super_Pet_Egg3,Maya_Card,2,1,1,0,0,1 -IG_Super_Pet_Egg3,Ear_Mufs,100,1,1,0,0,1 -IG_Super_Pet_Egg3,Pair_Of_Red_Ribbon,50,1,1,0,0,1 -IG_Super_Pet_Egg3,Old_Card_Album,90,2,1,0,0,1 -IG_Super_Pet_Egg3,Old_Violet_Box,120,5,1,0,0,1 -IG_Super_Pet_Egg3,Yggdrasilberry,180,15,1,0,0,1 -IG_Super_Pet_Egg3,Seed_Of_Yggdrasil,170,30,1,0,0,1 -IG_Super_Pet_Egg3,Zeny_Scroll,220,10,1,0,0,1 - -IG_Super_Pet_Egg4,Angelic_Chain,3,1,1,0,0,1 -IG_Super_Pet_Egg4,Magestic_Goat,3,1,1,0,0,1 -IG_Super_Pet_Egg4,Sharp_Gear,2,1,1,0,0,1 -IG_Super_Pet_Egg4,Helm_Of_Angel,2,1,1,0,0,1 -IG_Super_Pet_Egg4,Orc_Hero_Helm,4,1,1,0,0,1 -IG_Super_Pet_Egg4,Doppelganger_Card,1,1,1,0,0,1 -IG_Super_Pet_Egg4,Osiris_Card,2,1,1,0,0,1 -IG_Super_Pet_Egg4,Phreeoni_Card,2,1,1,0,0,1 -IG_Super_Pet_Egg4,Green_Feeler,70,1,1,0,0,1 -IG_Super_Pet_Egg4,Big_Sis'_Ribbon,50,1,1,0,0,1 -IG_Super_Pet_Egg4,Mistic_Rose,36,1,1,0,0,1 -IG_Super_Pet_Egg4,Well_Baked_Toast,35,1,1,0,0,1 -IG_Super_Pet_Egg4,Old_Card_Album,90,2,1,0,0,1 -IG_Super_Pet_Egg4,Old_Violet_Box,130,5,1,0,0,1 -IG_Super_Pet_Egg4,Yggdrasilberry,170,15,1,0,0,1 -IG_Super_Pet_Egg4,Seed_Of_Yggdrasil,170,30,1,0,0,1 -IG_Super_Pet_Egg4,Zeny_Scroll,230,10,1,0,0,1 - - -IG_Super_Card_Pet_Egg1,Orc_Lady_Card,40,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Mummy_Card,30,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Marina_Card,80,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Desert_Wolf_Card,80,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Soldier_Skeleton_Card,17,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Magnolia_Card,40,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Andre_Card,7,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Mandragora_Card,40,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Vadon_Card,50,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Baphomet_Card,2,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Drainliar_Card,50,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Flying_Deleter_Card,20,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Nightmare_Terror_Card,8,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Pest_Card,20,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Marc_Card,20,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Dark_Frame_Card,10,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Deleter_Card,5,1,1,0,0,1 -IG_Super_Card_Pet_Egg1,Yggdrasilberry,165,15,1,0,0,1 -IG_Super_Card_Pet_Egg1,Seed_Of_Yggdrasil,166,20,1,0,0,1 -IG_Super_Card_Pet_Egg1,Zeny_Scroll,150,5,1,0,0,1 - -IG_Super_Card_Pet_Egg2,Orc_Load_Card,1,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Skel_Worker_Card,30,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Minorous_Card,55,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Garm_Baby_Card,18,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Goblin_Card,25,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Caramel_Card,70,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Scorpion_Card,5,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Flora_Card,35,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Hunter_Fly_Card,35,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Pecopeco_Egg_Card,40,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Hydra_Card,30,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Disguise_Card,30,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Rybio_Card,9,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Wraith_Dead_Card,20,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Majoruros_Card,18,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Pupa_Card,40,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Pecopeco_Card,40,1,1,0,0,1 -IG_Super_Card_Pet_Egg2,Yggdrasilberry,168,15,1,0,0,1 -IG_Super_Card_Pet_Egg2,Seed_Of_Yggdrasil,165,20,1,0,0,1 -IG_Super_Card_Pet_Egg2,Zeny_Scroll,166,5,1,0,0,1 - -IG_Super_Card_Pet_Egg3,Elder_Wilow_Card,70,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Deviruchi_Card,20,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Marduk_Card,40,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Carat_Card,45,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Choco_Card,30,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Pharaoh_Card,1,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Nine_Tail_Card,30,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Whisper_Card,10,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Frilldora_Card,20,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Dragon_Tail_Card,33,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Baphomet__Card,10,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Daydric_Card,35,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Harpy_Card,50,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Whisper_Boss_Card,10,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Thara_Frog_Card,50,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Executioner_Card,35,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Khalitzburg_Card,30,1,1,0,0,1 -IG_Super_Card_Pet_Egg3,Yggdrasilberry,171,15,1,0,0,1 -IG_Super_Card_Pet_Egg3,Seed_Of_Yggdrasil,170,20,1,0,0,1 -IG_Super_Card_Pet_Egg3,Zeny_Scroll,140,5,1,0,0,1 - -IG_Super_Card_Pet_Egg4,Thief_Bug_Male_Card,60,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,Verit_Card,70,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,Matyr_Card,25,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,Sohee_Card,19,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,Antique_Firelock_Card,40,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,Blood_Butterfly_Card,38,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,Mimic_Card,35,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,Zerom_Card,38,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,Phen_Card,10,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,Kobold_Card,40,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,Moonlight_Flower_Card,1,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,Mantis_Card,45,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,Smokie_Card,65,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,Vitata_Card,10,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,High_Orc_Card,3,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,Penomena_Card,13,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,Tirfing_Card,18,1,1,0,0,1 -IG_Super_Card_Pet_Egg4,Yggdrasilberry,165,15,1,0,0,1 -IG_Super_Card_Pet_Egg4,Seed_Of_Yggdrasil,165,20,1,0,0,1 -IG_Super_Card_Pet_Egg4,Zeny_Scroll,140,5,1,0,0,1 - -IG_Vigorgra_Package1,Battle_Manual,0,2,0,0,0,1 -IG_Vigorgra_Package1,Str_Dish10_,0,2,0,0,0,1 -IG_Vigorgra_Package1,Agi_Dish10_,0,2,0,0,0,1 -IG_Vigorgra_Package1,Inc_Agi_10_Scroll,0,15,0,0,0,1 -IG_Vigorgra_Package1,Blessing_10_Scroll,0,15,0,0,0,1 -IG_Vigorgra_Package1,Kafra_Card,0,1,0,0,0,1 -IG_Vigorgra_Package1,Token_Of_Siegfried,0,1,0,0,0,1 - -IG_Vigorgra_Package2,Battle_Manual,0,2,0,0,0,1 -IG_Vigorgra_Package2,Str_Dish10_,0,2,0,0,0,1 -IG_Vigorgra_Package2,Vit_Dish10_,0,2,0,0,0,1 -IG_Vigorgra_Package2,Inc_Agi_10_Scroll,0,15,0,0,0,1 -IG_Vigorgra_Package2,Blessing_10_Scroll,0,15,0,0,0,1 -IG_Vigorgra_Package2,Kafra_Card,0,1,0,0,0,1 -IG_Vigorgra_Package2,Token_Of_Siegfried,0,1,0,0,0,1 - -IG_Vigorgra_Package3,Battle_Manual,0,2,0,0,0,1 -IG_Vigorgra_Package3,Int_Dish10_,0,2,0,0,0,1 -IG_Vigorgra_Package3,Dex_Dish10_,0,2,0,0,0,1 -IG_Vigorgra_Package3,Inc_Agi_10_Scroll,0,15,0,0,0,1 -IG_Vigorgra_Package3,Blessing_10_Scroll,0,15,0,0,0,1 -IG_Vigorgra_Package3,Kafra_Card,0,1,0,0,0,1 -IG_Vigorgra_Package3,Token_Of_Siegfried,0,1,0,0,0,1 - -IG_Vigorgra_Package4,Battle_Manual,0,2,0,0,0,1 -IG_Vigorgra_Package4,Int_Dish10_,0,2,0,0,0,1 -IG_Vigorgra_Package4,Dex_Dish10_,0,2,0,0,0,1 -IG_Vigorgra_Package4,Inc_Agi_10_Scroll,0,15,0,0,0,1 -IG_Vigorgra_Package4,Blessing_10_Scroll,0,15,0,0,0,1 -IG_Vigorgra_Package4,Kafra_Card,0,1,0,0,0,1 -IG_Vigorgra_Package4,Token_Of_Siegfried,0,1,0,0,0,1 - -IG_Vigorgra_Package5,Battle_Manual,0,2,0,0,0,1 -IG_Vigorgra_Package5,Int_Dish10_,0,2,0,0,0,1 -IG_Vigorgra_Package5,Dex_Dish10_,0,2,0,0,0,1 -IG_Vigorgra_Package5,Inc_Agi_10_Scroll,0,15,0,0,0,1 -IG_Vigorgra_Package5,Blessing_10_Scroll,0,15,0,0,0,1 -IG_Vigorgra_Package5,Kafra_Card,0,1,0,0,0,1 -IG_Vigorgra_Package5,Token_Of_Siegfried,0,1,0,0,0,1 - -IG_Vigorgra_Package6,Battle_Manual,0,2,0,0,0,1 -IG_Vigorgra_Package6,Str_Dish10_,0,2,0,0,0,1 -IG_Vigorgra_Package6,Agi_Dish10_,0,2,0,0,0,1 -IG_Vigorgra_Package6,Adrenaline_Scroll,0,24,0,0,0,1 -IG_Vigorgra_Package6,Aspersio_5_Scroll,0,20,0,0,0,1 -IG_Vigorgra_Package6,Holy_Water,0,20,0,0,0,1 -IG_Vigorgra_Package6,Kafra_Card,0,1,0,0,0,1 -IG_Vigorgra_Package6,Token_Of_Siegfried,0,1,0,0,0,1 - -IG_Vigorgra_Package7,Battle_Manual,0,4,0,0,0,1 -IG_Vigorgra_Package7,Str_Dish10_,0,4,0,0,0,1 -IG_Vigorgra_Package7,Agi_Dish10_,0,4,0,0,0,1 -IG_Vigorgra_Package7,Inc_Agi_10_Scroll,0,30,0,0,0,1 -IG_Vigorgra_Package7,Blessing_10_Scroll,0,30,0,0,0,1 -IG_Vigorgra_Package7,Kafra_Card,0,2,0,0,0,1 -IG_Vigorgra_Package7,Token_Of_Siegfried,0,2,0,0,0,1 - -IG_Vigorgra_Package8,Battle_Manual,0,4,0,0,0,1 -IG_Vigorgra_Package8,Str_Dish10_,0,4,0,0,0,1 -IG_Vigorgra_Package8,Agi_Dish10_,0,4,0,0,0,1 -IG_Vigorgra_Package8,Inc_Agi_10_Scroll,0,30,0,0,0,1 -IG_Vigorgra_Package8,Blessing_10_Scroll,0,30,0,0,0,1 -IG_Vigorgra_Package8,Kafra_Card,0,2,0,0,0,1 -IG_Vigorgra_Package8,Token_Of_Siegfried,0,2,0,0,0,1 - -IG_Vigorgra_Package9,Battle_Manual,0,4,0,0,0,1 -IG_Vigorgra_Package9,Int_Dish10_,0,4,0,0,0,1 -IG_Vigorgra_Package9,Dex_Dish10_,0,4,0,0,0,1 -IG_Vigorgra_Package9,Inc_Agi_10_Scroll,0,30,0,0,0,1 -IG_Vigorgra_Package9,Blessing_10_Scroll,0,30,0,0,0,1 -IG_Vigorgra_Package9,Kafra_Card,0,2,0,0,0,1 -IG_Vigorgra_Package9,Token_Of_Siegfried,0,2,0,0,0,1 - -IG_Vigorgra_Package10,Battle_Manual,0,4,0,0,0,1 -IG_Vigorgra_Package10,Int_Dish10_,0,4,0,0,0,1 -IG_Vigorgra_Package10,Vit_Dish10_,0,4,0,0,0,1 -IG_Vigorgra_Package10,Inc_Agi_10_Scroll,0,30,0,0,0,1 -IG_Vigorgra_Package10,Blessing_10_Scroll,0,30,0,0,0,1 -IG_Vigorgra_Package10,Kafra_Card,0,2,0,0,0,1 -IG_Vigorgra_Package10,Token_Of_Siegfried,0,2,0,0,0,1 - -IG_Vigorgra_Package11,Battle_Manual,0,4,0,0,0,1 -IG_Vigorgra_Package11,Int_Dish10_,0,4,0,0,0,1 -IG_Vigorgra_Package11,Vit_Dish10_,0,4,0,0,0,1 -IG_Vigorgra_Package11,Inc_Agi_10_Scroll,0,30,0,0,0,1 -IG_Vigorgra_Package11,Blessing_10_Scroll,0,30,0,0,0,1 -IG_Vigorgra_Package11,Kafra_Card,0,2,0,0,0,1 -IG_Vigorgra_Package11,Token_Of_Siegfried,0,2,0,0,0,1 - -IG_Vigorgra_Package12,Battle_Manual,0,4,0,0,0,1 -IG_Vigorgra_Package12,Str_Dish10_,0,4,0,0,0,1 -IG_Vigorgra_Package12,Agi_Dish10_,0,4,0,0,0,1 -IG_Vigorgra_Package12,Adrenaline_Scroll,0,48,0,0,0,1 -IG_Vigorgra_Package12,Aspersio_5_Scroll,0,40,0,0,0,1 -IG_Vigorgra_Package12,Holy_Water,0,40,0,0,0,1 -IG_Vigorgra_Package12,Kafra_Card,0,2,0,0,0,1 -IG_Vigorgra_Package12,Token_Of_Siegfried,0,2,0,0,0,1 - -IG_Pet_Egg_Scroll12,Poring_Box,80,1,1,0,0,1 -IG_Pet_Egg_Scroll12,Vit_Dish10_,150,10,1,0,0,1 -IG_Pet_Egg_Scroll12,Old_Violet_Box,80,1,1,0,0,1 -IG_Pet_Egg_Scroll12,Dex_Dish10_,150,10,1,0,0,1 -IG_Pet_Egg_Scroll12,Megaphone_,150,3,1,0,0,1 -IG_Pet_Egg_Scroll12,Kafra_Card,180,5,1,0,0,1 -IG_Pet_Egg_Scroll12,Luk_Dish10_,180,10,1,0,0,1 -IG_Pet_Egg_Scroll12,Elven_Ears,10,1,1,0,0,1 -IG_Pet_Egg_Scroll12,Flying_Angel,10,1,1,0,0,1 -IG_Pet_Egg_Scroll12,Zeny_Scroll,10,1,1,0,0,1 - -IG_Pet_Egg_Scroll13,Elephant_Hat,10,1,1,0,0,1 -IG_Pet_Egg_Scroll13,Happy_Wig,10,1,1,0,0,1 -IG_Pet_Egg_Scroll13,Enriched_Oridecon,170,5,1,0,0,1 -IG_Pet_Egg_Scroll13,Enriched_Elunium,300,5,1,0,0,1 -IG_Pet_Egg_Scroll13,Zeny_Scroll,10,1,1,0,0,1 -IG_Pet_Egg_Scroll13,Yggdrasilberry,100,7,1,0,0,1 -IG_Pet_Egg_Scroll13,Fruit_Of_Mastela,100,15,1,0,0,1 -IG_Pet_Egg_Scroll13,Blue_Herb,100,8,1,0,0,1 -IG_Pet_Egg_Scroll13,Insurance,100,3,1,0,0,1 -IG_Pet_Egg_Scroll13,White_Slim_Potion,100,20,1,0,0,1 - -IG_Pet_Egg_Scroll14,Hibiscus,10,1,1,0,0,1 -IG_Pet_Egg_Scroll14,Charming_Ribbon,10,1,1,0,0,1 -IG_Pet_Egg_Scroll14,Enriched_Oridecon,150,5,1,0,0,1 -IG_Pet_Egg_Scroll14,Enriched_Elunium,250,5,1,0,0,1 -IG_Pet_Egg_Scroll14,Zeny_Scroll,50,1,1,0,0,1 -IG_Pet_Egg_Scroll14,Yggdrasilberry,100,7,1,0,0,1 -IG_Pet_Egg_Scroll14,Fruit_Of_Mastela,100,15,1,0,0,1 -IG_Pet_Egg_Scroll14,Grape_Juice,100,20,1,0,0,1 -IG_Pet_Egg_Scroll14,Insurance,100,3,1,0,0,1 -IG_Pet_Egg_Scroll14,White_Slim_Potion,130,20,1,0,0,1 - -IG_Super_Pet_Egg5,Bird_Nest,15,1,1,0,0,1 -IG_Super_Pet_Egg5,Fallen_Leaves,10,1,1,0,0,1 -IG_Super_Pet_Egg5,Sheep_Hat,5,1,1,0,0,1 -IG_Super_Pet_Egg5,Pumpkin_Hat,10,1,1,0,0,1 -IG_Super_Pet_Egg5,Cyclops_Visor,6,1,1,0,0,1 -IG_Super_Pet_Egg5,Alice_Doll,5,1,1,0,0,1 -IG_Super_Pet_Egg5,Magic_Eyes,5,1,1,0,0,1 -IG_Super_Pet_Egg5,Minstrel_Hat,5,1,1,0,0,1 -IG_Super_Pet_Egg5,Steel,53,10,1,0,0,1 -IG_Super_Pet_Egg5,Old_Card_Album,90,2,1,0,0,1 -IG_Super_Pet_Egg5,Old_Violet_Box,150,5,1,0,0,1 -IG_Super_Pet_Egg5,Yggdrasilberry,200,15,1,0,0,1 -IG_Super_Pet_Egg5,Seed_Of_Yggdrasil,230,30,1,0,0,1 -IG_Super_Pet_Egg5,Zeny_Scroll_Box,216,10,1,0,0,1 - -IG_Super_Pet_Egg6,Marionette_Doll,5,1,1,0,0,1 -IG_Super_Pet_Egg6,Gambler_Hat,10,1,1,0,0,1 -IG_Super_Pet_Egg6,Elephant_Hat,10,1,1,0,0,1 -IG_Super_Pet_Egg6,Baseball_Cap,5,1,1,0,0,1 -IG_Super_Pet_Egg6,Silver_Tiara,5,1,1,0,0,1 -IG_Super_Pet_Egg6,Joker_Jester_,6,1,1,0,0,1 -IG_Super_Pet_Egg6,Headset_OST,5,1,1,0,0,1 -IG_Super_Pet_Egg6,Chinese_Crown,5,1,1,0,0,1 -IG_Super_Pet_Egg6,Steel,53,10,1,0,0,1 -IG_Super_Pet_Egg6,Old_Card_Album,90,2,1,0,0,1 -IG_Super_Pet_Egg6,Old_Violet_Box,150,5,1,0,0,1 -IG_Super_Pet_Egg6,Yggdrasilberry,200,15,1,0,0,1 -IG_Super_Pet_Egg6,Seed_Of_Yggdrasil,230,30,1,0,0,1 -IG_Super_Pet_Egg6,Zeny_Scroll_Box,226,10,1,0,0,1 - -IG_Super_Pet_Egg7,Candle,15,1,1,0,0,1 -IG_Super_Pet_Egg7,Gold_Tiara,5,1,1,0,0,1 -IG_Super_Pet_Egg7,Phrygian_Cap_,10,1,1,0,0,1 -IG_Super_Pet_Egg7,Helm_Of_Darkness,5,1,1,0,0,1 -IG_Super_Pet_Egg7,Puppy_Hat,10,1,1,0,0,1 -IG_Super_Pet_Egg7,Romantic_White_Flower,8,1,1,0,0,1 -IG_Super_Pet_Egg7,Hibiscus,5,1,1,0,0,1 -IG_Super_Pet_Egg7,Charming_Ribbon,10,1,1,0,0,1 -IG_Super_Pet_Egg7,Steel,53,10,1,0,0,1 -IG_Super_Pet_Egg7,Old_Card_Album,90,2,1,0,0,1 -IG_Super_Pet_Egg7,Old_Violet_Box,150,5,1,0,0,1 -IG_Super_Pet_Egg7,Yggdrasilberry,200,15,1,0,0,1 -IG_Super_Pet_Egg7,Seed_Of_Yggdrasil,230,30,1,0,0,1 -IG_Super_Pet_Egg7,Zeny_Scroll_Box,209,10,1,0,0,1 - -IG_Super_Pet_Egg8,Angeling_Hat,5,1,1,0,0,1 -IG_Super_Pet_Egg8,Coppola,10,1,1,0,0,1 -IG_Super_Pet_Egg8,Tongue_Mask,15,1,1,0,0,1 -IG_Super_Pet_Egg8,Captain_Hat,5,1,1,0,0,1 -IG_Super_Pet_Egg8,Laurel_Wreath,5,1,1,0,0,1 -IG_Super_Pet_Egg8,Geographer_Band,5,1,1,0,0,1 -IG_Super_Pet_Egg8,Twin_Ribbon,5,1,1,0,0,1 -IG_Super_Pet_Egg8,Bird_Nest_Hat,10,1,1,0,0,1 -IG_Super_Pet_Egg8,Steel,53,10,1,0,0,1 -IG_Super_Pet_Egg8,Old_Card_Album,90,2,1,0,0,1 -IG_Super_Pet_Egg8,Old_Violet_Box,150,5,1,0,0,1 -IG_Super_Pet_Egg8,Yggdrasilberry,200,15,1,0,0,1 -IG_Super_Pet_Egg8,Seed_Of_Yggdrasil,230,30,1,0,0,1 -IG_Super_Pet_Egg8,Zeny_Scroll_Box,217,10,1,0,0,1 - -IG_Pet_Egg_Scroll_E,Exorcize_Herb,350,10,1,0,0,1 -IG_Pet_Egg_Scroll_E,Silk_Ribbon,130,1,1,0,0,1 -IG_Pet_Egg_Scroll_E,Realgar_Wine,350,10,1,0,0,1 -IG_Pet_Egg_Scroll_E,Chung_E_Cake,70,10,1,0,0,1 -IG_Pet_Egg_Scroll_E,Bok_Choy,70,10,1,0,0,1 -IG_Pet_Egg_Scroll_E,Chung_E_Ticket,10,1,1,0,0,1 -IG_Pet_Egg_Scroll_E,Spring_Rabbit_Ticket,10,1,1,0,0,1 -IG_Pet_Egg_Scroll_E,Zeny_Scroll_Box,10,1,1,0,0,1 - -IG_Ramen_Hat_Box,Ramen_Hat,0,1,0,0,20160,1 - -IG_Mysterious_Travel_Sack1,Yellow_Baseball_Cap,1,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,Valkyrie_Feather_Band,5,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,Soulless_Wing,5,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,Afro_Wig,1,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,Happy_Wig,1,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,Shiny_Wig,1,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,Ring_Of_Water,2,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,Ring_Of_Fire,2,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,Dun_Tele_Scroll1,2,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,Dun_Tele_Scroll1_Box,5,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,Shadow_Armor_S_Box10,5,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,Holy_Armor_S_Box10,5,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,Small_Life_Potion_Box30,200,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,Med_Life_Potion_Box30,200,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,S_Def_Potion_Box30,200,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,S_Mdef_Potion_Box30,80,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,Max_Weight_Up_Box,80,1,1,0,0,1 -IG_Mysterious_Travel_Sack1,Regeneration_Box10,205,1,1,0,0,1 - -IG_Mysterious_Travel_Sack2,Aussie_Flag_Hat,10,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,Chullos,20,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,Ati_Atihan_Hat,5,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,Marcher_Hat,5,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,Marvelous_Wig,100,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,Fantastic_Wig,100,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,Ring_Of_Wind,20,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,Ring_Of_Earth,20,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,Dun_Tele_Scroll1,10,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,Dun_Tele_Scroll1_Box,50,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,Shadow_Armor_S_Box10,50,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,Holy_Armor_S_Box10,50,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,Small_Life_Potion_Box30,100,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,Med_Life_Potion_Box30,100,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,S_Def_Potion_Box30,100,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,S_Mdef_Potion_Box30,80,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,Max_Weight_Up_Box,80,1,1,0,0,1 -IG_Mysterious_Travel_Sack2,Regeneration_Box10,100,1,1,0,0,1 - -IG_Mysterious_Travel_Sack3,Kettle_Hat,20,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,Deviling_Hat,10,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,Pecopeco_Hairband,10,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,Chick_Hat,50,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,Vacation_Hat,30,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,Ribbon_Black,60,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,Ribbon_Yellow,50,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,Ribbon_Green,50,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,Dun_Tele_Scroll1,10,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,Dun_Tele_Scroll1_Box,50,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,Shadow_Armor_S_Box10,50,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,Holy_Armor_S_Box10,50,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,Small_Life_Potion_Box30,100,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,Med_Life_Potion_Box30,100,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,S_Def_Potion_Box30,100,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,S_Mdef_Potion_Box30,80,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,Max_Weight_Up_Box,80,1,1,0,0,1 -IG_Mysterious_Travel_Sack3,Regeneration_Box10,100,1,1,0,0,1 - -IG_Magician_Card_Box,Blood_Butterfly_Card,0,1,0,0,0,1 -IG_Magician_Card_Box,Parasite_Card,0,1,0,0,0,1 -IG_Magician_Card_Box,Harpy_Card,0,1,0,0,0,1 -IG_Magician_Card_Box,Miyabi_Ningyo_Card,0,1,0,0,0,1 -IG_Magician_Card_Box,Wicked_Nymph_Card,0,1,0,0,0,1 -IG_Magician_Card_Box,Loli_Ruri_Card,0,1,0,0,0,1 - -IG_Acolyte_Card_Box,Rideword_Card,0,1,0,0,0,1 -IG_Acolyte_Card_Box,Fur_Seal_Card,0,1,0,0,0,1 -IG_Acolyte_Card_Box,Live_Peach_Tree_Card,0,1,0,0,0,1 -IG_Acolyte_Card_Box,Geographer_Card,0,1,0,0,0,1 -IG_Acolyte_Card_Box,Cookie_Card,0,1,0,0,0,1 - -IG_Archer_Card_Box,Cruiser_Card,0,1,0,0,0,1 -IG_Archer_Card_Box,Anolian_Card,0,1,0,0,0,1 -IG_Archer_Card_Box,Merman_Card,0,1,0,0,0,1 -IG_Archer_Card_Box,Dragon_Tail_Card,0,1,0,0,0,1 -IG_Archer_Card_Box,Alligator_Card,0,1,0,0,0,1 - -IG_Swordman_Card_Box,Freezer_Card,0,1,0,0,0,1 -IG_Swordman_Card_Box,Heater_Card,0,1,0,0,0,1 -IG_Swordman_Card_Box,Solider_Card,0,1,0,0,0,1 -IG_Swordman_Card_Box,Permeter_Card,0,1,0,0,0,1 -IG_Swordman_Card_Box,Assulter_Card,0,1,0,0,0,1 - -IG_Thief_Card_Box,Shinobi_Card,0,1,0,0,0,1 -IG_Thief_Card_Box,Wander_Man_Card,0,1,0,0,0,1 -IG_Thief_Card_Box,Wild_Rose_Card,0,1,0,0,0,1 -IG_Thief_Card_Box,The_Paper_Card,0,1,0,0,0,1 -IG_Thief_Card_Box,Dancing_Dragon_Card,0,1,0,0,0,1 - -IG_Merchant_Card_Box,Mystcase_Card,0,1,0,0,0,1 -IG_Merchant_Card_Box,Zipper_Bear_Card,0,1,0,0,0,1 -IG_Merchant_Card_Box,Raggler_Card,0,1,0,0,0,1 -IG_Merchant_Card_Box,Baby_Leopard_Card,0,1,0,0,0,1 -IG_Merchant_Card_Box,Hylozoist_Card,0,1,0,0,0,1 - -IG_Hard_Core_Set_Box,Battle_Manual,0,10,0,0,0,1 -IG_Hard_Core_Set_Box,Bubble_Gum,0,10,0,0,0,1 -IG_Hard_Core_Set_Box,Insurance,0,10,0,0,0,1 - -IG_Kitty_Set_Box,White_Drooping_Kitty,0,1,0,0,0,1 -IG_Kitty_Set_Box,Blue_Drooping_Kitty,0,1,0,0,0,1 -IG_Kitty_Set_Box,Pink_Drooping_Kitty,0,1,0,0,0,1 -IG_Kitty_Set_Box,Yellow_Drooping_Kitty,0,1,0,0,0,1 -IG_Kitty_Set_Box,Gray_Drooping_Kitty,0,1,0,0,0,1 - -IG_Soft_Core_Set_Box,Battle_Manual,0,5,0,0,0,1 -IG_Soft_Core_Set_Box,Bubble_Gum,0,5,0,0,0,1 -IG_Soft_Core_Set_Box,Insurance,0,5,0,0,0,1 - -IG_Deviruchi_Set_Box,Red_Deviruchi_Cap,0,1,0,0,0,1 -IG_Deviruchi_Set_Box,White_Deviruchi_Cap,0,1,0,0,0,1 -IG_Deviruchi_Set_Box,Gray_Deviruchi_Cap,0,1,0,0,0,1 - -IG_MVP_Hunt_Box,Convex_Mirror,0,3,0,0,0,1 -IG_MVP_Hunt_Box,Token_Of_Siegfried,0,1,0,0,0,1 -IG_MVP_Hunt_Box,Bubble_Gum,0,1,0,0,0,1 -IG_MVP_Hunt_Box,Megaphone_,0,1,0,0,0,1 - -IG_Brewing_Box,Dex_Dish10_,0,10,0,0,0,1 -IG_Brewing_Box,Int_Dish10_,0,10,0,0,0,1 -IG_Brewing_Box,Luk_Dish10_,0,10,0,0,0,1 - -IG_Xmas_Pet_Scroll,Fish_Head_Hat,1,1,1,0,0,1 -IG_Xmas_Pet_Scroll,Santa_Poring_Hat,1,1,1,0,0,1 -IG_Xmas_Pet_Scroll,Bell_Ribbon,1,1,1,0,0,1 -IG_Xmas_Pet_Scroll,Ear_Of_Angel's_Wing,5,1,1,0,0,1 -IG_Xmas_Pet_Scroll,Ear_Of_Devil's_Wing,5,1,1,0,0,1 -IG_Xmas_Pet_Scroll,Flying_Angel,5,1,1,0,0,1 -IG_Xmas_Pet_Scroll,Pecopeco_Hairband,2,1,1,0,0,1 -IG_Xmas_Pet_Scroll,Nurse_Cap,20,1,1,0,0,1 -IG_Xmas_Pet_Scroll,Centimental_Flower,20,1,1,0,0,1 -IG_Xmas_Pet_Scroll,Tulip_Hairpin,80,1,1,0,0,1 -IG_Xmas_Pet_Scroll,Old_Violet_Box,100,3,1,0,0,1 -IG_Xmas_Pet_Scroll,Yggdrasilberry,110,30,1,0,0,1 -IG_Xmas_Pet_Scroll,Leaf_Of_Yggdrasil,100,30,1,0,0,1 -IG_Xmas_Pet_Scroll,Crystal_Jewel,100,20,1,0,0,1 -IG_Xmas_Pet_Scroll,Crystal_Jewel__,150,10,1,0,0,1 -IG_Xmas_Pet_Scroll,Zeny_Scroll,150,10,1,0,0,1 -IG_Xmas_Pet_Scroll,Max_Weight_Up_Scroll,50,5,1,0,0,1 - -IG_Lucky_Scroll08,Kafra_Card,220,05,0,0,0,1 -IG_Lucky_Scroll08,Battle_Manual,210,5,0,0,0,1 -IG_Lucky_Scroll08,Bubble_Gum,210,5,0,0,0,1 -IG_Lucky_Scroll08,Token_Of_Siegfried_Box,100,05,0,0,0,1 -IG_Lucky_Scroll08,Neuralizer,2,0,0,0,0,1 -IG_Lucky_Scroll08,Mini_Propeller_,1,0,0,0,0,1 -IG_Lucky_Scroll08,Branch_Of_Dead_Tree_Box,5,0,0,0,0,1 -IG_Lucky_Scroll08,Dark_Lord_Card,1,0,0,0,0,1 -IG_Lucky_Scroll08,Dark_Illusion_Card,1,0,0,0,0,1 -IG_Lucky_Scroll08,Angelic_Chain_,2,0,0,0,0,1 -IG_Lucky_Scroll08,Satanic_Chain_,3,0,0,0,0,1 -IG_Lucky_Scroll08,Magestic_Goat_TW,2,0,0,0,0,1 -IG_Lucky_Scroll08,Bunny_Band_,3,0,0,0,0,1 -IG_Lucky_Scroll08,Drooping_Kitty_,5,0,0,0,0,1 -IG_Lucky_Scroll08,Tulip_Hairpin,65,0,0,0,0,1 -IG_Lucky_Scroll08,Insurance_Package,60,0,0,0,0,1 -IG_Lucky_Scroll08,Leaf_Of_Yggdrasil,110,05,0,0,0,1 - -IG_Br_SwordPackage,Plate_Armor_,0,1,0,0,0,1 -IG_Br_SwordPackage,Shield_,0,1,0,0,0,1 -IG_Br_SwordPackage,Boots_,0,1,0,0,0,1 -IG_Br_SwordPackage,Manteau_,0,1,0,0,0,1 -IG_Br_SwordPackage,Pupa_Card,0,1,0,0,0,1 -IG_Br_SwordPackage,Daydric_Card,0,1,0,0,0,1 -IG_Br_SwordPackage,Clip,0,1,0,0,0,1 -IG_Br_SwordPackage,Clip,0,1,0,0,0,1 -IG_Br_SwordPackage,Helm_,0,1,0,0,0,1 -IG_Br_SwordPackage,Iron_Cane,0,1,0,0,0,1 - -IG_Br_MagePackage,Silk_Robe_,0,1,0,0,0,1 -IG_Br_MagePackage,Guard_,0,1,0,0,0,1 -IG_Br_MagePackage,Shoes_,0,1,0,0,0,1 -IG_Br_MagePackage,Muffler_,0,1,0,0,0,1 -IG_Br_MagePackage,Pupa_Card,0,1,0,0,0,1 -IG_Br_MagePackage,Phen_Card,0,1,0,0,0,1 -IG_Br_MagePackage,Clip,0,1,0,0,0,1 -IG_Br_MagePackage,Clip,0,1,0,0,0,1 -IG_Br_MagePackage,Wizardry_Hat,0,1,0,0,0,1 - -IG_Br_AcolPackage,Saint_Robe_,0,1,0,0,0,1 -IG_Br_AcolPackage,Buckler_,0,1,0,0,0,1 -IG_Br_AcolPackage,Shoes_,0,1,0,0,0,1 -IG_Br_AcolPackage,Muffler_,0,1,0,0,0,1 -IG_Br_AcolPackage,Pupa_Card,0,1,0,0,0,1 -IG_Br_AcolPackage,Sohee_Card,0,1,0,0,0,1 -IG_Br_AcolPackage,Clip,0,1,0,0,0,1 -IG_Br_AcolPackage,Clip,0,1,0,0,0,1 -IG_Br_AcolPackage,Biretta_,0,1,0,0,0,1 - -IG_Br_ArcherPackage,Tights_,0,1,0,0,0,1 -IG_Br_ArcherPackage,Kakkung_,0,1,0,0,0,1 -IG_Br_ArcherPackage,Boots_,0,1,0,0,0,1 -IG_Br_ArcherPackage,Muffler_,0,1,0,0,0,1 -IG_Br_ArcherPackage,Zerom_Card,0,1,0,0,0,1 -IG_Br_ArcherPackage,Whisper_Card,0,1,0,0,0,1 -IG_Br_ArcherPackage,Clip,0,1,0,0,0,1 -IG_Br_ArcherPackage,Clip,0,1,0,0,0,1 -IG_Br_ArcherPackage,Apple_Of_Archer,0,1,0,0,0,1 - -IG_Br_MerPackage,Chain_Mail_,0,1,0,0,0,1 -IG_Br_MerPackage,Buckler_,0,1,0,0,0,1 -IG_Br_MerPackage,Boots_,0,1,0,0,0,1 -IG_Br_MerPackage,Manteau_,0,1,0,0,0,1 -IG_Br_MerPackage,Pupa_Card,0,1,0,0,0,1 -IG_Br_MerPackage,Daydric_Card,0,1,0,0,0,1 -IG_Br_MerPackage,Clip,0,1,0,0,0,1 -IG_Br_MerPackage,Clip,0,1,0,0,0,1 -IG_Br_MerPackage,Bankruptcy_Of_Heart,0,1,0,0,0,1 - -IG_Br_ThiefPackage,Thief_Clothes_,0,1,0,0,0,1 -IG_Br_ThiefPackage,Buckler_,0,1,0,0,0,1 -IG_Br_ThiefPackage,Boots_,0,1,0,0,0,1 -IG_Br_ThiefPackage,Manteau_,0,1,0,0,0,1 -IG_Br_ThiefPackage,Matyr_Card,0,1,0,0,0,1 -IG_Br_ThiefPackage,Whisper_Card,0,1,0,0,0,1 -IG_Br_ThiefPackage,Clip,0,1,0,0,0,1 -IG_Br_ThiefPackage,Clip,0,1,0,0,0,1 -IG_Br_ThiefPackage,Ghost_Bandana,0,1,0,0,0,1 - -IG_Acidbomb_10_Box,Fire_Bottle,0,10,0,0,0,1 -IG_Acidbomb_10_Box,Acid_Bottle,0,10,0,0,0,1 - -IG_Basic_Siege_Supply_Box,Siege_White_Potion,0,25,0,0,0,1 -IG_Basic_Siege_Supply_Box,Siege_Blue_Potion,0,10,0,0,0,1 - -IG_Adv_Siege_Supply_Box,Siege_White_Potion,0,50,0,0,0,1 -IG_Adv_Siege_Supply_Box,Siege_Blue_Potion,0,20,0,0,0,1 - -IG_Elite_Siege_Supply_Box,Siege_White_Potion,0,100,0,0,0,1 -IG_Elite_Siege_Supply_Box,Siege_Blue_Potion,0,50,0,0,0,1 - -IG_Sakura_Scroll,Angelic_Chain,2,1,1,0,0,1 -IG_Sakura_Scroll,Satanic_Chain,2,1,1,0,0,1 -IG_Sakura_Scroll,Snowy_Horn,2,1,1,0,0,1 -IG_Sakura_Scroll,Mini_Propeller,1,1,1,0,0,1 -IG_Sakura_Scroll,Osiris_Card,1,1,1,0,0,1 -IG_Sakura_Scroll,Phreeoni_Card,1,1,1,0,0,1 -IG_Sakura_Scroll,Green_Feeler,130,1,1,0,0,1 -IG_Sakura_Scroll,Orc_Hero_Helm,2,1,1,0,0,1 -IG_Sakura_Scroll,Battle_Manual,170,10,1,0,0,1 -IG_Sakura_Scroll,Insurance,160,10,1,0,0,1 -IG_Sakura_Scroll,Bubble_Gum,160,10,1,0,0,1 -IG_Sakura_Scroll,Kafra_Card,190,15,1,0,0,1 -IG_Sakura_Scroll,Seed_Of_Yggdrasil,150,50,1,0,0,1 -IG_Sakura_Scroll,Iron_Glove,25,1,1,0,0,1 -IG_Sakura_Scroll,Kabuki_Mask,2,1,1,0,0,1 -IG_Sakura_Scroll,Mistic_Rose,2,1,1,0,0,1 - -IG_Beholder_Ring_Box,Beholder_Ring,0,1,0,0,10080,1 - -IG_Hallow_Ring_Box,Hallow_Ring,0,1,0,0,10080,1 - -IG_Clamorous_Ring_Box,Clamorous_Ring,0,1,0,0,10080,1 - -IG_Chemical_Ring_Box,Chemical_Ring,0,1,0,0,10080,1 - -IG_Insecticide_Ring_Box,Insecticide_Ring,0,1,0,0,10080,1 - -IG_Fisher_Ring_Box,Fisher_Ring,0,1,0,0,10080,1 - -IG_Decussate_Ring_Box,Decussate_Ring,0,1,0,0,10080,1 - -IG_Bloody_Ring_Box,Bloody_Ring,0,1,0,0,10080,1 - -IG_Satanic_Ring_Box,Satanic_Ring,0,1,0,0,10080,1 - -IG_Dragoon_Ring_Box,Dragoon_Ring,0,1,0,0,10080,1 - -IG_Angel_Scroll,Angelic_Chain,5,1,1,0,0,1 -IG_Angel_Scroll,Dress_Of_Angel,100,1,1,0,0,1 -IG_Angel_Scroll,Ear_Of_Angel's_Wing,100,1,1,0,0,1 -IG_Angel_Scroll,Kiss_Of_Angel,30,1,1,0,0,1 -IG_Angel_Scroll,Angeling_Hat,50,1,1,0,0,1 -IG_Angel_Scroll,Angeling_Hairpin,130,1,1,0,0,1 -IG_Angel_Scroll,Gold_Spirit_Chain,110,1,1,0,0,1 -IG_Angel_Scroll,Angeling_Card,30,1,1,0,0,1 -IG_Angel_Scroll,Blessing_10_Scroll_Box,420,1,1,0,0,1 -IG_Angel_Scroll,Archangeling_Card,20,1,1,0,0,1 - -IG_Devil_Scroll,Satanic_Chain,4,1,1,0,0,1 -IG_Devil_Scroll,Book_Of_Devil,150,5,1,0,0,1 -IG_Devil_Scroll,Ear_Of_Devil's_Wing,100,1,1,0,0,1 -IG_Devil_Scroll,Petite_DiablOfs_Wing,125,1,1,0,0,1 -IG_Devil_Scroll,Pet_Egg_Scroll1,180,1,1,0,0,1 -IG_Devil_Scroll,Deviling_Card,1,1,1,0,0,1 -IG_Devil_Scroll,Pet_Egg_Scroll_Box1,200,1,1,0,0,1 -IG_Devil_Scroll,Horn_Of_Succubus,45,1,1,0,0,1 -IG_Devil_Scroll,Inccubus_Horn,45,1,1,0,0,1 -IG_Devil_Scroll,Diabolic_Box,150,1,1,0,0,1 - -IG_Surprise_Scroll,Battle_Manual,130,5,1,0,0,1 -IG_Surprise_Scroll,Insurance,130,5,1,0,0,1 -IG_Surprise_Scroll,Bubble_Gum,150,10,1,0,0,1 -IG_Surprise_Scroll,Kafra_Card,200,10,1,0,0,1 -IG_Surprise_Scroll,Bloody_Dead_Branch,98,1,1,0,0,1 -IG_Surprise_Scroll,Branch_Of_Dead_Tree,130,6,1,0,0,1 -IG_Surprise_Scroll,Guyak_Candy,80,10,1,0,0,1 -IG_Surprise_Scroll,Guyak_Pudding,80,10,1,0,0,1 -IG_Surprise_Scroll,Bell_Ribbon_Box,1,1,1,0,0,1 -IG_Surprise_Scroll,Neuralizer,1,1,1,0,0,1 - -IG_July7_Scroll,Basic_Siege_Supply_Box,0,1,0,0,0,1 -IG_July7_Scroll,Underripe_Yggseed,1500,10,1,0,0,1 -IG_July7_Scroll,Str_Dish_Box,1500,1,1,0,0,1 -IG_July7_Scroll,Bubble_Gum_Box,1550,1,1,0,0,1 -IG_July7_Scroll,Battle_Manual_Box,1500,1,1,0,0,1 -IG_July7_Scroll,Convex_Mirror_Box,1500,1,1,0,0,1 -IG_July7_Scroll,Eddga_Scroll,400,1,1,0,0,1 -IG_July7_Scroll,Token_Of_Siegfried_Box,1500,1,1,0,0,1 -IG_July7_Scroll,Rabbit_Ribbon,150,1,1,1,0,1 -IG_July7_Scroll,Rainbow,56,1,1,1,0,1 -IG_July7_Scroll,Upd_Maya_Puple_Card,3,1,1,1,0,1 -IG_July7_Scroll,Gold_Ingot_Poring_Hat,150,1,1,1,0,1 -IG_July7_Scroll,Berzebub_Card,1,1,1,1,0,1 -IG_July7_Scroll,Hair_Of_The_Strong,70,1,1,1,0,1 -IG_July7_Scroll,Guarantee_Weapon_9Up,20,1,1,1,0,1 -IG_July7_Scroll,Guarantee_Armor_9Up,20,1,1,1,0,1 -IG_July7_Scroll,RWC2010_Indonesia,5,1,1,1,0,1 -IG_July7_Scroll,Rocket_Helm_RWC,75,1,1,1,0,1 - -IG_Bacsojin_Scroll,Magical_Moon_Cake,150,10,1,0,0,1 -IG_Bacsojin_Scroll,Moon_Cake,150,10,1,0,0,1 -IG_Bacsojin_Scroll,Special_Moon_Cake,150,10,1,0,0,1 -IG_Bacsojin_Scroll,Tayelin_Doll_Hat,5,1,1,0,0,1 -IG_Bacsojin_Scroll,Binit_Doll_Hat,5,1,1,0,0,1 -IG_Bacsojin_Scroll,Debril_Doll_Hat,5,1,1,0,0,1 -IG_Bacsojin_Scroll,Blessing_10_Scroll_Box,180,1,1,0,0,1 -IG_Bacsojin_Scroll,Hibiscus,25,1,1,0,0,1 -IG_Bacsojin_Scroll,Charming_Ribbon,30,1,1,0,0,1 -IG_Bacsojin_Scroll,Miracle_Medicine,1,1,1,0,0,1 -IG_Bacsojin_Scroll,Slipper,14,1,1,0,0,1 -IG_Bacsojin_Scroll,Insurance,135,5,1,0,0,1 -IG_Bacsojin_Scroll,Guyak_Pudding,150,5,1,0,0,1 - -IG_Animal_Scroll,Tiger_Mask,5,1,1,0,0,1 -IG_Animal_Scroll,Guardian_Lion_Mask,5,1,1,0,0,1 -IG_Animal_Scroll,Luk_Dish10,185,5,1,0,0,1 -IG_Animal_Scroll,Panda_Cap,5,1,1,0,0,1 -IG_Animal_Scroll,Brown_Bear_Cap,5,1,1,0,0,1 -IG_Animal_Scroll,Smokie_Hat,5,1,1,0,0,1 -IG_Animal_Scroll,Str_Dish08,185,5,1,0,0,1 -IG_Animal_Scroll,Lazy_Raccoon,5,1,1,0,0,1 -IG_Animal_Scroll,Drooping_Bunny,5,1,1,0,0,1 -IG_Animal_Scroll,Int_Dish03,185,5,1,0,0,1 -IG_Animal_Scroll,Elephant_Hat_,10,1,1,0,0,1 -IG_Animal_Scroll,Sea_Otter_Cap,10,1,1,0,0,1 -IG_Animal_Scroll,Vit_Dish09,185,5,1,0,0,1 -IG_Animal_Scroll,Galapago_Cap,10,1,1,0,0,1 -IG_Animal_Scroll,Magestic_Goat_TW,5,1,1,0,0,1 -IG_Animal_Scroll,Fish_On_Head_,5,1,1,0,0,1 -IG_Animal_Scroll,Agi_Dish06,185,5,1,0,0,1 - -IG_Heart_Scroll,Orleans_Glove,5,1,1,0,0,1 -IG_Heart_Scroll,Wool_Scarf,5,1,1,0,0,1 -IG_Heart_Scroll,Red_Glasses,15,1,1,0,0,1 -IG_Heart_Scroll,Str_Dish08,200,7,1,0,0,1 -IG_Heart_Scroll,Vit_Dish10,200,5,1,0,0,1 -IG_Heart_Scroll,Spiritual_Ring,1,1,1,0,0,1 -IG_Heart_Scroll,Agi_Dish09,200,5,1,0,0,1 -IG_Heart_Scroll,Scarf_Belt,40,1,1,0,0,1 -IG_Heart_Scroll,Lesser_Elemental_Ring,5,1,1,0,0,1 -IG_Heart_Scroll,Luk_Dish07,200,8,1,0,0,1 -IG_Heart_Scroll,Lion_Mask,20,1,1,0,0,1 -IG_Heart_Scroll,Fur_Hat,20,1,1,0,0,1 -IG_Heart_Scroll,Ulle_Cap,20,1,1,0,0,1 -IG_Heart_Scroll,Valkyrie_Feather_Band,4,1,1,0,0,1 -IG_Heart_Scroll,Winter_Hat,20,1,1,0,0,1 -IG_Heart_Scroll,Ear_Mufs,45,1,1,0,0,1 - -IG_New_Year_Scroll,Str_Dish_Box,1500,1,1,0,0,0 -IG_New_Year_Scroll,Agi_Dish_Box,1500,1,1,0,0,0 -IG_New_Year_Scroll,Int_Dish_Box,1500,1,1,0,0,0 -IG_New_Year_Scroll,Dex_Dish_Box,1500,1,1,0,0,0 -IG_New_Year_Scroll,Luk_Dish_Box,1500,1,1,0,0,0 -IG_New_Year_Scroll,Vit_Dish_Box,1500,1,1,0,0,0 -IG_New_Year_Scroll,Yggdrasilberry_Box_,950,1,1,0,0,0 -IG_New_Year_Scroll,Superb_Fish_Box50,50,1,1,0,0,0 -IG_New_Year_Scroll,Berzebub_Card,1,1,2,1,0,0 -IG_New_Year_Scroll,Sealed_Kiel_Card,1,1,2,1,0,0 -IG_New_Year_Scroll,Sealed_Pharaoh_Card,3,1,2,1,0,0 -IG_New_Year_Scroll,Fallen_Angel_Wing,10,1,2,1,0,1 -IG_New_Year_Scroll,Black_Devil_Mask_,5,1,2,1,0,1 -IG_New_Year_Scroll,Yellow_Baseball_Cap,50,1,2,1,0,1 -IG_New_Year_Scroll,Pink_Pajamas_Hat,30,1,2,1,0,1 -IG_New_Year_Scroll,Flame_Sprits_Armor_,50,1,2,1,0,1 -IG_New_Year_Scroll,YellowBunny_Hairband,500,1,2,1,0,1 -IG_New_Year_Scroll,Max_Weight_Up_Box,200,1,2,1,0,0 -IG_New_Year_Scroll,Bloody_Dead_Branch,300,1,2,1,0,0 -IG_New_Year_Scroll,6024,1250,1,2,0,0,0 -IG_New_Year_Scroll,Guyak_Pudding,2000,5,2,0,0,0 -IG_New_Year_Scroll,Psychic_ArmorS,2000,10,2,0,0,0 -IG_New_Year_Scroll,Fruit_Of_Mastela_Box2,2000,1,2,0,0,0 -IG_New_Year_Scroll,Blue_Herb_Box2,1600,1,2,0,0,0 - -IG_Valentine_Pledge_Box,Valentine_Pledge,0,1,0,0,8760,1 - -IG_Ox_Tail_Scroll,Yggdrasilberry_Box_,1420,1,1,0,0,1 -IG_Ox_Tail_Scroll,Luk_Dish_Box,1420,1,1,0,0,1 -IG_Ox_Tail_Scroll,Kafra_Card_Box,1420,1,1,0,0,1 -IG_Ox_Tail_Scroll,Token_Of_Siegfried_Box,1420,1,1,0,0,1 -IG_Ox_Tail_Scroll,Insurance_Package,1420,1,1,0,0,1 -IG_Ox_Tail_Scroll,Zealotus_Scroll,300,5,1,0,0,1 -IG_Ox_Tail_Scroll,Assumptio_5_Scroll_Box,1400,1,1,0,0,1 -IG_Ox_Tail_Scroll,Max_Weight_Up_Box,500,1,1,0,0,1 -IG_Ox_Tail_Scroll,B_Dragon_Hat_Box,150,1,1,1,0,1 -IG_Ox_Tail_Scroll,Rain_Cloud,87,1,1,1,0,1 -IG_Ox_Tail_Scroll,Gold_Ingot_Poring_Hat,3,1,1,1,0,1 -IG_Ox_Tail_Scroll,Maneater_Flower_Hat,150,1,1,1,0,1 -IG_Ox_Tail_Scroll,Chilly_Breath,100,1,1,1,0,1 -IG_Ox_Tail_Scroll,Choco_Stick_In_Mouth,100,1,1,1,0,1 -IG_Ox_Tail_Scroll,Eyes_Of_Ifrit,5,1,1,1,0,1 -IG_Ox_Tail_Scroll,Majoruros_Horn,100,1,1,1,0,1 -IG_Ox_Tail_Scroll,Sealed_D_Lord_Card,5,1,1,1,0,1 - -IG_Buddah_Scroll,Mental_Potion,0,3,0,0,0,0 -IG_Buddah_Scroll,Bubble_Gum_Box,1400,1,1,0,0,0 -IG_Buddah_Scroll,Str_Dish_Box,1400,1,1,0,0,0 -IG_Buddah_Scroll,Megaphone_Box,1400,1,1,0,0,0 -IG_Buddah_Scroll,Battle_Manual_Box,1352,1,1,0,0,0,0 -IG_Buddah_Scroll,Token_Of_Siegfried_Box,1250,1,1,0,0,0 -IG_Buddah_Scroll,Shadow_Armor_S_Box10,1400,1,1,0,0,0 -IG_Buddah_Scroll,Guyak_Pudding,1400,10,1,0,0,0 -IG_Buddah_Scroll,Poker_Card_In_Mouth,30,1,1,1,0,0 -IG_Buddah_Scroll,Sleeping_Kitty_Cat,100,1,1,1,0,0 -IG_Buddah_Scroll,18600,10,1,1,1,0,0 -IG_Buddah_Scroll,Guarantee_Weapon_5Up,70,1,1,1,0,0 -IG_Buddah_Scroll,Red_Hood,100,1,1,1,0,0 -IG_Buddah_Scroll,Spirit_Of_Chung_E,20,1,1,1,0,0 -IG_Buddah_Scroll,Guarantee_Weapon_9Up,5,1,1,1,0,0 -IG_Buddah_Scroll,Sealed_Samurai_Card,3,1,1,1,0,0 -IG_Buddah_Scroll,Kirin_Wing,10,1,1,1,0,0 -IG_Buddah_Scroll,Unbreak_Weap_Box,50,1,1,1,0,0 - -IG_Evil_Incarnation,Dead_Tree_Branch_Box2,224,1,1,0,0,1 -IG_Evil_Incarnation,Guyak_Pudding,124,10,1,0,0,1 -IG_Evil_Incarnation,Int_Dish_Box,123,1,1,0,0,1 -IG_Evil_Incarnation,Luk_Dish_Box,122,1,1,0,0,1 -IG_Evil_Incarnation,Vit_Dish_Box,121,1,1,0,0,1 -IG_Evil_Incarnation,Str_Dish_Box,120,1,1,0,0,1 -IG_Evil_Incarnation,Romantic_White_Flower,47,1,1,0,0,1 -IG_Evil_Incarnation,Love_Berry,46,1,1,0,0,1 -IG_Evil_Incarnation,Minstrel_Hat,26,1,1,0,0,1 -IG_Evil_Incarnation,Puppy_Hat,25,1,1,0,0,1 -IG_Evil_Incarnation,Kafra_Band,10,1,1,0,0,1 -IG_Evil_Incarnation,Majestic_Evil_Horn,9,1,1,0,0,1 -IG_Evil_Incarnation,Secret_Medicine,2,2,1,0,0,1 -IG_Evil_Incarnation,Miracle_Medicine,1,1,1,0,0,1 - -IG_F_Clover_Box_Mouth,5596,0,1,0,0,60,1 - -IG_Mouth_Bubble_Gum_Box,Bubble_Gum_In_Mouth,0,1,0,0,60,1 - -IG_F_Clover_Box_Mouth2,5596,0,1,0,0,120,1 - -IG_F_Clover_Box_Mouth4,5596,0,1,0,0,240,1 - -IG_BGum_Box_In_Mouth2,Bubble_Gum_In_Mouth,0,1,0,0,120,1 - -IG_BGum_Box_In_Mouth4,Bubble_Gum_In_Mouth,0,1,0,0,240,1 - -IG_Tw_October_Scroll,Magical_Moon_Cake,191,10,1,0,0,1 -IG_Tw_October_Scroll,Charm_Of_Happiness,150,10,1,0,0,1 -IG_Tw_October_Scroll,Guyak_Pudding,130,10,1,0,0,1 -IG_Tw_October_Scroll,Luk_Dish_Box,106,1,1,0,0,1 -IG_Tw_October_Scroll,Vit_Dish_Box,105,1,1,0,0,1 -IG_Tw_October_Scroll,Str_Dish_Box,104,1,1,0,0,1 -IG_Tw_October_Scroll,Spark_Candy_Box10,103,1,1,0,0,1 -IG_Tw_October_Scroll,Mistic_Rose,50,1,1,0,0,1 -IG_Tw_October_Scroll,Bison_Horn,21,1,1,0,0,1 -IG_Tw_October_Scroll,Hyegun_Hat,20,1,1,0,0,1 -IG_Tw_October_Scroll,Fish_In_Mouth,9,1,1,0,0,1 -IG_Tw_October_Scroll,Black_Glasses,8,1,1,0,0,1 -IG_Tw_October_Scroll,Magic_Card_Album,2,1,1,0,0,1 -IG_Tw_October_Scroll,Miracle_Medicine,1,1,1,0,0,1 - -IG_My_Scroll1,Battle_Manual_Box,1450,1,1,0,0,1 -IG_My_Scroll1,Agi_Dish_Box,1450,1,1,0,0,1 -IG_My_Scroll1,Megaphone_Box,1450,1,1,0,0,1 -IG_My_Scroll1,Spark_Candy_Box10,1450,1,1,0,0,1 -IG_My_Scroll1,Dun_Tele_Scroll_Box10,1450,1,1,0,0,1 -IG_My_Scroll1,Job_Manual50_Box,1406,1,1,0,0,1 -IG_My_Scroll1,Eddga_Scroll,500,5,1,0,0,1 -IG_My_Scroll1,Bloody_Dead_Branch,300,1,1,0,0,1 -IG_My_Scroll1,Hellomother_Hat,50,1,1,1,0,1 -IG_My_Scroll1,King_Tiger_Doll_Hat_Box,120,1,1,1,0,1 -IG_My_Scroll1,Red_Glasses,50,1,1,1,0,1 -IG_My_Scroll1,Sealed_Bacsojin_Card,3,1,1,1,0,1 -IG_My_Scroll1,Ancient_Civil_Man,150,1,1,1,0,1 -IG_My_Scroll1,Poker_Card_In_Mouth,50,1,1,1,0,1 -IG_My_Scroll1,Upd_Maya_Puple_Card,1,1,1,1,0,1 -IG_My_Scroll1,Blacksmith_Blessing,120,1,1,1,0,1 - -IG_Tw_Nov_Scroll,Zeny_Scroll,250,10,1,0,0,1 -IG_Tw_Nov_Scroll,Guyak_Pudding,80,10,1,0,0,1 -IG_Tw_Nov_Scroll,Str_Dish_Box,80,1,1,0,0,1 -IG_Tw_Nov_Scroll,Agi_Dish_Box,80,1,1,0,0,1 -IG_Tw_Nov_Scroll,Int_Dish_Box,80,1,1,0,0,1 -IG_Tw_Nov_Scroll,Dex_Dish_Box,80,1,1,0,0,1 -IG_Tw_Nov_Scroll,Luk_Dish_Box,100,1,1,0,0,1 -IG_Tw_Nov_Scroll,Vit_Dish_Box,100,1,1,0,0,1 -IG_Tw_Nov_Scroll,Meteor_10_Scroll_Box,50,1,1,0,0,1 -IG_Tw_Nov_Scroll,Storm_10_Scroll_Box,25,1,1,0,0,1 -IG_Tw_Nov_Scroll,Vermilion_10_Scroll_Box,50,1,1,0,0,1 -IG_Tw_Nov_Scroll,Necromencer's_Hood,10,1,1,0,0,1 -IG_Tw_Nov_Scroll,Anubis_Helm,10,1,1,0,0,1 -IG_Tw_Nov_Scroll,Miracle_Medicine,5,1,1,0,0,1 - -IG_My_Scroll2,Seed_Of_Yggdrasil,125,25,1,0,0,1 -IG_My_Scroll2,Regeneration_Box10,150,1,1,0,0,1 -IG_My_Scroll2,B_Def_Potion_Box10,130,1,1,0,0,1 -IG_My_Scroll2,Poison_Bottle_30_Box,100,3,1,0,0,1 -IG_My_Scroll2,S_Mdef_Potion_Box10,100,1,1,0,0,1 -IG_My_Scroll2,Tyr's_Blessing,100,2,1,0,0,1 -IG_My_Scroll2,Insurance,20,6,1,0,0,1 -IG_My_Scroll2,Bubble_Gum,75,6,1,0,0,1 -IG_My_Scroll2,Glass_Of_Illusion_Box10,20,1,1,0,0,1 -IG_My_Scroll2,Old_Card_Album,98,2,1,0,0,1 -IG_My_Scroll2,Job_Manual50,49,2,1,0,0,1 -IG_My_Scroll2,Max_Weight_Up_Scroll,20,1,1,0,0,1 -IG_My_Scroll2,Miracle_Medicine,2,1,1,0,0,1 -IG_My_Scroll2,House_Auger,10,1,1,0,0,1 -IG_My_Scroll2,Rabbit_Bonnet,1,1,1,0,0,1 - -IG_Pr_Reset_Stone_Box,Premium_Reset_Stone,0,1,0,0,0,0 - -IG_Majestic_Devil_Scroll,Exorcize_Herb,150,10,1,0,0,1 -IG_Majestic_Devil_Scroll,Realgar_Wine,130,10,1,0,0,1 -IG_Majestic_Devil_Scroll,Mysterious_Travel_Sack2,130,1,1,0,0,1 -IG_Majestic_Devil_Scroll,Old_Bleu_Box,93,5,1,0,0,1 -IG_Majestic_Devil_Scroll,Mental_Potion,93,2,1,0,0,1 -IG_Majestic_Devil_Scroll,Teleport_Box1,93,2,1,0,0,1 -IG_Majestic_Devil_Scroll,Insurance,20,6,1,0,0,1 -IG_Majestic_Devil_Scroll,Bubble_Gum,80,6,1,0,0,1 -IG_Majestic_Devil_Scroll,Box_Of_Sunlight,80,5,1,0,0,1 -IG_Majestic_Devil_Scroll,Max_Weight_Up_Scroll,20,1,1,0,0,1 -IG_Majestic_Devil_Scroll,Guyak_Pudding,80,5,1,0,0,1 -IG_Majestic_Devil_Scroll,Magic_Card_Album,10,1,1,0,0,1 -IG_Majestic_Devil_Scroll,Orleans_Glove,20,1,1,0,0,1 -IG_Majestic_Devil_Scroll,Majestic_Evil_Horn,1,1,1,0,0,1 - -IG_Life_Ribbon_Box,5793,0,1,0,0,60,1 - -IG_Life_Ribbon_Box2,5793,0,1,0,0,120,1 - -IG_Life_Ribbon_Box3,5793,0,1,0,0,240,1 - -IG_Magic_Candy_Box10,Magic_Candy,0,10,0,0,0,1 - -IG_RWC2010_SuitcaseA,Battle_Manual,130,5,1,0,0,1 -IG_RWC2010_SuitcaseA,Insurance,130,5,1,0,0,1 -IG_RWC2010_SuitcaseA,Bubble_Gum,150,10,1,0,0,1 -IG_RWC2010_SuitcaseA,Kafra_Card,200,10,1,0,0,1 -IG_RWC2010_SuitcaseA,Bloody_Dead_Branch,98,1,1,0,0,1 -IG_RWC2010_SuitcaseA,Branch_Of_Dead_Tree,130,6,1,0,0,1 -IG_RWC2010_SuitcaseA,Guyak_Candy,80,10,1,0,0,1 -IG_RWC2010_SuitcaseA,Guyak_Pudding,80,10,1,0,0,1 -IG_RWC2010_SuitcaseA,RWC2010_Indonesia,1,1,1,0,0,1 -IG_RWC2010_SuitcaseA,Neuralizer,1,1,1,0,0,1 - -IG_RWC2010_SuitcaseB,Zeny_Scroll,201,7,1,0,0,1 -IG_RWC2010_SuitcaseB,S_Def_Potion_Box30,112,1,1,0,0,1 -IG_RWC2010_SuitcaseB,S_Mdef_Potion_Box30,111,1,1,0,0,1 -IG_RWC2010_SuitcaseB,B_Def_Potion_Box10,110,1,1,0,0,1 -IG_RWC2010_SuitcaseB,B_Mdef_Potion_Box10,109,1,1,0,0,1 -IG_RWC2010_SuitcaseB,Dun_Tele_Scroll_Box10,108,1,1,0,0,1 -IG_RWC2010_SuitcaseB,Spark_Candy_Box10,80,7,1,0,0,1 -IG_RWC2010_SuitcaseB,Ati_Atihan_Hat_,50,1,1,0,0,1 -IG_RWC2010_SuitcaseB,Drooping_Bunny,50,1,1,0,0,1 -IG_RWC2010_SuitcaseB,Kabuki_Mask,49,1,1,0,0,1 -IG_RWC2010_SuitcaseB,Deprotai_Doll_Hat,9,1,1,0,0,1 -IG_RWC2010_SuitcaseB,Garuda_Hat,8,1,1,0,0,1 -IG_RWC2010_SuitcaseB,Secret_Medicine,2,1,1,0,0,1 -IG_RWC2010_SuitcaseB,Miracle_Medicine,1,1,1,0,0,1 - -IG_Sagittarius_Scroll,Crown_Of_Deceit_Box,1,1,1,0,0,1 -IG_Sagittarius_Scroll,Sagittarius_Crown_Box,10,1,1,0,0,1 -IG_Sagittarius_Scroll,Neuralizer_Box,4,1,1,0,0,1 -IG_Sagittarius_Scroll,Pinguicula_Corsage,45,1,1,0,0,1 -IG_Sagittarius_Scroll,Turtle_Hat_Box,55,1,1,0,0,1 -IG_Sagittarius_Scroll,Mandragora_Cap,35,1,1,0,0,1 -IG_Sagittarius_Scroll,Raven_Cap_Box,80,1,1,0,0,1 -IG_Sagittarius_Scroll,Max_Weight_Up_Box,100,1,1,0,0,1 -IG_Sagittarius_Scroll,Mental_Potion,100,1,1,0,0,1 -IG_Sagittarius_Scroll,Battle_Manual_Box5,170,1,1,0,0,1 -IG_Sagittarius_Scroll,Bubble_Gum_Box5,130,1,1,0,0,1 -IG_Sagittarius_Scroll,Guyak_Pudding,160,5,1,0,0,1 -IG_Sagittarius_Scroll,Tyr's_Blessing,110,1,1,0,0,1 - -IG_Sagittarius_Scr_Box,Sagittarius_Scroll,0,1,0,0,0,1 -IG_Sagittarius_Scr_Box,Sagittarius_Scroll,0,1,0,0,0,1 -IG_Sagittarius_Scr_Box,Sagittarius_Scroll,0,1,0,0,0,1 -IG_Sagittarius_Scr_Box,Sagittarius_Scroll,0,1,0,0,0,1 -IG_Sagittarius_Scr_Box,Sagittarius_Scroll,0,1,0,0,0,1 -IG_Sagittarius_Scr_Box,Sagittarius_Scroll,0,1,0,0,0,1 -IG_Sagittarius_Scr_Box,Sagittarius_Scroll,0,1,0,0,0,1 -IG_Sagittarius_Scr_Box,Sagittarius_Scroll,0,1,0,0,0,1 -IG_Sagittarius_Scr_Box,Sagittarius_Scroll,0,1,0,0,0,1 -IG_Sagittarius_Scr_Box,Sagittarius_Scroll,0,1,0,0,0,1 - -IG_Sagittar_Diadem_Scroll,Spiked_Scarf_Box,2,1,1,0,0,1 -IG_Sagittar_Diadem_Scroll,Sagittarius_Scroll,10,1,1,0,0,1 -IG_Sagittar_Diadem_Scroll,Neuralizer_Box,3,1,1,0,0,1 -IG_Sagittar_Diadem_Scroll,Angelic_Ring,20,1,1,0,0,1 -IG_Sagittar_Diadem_Scroll,Bone_Head,25,1,1,0,0,1 -IG_Sagittar_Diadem_Scroll,Fur_Seal_Hat_Box,80,1,1,0,0,1 -IG_Sagittar_Diadem_Scroll,B_Dragon_Hat_Box,90,1,1,0,0,1 -IG_Sagittar_Diadem_Scroll,Max_Weight_Up_Box,100,1,1,0,0,1 -IG_Sagittar_Diadem_Scroll,S_Mdef_Potion_Box30,100,1,1,0,0,1 -IG_Sagittar_Diadem_Scroll,S_Def_Potion_Box30,100,1,1,0,0,1 -IG_Sagittar_Diadem_Scroll,Battle_Manual_Box5,160,1,1,0,0,1 -IG_Sagittar_Diadem_Scroll,Bubble_Gum_Box5,130,1,1,0,0,1 -IG_Sagittar_Diadem_Scroll,Guyak_Pudding,180,5,1,0,0,1 - -IG_Sagittar_Di_Scroll_Box,Sagittar_Diadem_Scroll,0,1,0,0,0,1 -IG_Sagittar_Di_Scroll_Box,Sagittar_Diadem_Scroll,0,1,0,0,0,1 -IG_Sagittar_Di_Scroll_Box,Sagittar_Diadem_Scroll,0,1,0,0,0,1 -IG_Sagittar_Di_Scroll_Box,Sagittar_Diadem_Scroll,0,1,0,0,0,1 -IG_Sagittar_Di_Scroll_Box,Sagittar_Diadem_Scroll,0,1,0,0,0,1 -IG_Sagittar_Di_Scroll_Box,Sagittar_Diadem_Scroll,0,1,0,0,0,1 -IG_Sagittar_Di_Scroll_Box,Sagittar_Diadem_Scroll,0,1,0,0,0,1 -IG_Sagittar_Di_Scroll_Box,Sagittar_Diadem_Scroll,0,1,0,0,0,1 -IG_Sagittar_Di_Scroll_Box,Sagittar_Diadem_Scroll,0,1,0,0,0,1 -IG_Sagittar_Di_Scroll_Box,Sagittar_Diadem_Scroll,0,1,0,0,0,1 - -IG_Capri_Crown_Scroll,Santa_Poring_Hat_Box,1,1,1,0,0,1 -IG_Capri_Crown_Scroll,Linen_Glove,2,1,1,0,0,1 -IG_Capri_Crown_Scroll,Rainbow_Scarf_Box,5,1,1,0,0,1 -IG_Capri_Crown_Scroll,Capricorn_Crown_Box,10,1,1,0,0,1 -IG_Capri_Crown_Scroll,Pizza_Hat_Box,35,1,1,0,0,1 -IG_Capri_Crown_Scroll,Antonio_Card,37,1,1,0,0,1 -IG_Capri_Crown_Scroll,Red_Bag,150,10,1,0,0,1 -IG_Capri_Crown_Scroll,Max_Weight_Up_Box,70,1,1,0,0,1 -IG_Capri_Crown_Scroll,Guyak_Candy,130,6,1,0,0,1 -IG_Capri_Crown_Scroll,Guyak_Pudding,150,6,1,0,0,1 -IG_Capri_Crown_Scroll,Adrenaline_Scroll_Box,70,1,1,0,0,1 -IG_Capri_Crown_Scroll,Token_Of_Siegfried_Box,100,1,1,0,0,1 -IG_Capri_Crown_Scroll,Enriched_Elunium_Box5,180,1,1,0,0,1 -IG_Capri_Crown_Scroll,Wind_Walk_10_Scroll_Box,60,1,1,0,0,1 - -IG_Capri_Crown_Scroll_Box,Capri_Crown_Scroll,0,1,0,0,0,1 -IG_Capri_Crown_Scroll_Box,Capri_Crown_Scroll,0,1,0,0,0,1 -IG_Capri_Crown_Scroll_Box,Capri_Crown_Scroll,0,1,0,0,0,1 -IG_Capri_Crown_Scroll_Box,Capri_Crown_Scroll,0,1,0,0,0,1 -IG_Capri_Crown_Scroll_Box,Capri_Crown_Scroll,0,1,0,0,0,1 -IG_Capri_Crown_Scroll_Box,Capri_Crown_Scroll,0,1,0,0,0,1 -IG_Capri_Crown_Scroll_Box,Capri_Crown_Scroll,0,1,0,0,0,1 -IG_Capri_Crown_Scroll_Box,Capri_Crown_Scroll,0,1,0,0,0,1 -IG_Capri_Crown_Scroll_Box,Capri_Crown_Scroll,0,1,0,0,0,1 -IG_Capri_Crown_Scroll_Box,Capri_Crown_Scroll,0,1,0,0,0,1 - -IG_Capricon_Di_Scroll,Robo_Eye_Box,1,1,1,0,0,1 -IG_Capricon_Di_Scroll,Improved_Tights,3,1,1,0,0,1 -IG_Capricon_Di_Scroll,Capricorn_Diadem_Box,10,1,1,0,0,1 -IG_Capricon_Di_Scroll,Sprint_Shoes,26,1,1,0,0,1 -IG_Capricon_Di_Scroll,Cursed_Star,40,1,1,0,0,1 -IG_Capricon_Di_Scroll,King_Tiger_Doll_Hat_Box,60,1,1,0,0,1 -IG_Capricon_Di_Scroll,Pirate's_Pride_Box,80,1,1,0,0,1 -IG_Capricon_Di_Scroll,Max_Weight_Up_Box,10,1,1,0,0,1 -IG_Capricon_Di_Scroll,Med_Life_Potion_Box30,50,1,1,0,0,1 -IG_Capricon_Di_Scroll,Abrasive_Box5,80,1,1,0,0,1 -IG_Capricon_Di_Scroll,Guyak_Candy,130,5,1,0,0,1 -IG_Capricon_Di_Scroll,Guyak_Pudding,150,5,1,0,0,1 -IG_Capricon_Di_Scroll,Enriched_Oridecon_Box5,170,1,1,0,0,1 -IG_Capricon_Di_Scroll,Small_Life_Potion_Box30,10,1,1,0,0,1 - -IG_Capricon_Di_Scroll_Box,Capricon_Di_Scroll,0,1,0,0,0,1 -IG_Capricon_Di_Scroll_Box,Capricon_Di_Scroll,0,1,0,0,0,1 -IG_Capricon_Di_Scroll_Box,Capricon_Di_Scroll,0,1,0,0,0,1 -IG_Capricon_Di_Scroll_Box,Capricon_Di_Scroll,0,1,0,0,0,1 -IG_Capricon_Di_Scroll_Box,Capricon_Di_Scroll,0,1,0,0,0,1 -IG_Capricon_Di_Scroll_Box,Capricon_Di_Scroll,0,1,0,0,0,1 -IG_Capricon_Di_Scroll_Box,Capricon_Di_Scroll,0,1,0,0,0,1 -IG_Capricon_Di_Scroll_Box,Capricon_Di_Scroll,0,1,0,0,0,1 -IG_Capricon_Di_Scroll_Box,Capricon_Di_Scroll,0,1,0,0,0,1 -IG_Capricon_Di_Scroll_Box,Capricon_Di_Scroll,0,1,0,0,0,1 - -IG_Aquarius_Diadem_Scroll,Mask_Of_Ifrit_Box,1,1,1,0,0,1 -IG_Aquarius_Diadem_Scroll,Aquarius_Diadem,30,1,1,0,0,1 -IG_Aquarius_Diadem_Scroll,Imp_Hat,5,1,1,0,0,1 -IG_Aquarius_Diadem_Scroll,Neuralizer_Box,5,1,1,0,0,1 -IG_Aquarius_Diadem_Scroll,Waterdrop_Brooch,17,1,1,0,0,1 -IG_Aquarius_Diadem_Scroll,Dice_Hat_Box,25,1,1,0,0,1 -IG_Aquarius_Diadem_Scroll,B_Def_Potion_Box50,60,1,1,0,0,1 -IG_Aquarius_Diadem_Scroll,B_Mdef_Potion_Box50,60,1,1,0,0,1 -IG_Aquarius_Diadem_Scroll,Max_Weight_Up_Box,100,1,1,0,0,1 -IG_Aquarius_Diadem_Scroll,PhreeoniS,2,1,1,0,0,1 -IG_Aquarius_Diadem_Scroll,Abrasive_Box5,155,1,1,0,0,1 -IG_Aquarius_Diadem_Scroll,Guyak_Pudding,210,5,1,0,0,1 -IG_Aquarius_Diadem_Scroll,BGum_Box_In_Mouth4,155,1,1,0,0,1 -IG_Aquarius_Diadem_Scroll,Box_Of_Sunlight,175,5,1,0,0,1 - -IG_Aquarius_Di_Scroll_Box,Aquarius_Diadem_Scroll,0,1,0,0,0,1 -IG_Aquarius_Di_Scroll_Box,Aquarius_Diadem_Scroll,0,1,0,0,0,1 -IG_Aquarius_Di_Scroll_Box,Aquarius_Diadem_Scroll,0,1,0,0,0,1 -IG_Aquarius_Di_Scroll_Box,Aquarius_Diadem_Scroll,0,1,0,0,0,1 -IG_Aquarius_Di_Scroll_Box,Aquarius_Diadem_Scroll,0,1,0,0,0,1 -IG_Aquarius_Di_Scroll_Box,Aquarius_Diadem_Scroll,0,1,0,0,0,1 -IG_Aquarius_Di_Scroll_Box,Aquarius_Diadem_Scroll,0,1,0,0,0,1 -IG_Aquarius_Di_Scroll_Box,Aquarius_Diadem_Scroll,0,1,0,0,0,1 -IG_Aquarius_Di_Scroll_Box,Aquarius_Diadem_Scroll,0,1,0,0,0,1 -IG_Aquarius_Di_Scroll_Box,Aquarius_Diadem_Scroll,0,1,0,0,0,1 - -IG_Lovely_Aquarius_Scroll,Bradium_Brooch,1,1,1,0,0,1 -IG_Lovely_Aquarius_Scroll,Neuralizer_Box,4,1,1,0,0,1 -IG_Lovely_Aquarius_Scroll,Sleeper_Hat,9,1,1,0,0,1 -IG_Lovely_Aquarius_Scroll,Aquarius_Crown,50,1,1,0,0,1 -IG_Lovely_Aquarius_Scroll,Tucan_Hat_Box,35,1,1,0,0,1 -IG_Lovely_Aquarius_Scroll,GhostringS,1,1,1,0,0,1 -IG_Lovely_Aquarius_Scroll,Mysterious_Dyestuff,50,1,1,0,0,1 -IG_Lovely_Aquarius_Scroll,Max_Weight_Up_Box,100,1,1,0,0,1 -IG_Lovely_Aquarius_Scroll,Spark_Candy_Box5,140,1,1,0,0,1 -IG_Lovely_Aquarius_Scroll,Glass_Of_Illusion_Box5,130,1,1,0,0,1 -IG_Lovely_Aquarius_Scroll,F_Clover_Box_Mouth4,150,1,1,0,0,1 -IG_Lovely_Aquarius_Scroll,Guyak_Pudding,170,5,1,0,0,1 -IG_Lovely_Aquarius_Scroll,Bubble_Gum_Box5,140,1,1,0,0,1 -IG_Lovely_Aquarius_Scroll,Fire_Cracker_Love_Box,20,2,1,0,0,1 - -IG_Lovely_Aquarius_Box,Lovely_Aquarius_Scroll,0,1,0,0,0,1 -IG_Lovely_Aquarius_Box,Lovely_Aquarius_Scroll,0,1,0,0,0,1 -IG_Lovely_Aquarius_Box,Lovely_Aquarius_Scroll,0,1,0,0,0,1 -IG_Lovely_Aquarius_Box,Lovely_Aquarius_Scroll,0,1,0,0,0,1 -IG_Lovely_Aquarius_Box,Lovely_Aquarius_Scroll,0,1,0,0,0,1 -IG_Lovely_Aquarius_Box,Lovely_Aquarius_Scroll,0,1,0,0,0,1 -IG_Lovely_Aquarius_Box,Lovely_Aquarius_Scroll,0,1,0,0,0,1 -IG_Lovely_Aquarius_Box,Lovely_Aquarius_Scroll,0,1,0,0,0,1 -IG_Lovely_Aquarius_Box,Lovely_Aquarius_Scroll,0,1,0,0,0,1 -IG_Lovely_Aquarius_Box,Lovely_Aquarius_Scroll,0,1,0,0,0,1 - -IG_Pisces_Diadem_Scroll,Ifrit's_Ear_Box,1,1,1,0,0,1 -IG_Pisces_Diadem_Scroll,Bradium_Earing,2,1,1,0,0,1 -IG_Pisces_Diadem_Scroll,Pisces_Diadem,10,1,1,0,0,1 -IG_Pisces_Diadem_Scroll,Gryphon_Hat,5,1,1,0,0,1 -IG_Pisces_Diadem_Scroll,Vital_Tree_Shoes,10,1,1,0,0,1 -IG_Pisces_Diadem_Scroll,Neuralizer_Box,22,1,1,0,0,1 -IG_Pisces_Diadem_Scroll,Insurance_Package,60,1,1,0,0,1 -IG_Pisces_Diadem_Scroll,Orc_HeroS,50,1,1,0,0,1 -IG_Pisces_Diadem_Scroll,Max_Weight_Up_Box,100,1,1,0,0,1 -IG_Pisces_Diadem_Scroll,Token_Of_Siegfried_Box,130,1,1,0,0,1 -IG_Pisces_Diadem_Scroll,Life_Ribbon_Box3,160,1,1,0,0,1 -IG_Pisces_Diadem_Scroll,Guyak_Pudding,180,5,1,0,0,1 -IG_Pisces_Diadem_Scroll,Battle_Manual_Box5,200,1,1,0,0,1 -IG_Pisces_Diadem_Scroll,Yggdrasilberry_Box_,70,1,1,0,0,1 - -IG_Pisces_Diadem_Box,Pisces_Diadem_Scroll,0,1,0,0,0,1 -IG_Pisces_Diadem_Box,Pisces_Diadem_Scroll,0,1,0,0,0,1 -IG_Pisces_Diadem_Box,Pisces_Diadem_Scroll,0,1,0,0,0,1 -IG_Pisces_Diadem_Box,Pisces_Diadem_Scroll,0,1,0,0,0,1 -IG_Pisces_Diadem_Box,Pisces_Diadem_Scroll,0,1,0,0,0,1 -IG_Pisces_Diadem_Box,Pisces_Diadem_Scroll,0,1,0,0,0,1 -IG_Pisces_Diadem_Box,Pisces_Diadem_Scroll,0,1,0,0,0,1 -IG_Pisces_Diadem_Box,Pisces_Diadem_Scroll,0,1,0,0,0,1 -IG_Pisces_Diadem_Box,Pisces_Diadem_Scroll,0,1,0,0,0,1 -IG_Pisces_Diadem_Box,Pisces_Diadem_Scroll,0,1,0,0,0,1 - -IG_Energetic_Pisces_Scroll,Bradium_Ring,1,1,1,0,0,1 -IG_Energetic_Pisces_Scroll,Pisces_Crown,10,1,1,0,0,1 -IG_Energetic_Pisces_Scroll,Neuralizer_Box,5,1,1,0,0,1 -IG_Energetic_Pisces_Scroll,Shark_Hat_Box,15,1,1,0,0,1 -IG_Energetic_Pisces_Scroll,Kafra_Ring,20,1,1,0,0,1 -IG_Energetic_Pisces_Scroll,Pirate_Dagger_J,25,1,1,0,0,1 -IG_Energetic_Pisces_Scroll,Orc_LoadS,34,1,1,0,0,1 -IG_Energetic_Pisces_Scroll,Max_Weight_Up_Box,100,1,1,0,0,1 -IG_Energetic_Pisces_Scroll,Spark_Candy_Box5,100,1,1,0,0,1 -IG_Energetic_Pisces_Scroll,Underripe_Yggseed,120,6,1,0,0,1 -IG_Energetic_Pisces_Scroll,Enriched_Elunium_Box5,130,1,1,0,0,1 -IG_Energetic_Pisces_Scroll,Guyak_Pudding,190,5,1,0,0,1 -IG_Energetic_Pisces_Scroll,Enriched_Oridecon_Box5,150,1,1,0,0,1 -IG_Energetic_Pisces_Scroll,Ramen_Hat_Box,100,1,1,0,0,1 - -IG_Energetic_Pisces_Box,Energetic_Pisces_Scroll,0,1,0,0,0,1 -IG_Energetic_Pisces_Box,Energetic_Pisces_Scroll,0,1,0,0,0,1 -IG_Energetic_Pisces_Box,Energetic_Pisces_Scroll,0,1,0,0,0,1 -IG_Energetic_Pisces_Box,Energetic_Pisces_Scroll,0,1,0,0,0,1 -IG_Energetic_Pisces_Box,Energetic_Pisces_Scroll,0,1,0,0,0,1 -IG_Energetic_Pisces_Box,Energetic_Pisces_Scroll,0,1,0,0,0,1 -IG_Energetic_Pisces_Box,Energetic_Pisces_Scroll,0,1,0,0,0,1 -IG_Energetic_Pisces_Box,Energetic_Pisces_Scroll,0,1,0,0,0,1 -IG_Energetic_Pisces_Box,Energetic_Pisces_Scroll,0,1,0,0,0,1 -IG_Energetic_Pisces_Box,Energetic_Pisces_Scroll,0,1,0,0,0,1 - -IG_Aries_Scroll,Freyja_Boots,5,1,1,1,0,0 -IG_Aries_Scroll,Magic_Card_Album,45,1,1,1,0,0 -IG_Aries_Scroll,Aries_Crown,50,1,1,1,0,0 -IG_Aries_Scroll,Aries_Diadem,50,1,1,1,0,0 -IG_Aries_Scroll,Neuralizer_Box,50,1,1,0,0,0 -IG_Aries_Scroll,Scuba_Mask,150,1,1,0,0,0 -IG_Aries_Scroll,Acidus_Card,200,1,1,0,0,0 -IG_Aries_Scroll,Pirate_Bandana_,350,1,1,0,0,0 -IG_Aries_Scroll,Max_Weight_Up_Box,500,1,1,0,0,0 -IG_Aries_Scroll,Enriched_Elunium_Box5,1100,1,1,0,0,0 -IG_Aries_Scroll,Enriched_Oridecon_Box5,1600,1,1,0,0,0 -IG_Aries_Scroll,S_Mdef_Potion_Box30,1800,1,1,0,0,0 -IG_Aries_Scroll,S_Def_Potion_Box30,1800,1,1,0,0,0 -IG_Aries_Scroll,Zeny_Scroll,2300,10,1,0,0,0 - -IG_Aries_Scroll_Box,Aries_Scroll,0,1,0,0,0,1 -IG_Aries_Scroll_Box,Aries_Scroll,0,1,0,0,0,1 -IG_Aries_Scroll_Box,Aries_Scroll,0,1,0,0,0,1 -IG_Aries_Scroll_Box,Aries_Scroll,0,1,0,0,0,1 -IG_Aries_Scroll_Box,Aries_Scroll,0,1,0,0,0,1 -IG_Aries_Scroll_Box,Aries_Scroll,0,1,0,0,0,1 -IG_Aries_Scroll_Box,Aries_Scroll,0,1,0,0,0,1 -IG_Aries_Scroll_Box,Aries_Scroll,0,1,0,0,0,1 -IG_Aries_Scroll_Box,Aries_Scroll,0,1,0,0,0,1 -IG_Aries_Scroll_Box,Aries_Scroll,0,1,0,0,0,1 - -IG_Boarding_Halter_Box,Boarding_Halter,0,1,0,0,10080,1 - -IG_Taurus_Diadem_Scroll,Freyja_Crown,1,1,1,1,0,0 -IG_Taurus_Diadem_Scroll,Owl_Baron_Card,10,1,1,1,0,0 -IG_Taurus_Diadem_Scroll,Samurai_Mask,85,1,1,1,0,0 -IG_Taurus_Diadem_Scroll,Taurus_Diadem,100,1,1,1,0,0 -IG_Taurus_Diadem_Scroll,Mischievous_Fairy,100,1,1,0,0,0 -IG_Taurus_Diadem_Scroll,Ph.D_Hat_,200,1,1,0,0,0 -IG_Taurus_Diadem_Scroll,Max_Weight_Up_Box,500,1,1,0,0,0 -IG_Taurus_Diadem_Scroll,Job_Manual50_Box,600,1,1,0,0,0 -IG_Taurus_Diadem_Scroll,Meteor_10_Scroll_Box,800,1,1,0,0,0 -IG_Taurus_Diadem_Scroll,Mysterious_Travel_Sack1,1100,1,1,0,0,0 -IG_Taurus_Diadem_Scroll,Battle_Manual_Box5,1300,1,1,0,0,0 -IG_Taurus_Diadem_Scroll,Dun_Tele_Scroll_Box10,1500,1,1,0,0,0 -IG_Taurus_Diadem_Scroll,Tyr's_Blessing,1700,1,1,0,0,0 -IG_Taurus_Diadem_Scroll,Zeny_Scroll,2004,10,1,0,0,0 - -IG_Taurus_Di_Scroll_Box,Taurus_Diadem_Scroll,0,1,0,0,0,1 -IG_Taurus_Di_Scroll_Box,Taurus_Diadem_Scroll,0,1,0,0,0,1 -IG_Taurus_Di_Scroll_Box,Taurus_Diadem_Scroll,0,1,0,0,0,1 -IG_Taurus_Di_Scroll_Box,Taurus_Diadem_Scroll,0,1,0,0,0,1 -IG_Taurus_Di_Scroll_Box,Taurus_Diadem_Scroll,0,1,0,0,0,1 -IG_Taurus_Di_Scroll_Box,Taurus_Diadem_Scroll,0,1,0,0,0,1 -IG_Taurus_Di_Scroll_Box,Taurus_Diadem_Scroll,0,1,0,0,0,1 -IG_Taurus_Di_Scroll_Box,Taurus_Diadem_Scroll,0,1,0,0,0,1 -IG_Taurus_Di_Scroll_Box,Taurus_Diadem_Scroll,0,1,0,0,0,1 -IG_Taurus_Di_Scroll_Box,Taurus_Diadem_Scroll,0,1,0,0,0,1 - -IG_Umbala_Spirit_Box2,Umbala_Spirit,0,1,0,0,10080,1 - -IG_F_Umbala_Spirit_Box2,Umbala_Spirit,0,1,0,0,10080,1 - -IG_Taurus_Crown_Scroll,Freyja_Cape,1,1,1,1,0,0 -IG_Taurus_Crown_Scroll,Centipede_Larva_Card,50,1,1,1,0,0 -IG_Taurus_Crown_Scroll,Umbala_Spirit_Box2,100,1,1,1,0,0 -IG_Taurus_Crown_Scroll,Taurus_Crown,100,1,1,1,0,0 -IG_Taurus_Crown_Scroll,Round_Eyes,200,1,1,0,0,0 -IG_Taurus_Crown_Scroll,Sunflower_,245,1,1,0,0,0 -IG_Taurus_Crown_Scroll,Poporing_Cap,400,1,1,0,0,0 -IG_Taurus_Crown_Scroll,Max_Weight_Up_Box,500,1,1,0,0,0 -IG_Taurus_Crown_Scroll,Mental_Potion,1000,1,1,0,0,0 -IG_Taurus_Crown_Scroll,Vermilion_10_Scroll_Box,1000,1,1,0,0,0 -IG_Taurus_Crown_Scroll,Mysterious_Travel_Sack2,1100,1,1,0,0,0 -IG_Taurus_Crown_Scroll,Bubble_Gum_Box5,1500,1,1,0,0,0 -IG_Taurus_Crown_Scroll,Small_Life_Potion_Box30,1800,1,1,0,0,0 -IG_Taurus_Crown_Scroll,Zeny_Scroll,2004,10,1,0,0,0 - -IG_Taurus_Crown_Scroll_Box,Taurus_Crown_Scroll,0,1,0,0,0,1 -IG_Taurus_Crown_Scroll_Box,Taurus_Crown_Scroll,0,1,0,0,0,1 -IG_Taurus_Crown_Scroll_Box,Taurus_Crown_Scroll,0,1,0,0,0,1 -IG_Taurus_Crown_Scroll_Box,Taurus_Crown_Scroll,0,1,0,0,0,1 -IG_Taurus_Crown_Scroll_Box,Taurus_Crown_Scroll,0,1,0,0,0,1 -IG_Taurus_Crown_Scroll_Box,Taurus_Crown_Scroll,0,1,0,0,0,1 -IG_Taurus_Crown_Scroll_Box,Taurus_Crown_Scroll,0,1,0,0,0,1 -IG_Taurus_Crown_Scroll_Box,Taurus_Crown_Scroll,0,1,0,0,0,1 -IG_Taurus_Crown_Scroll_Box,Taurus_Crown_Scroll,0,1,0,0,0,1 -IG_Taurus_Crown_Scroll_Box,Taurus_Crown_Scroll,0,1,0,0,0,1 - -IG_Gemi_Diadem_Scroll,Salamander_Card,1,1,1,0,0,0 -IG_Gemi_Diadem_Scroll,Freyja_Overcoat,1,1,1,0,0,0 -IG_Gemi_Diadem_Scroll,Boy's_Cap_,44,1,1,0,0,0 -IG_Gemi_Diadem_Scroll,Gemini_Diadem,100,1,1,0,0,0 -IG_Gemi_Diadem_Scroll,Angel_Spirit,100,1,1,0,0,0 -IG_Gemi_Diadem_Scroll,Gang_Scarf,100,1,1,0,0,0 -IG_Gemi_Diadem_Scroll,Hard_Core_Set_Box,350,1,1,0,0,0 -IG_Gemi_Diadem_Scroll,Max_Weight_Up_Box,500,1,1,0,0,0 -IG_Gemi_Diadem_Scroll,Abrasive_Box10,800,1,1,0,0,0 -IG_Gemi_Diadem_Scroll,Zeny_Scroll,1100,15,1,0,0,0 -IG_Gemi_Diadem_Scroll,Meteor_10_Scroll_Box,1500,1,1,0,0,0 -IG_Gemi_Diadem_Scroll,Mysterious_Travel_Sack3,1600,1,1,0,0,0 -IG_Gemi_Diadem_Scroll,Wind_Walk_10_Scroll_Box,1800,1,1,0,0,0 -IG_Gemi_Diadem_Scroll,Wrapped_Mask,2004,1,1,0,0,0 - -IG_Gemi_Diadem_Scroll_Box,Gemi_Diadem_Scroll,0,1,0,0,0,1 -IG_Gemi_Diadem_Scroll_Box,Gemi_Diadem_Scroll,0,1,0,0,0,1 -IG_Gemi_Diadem_Scroll_Box,Gemi_Diadem_Scroll,0,1,0,0,0,1 -IG_Gemi_Diadem_Scroll_Box,Gemi_Diadem_Scroll,0,1,0,0,0,1 -IG_Gemi_Diadem_Scroll_Box,Gemi_Diadem_Scroll,0,1,0,0,0,1 -IG_Gemi_Diadem_Scroll_Box,Gemi_Diadem_Scroll,0,1,0,0,0,1 -IG_Gemi_Diadem_Scroll_Box,Gemi_Diadem_Scroll,0,1,0,0,0,1 -IG_Gemi_Diadem_Scroll_Box,Gemi_Diadem_Scroll,0,1,0,0,0,1 -IG_Gemi_Diadem_Scroll_Box,Gemi_Diadem_Scroll,0,1,0,0,0,1 -IG_Gemi_Diadem_Scroll_Box,Gemi_Diadem_Scroll,0,1,0,0,0,1 - -IG_Super_Pet_Egg1_2,Tiara,70,1,1,0,0,0 -IG_Super_Pet_Egg1_2,Crown,70,1,1,0,0,0 -IG_Super_Pet_Egg1_2,Loard_Circlet,30,1,1,0,0,0 -IG_Super_Pet_Egg1_2,Ear_Of_Angel's_Wing,70,1,1,0,0,0 -IG_Super_Pet_Egg1_2,Ear_Of_Devil's_Wing,60,1,1,0,0,0 -IG_Super_Pet_Egg1_2,Flying_Angel,250,1,1,0,0,0 -IG_Super_Pet_Egg1_2,Dark_Lord_Card,1,1,1,0,0,0 -IG_Super_Pet_Egg1_2,Angeling_Card,2,1,1,0,0,0 -IG_Super_Pet_Egg1_2,Ghostring_Card,2,1,1,0,0,0 -IG_Super_Pet_Egg1_2,Nurse_Cap,890,1,1,0,0,0 -IG_Super_Pet_Egg1_2,Centimental_Flower,450,1,1,0,0,0 -IG_Super_Pet_Egg1_2,Tulip_Hairpin,700,1,1,0,0,0 -IG_Super_Pet_Egg1_2,Old_Card_Album,950,2,1,0,0,0 -IG_Super_Pet_Egg1_2,Old_Violet_Box,1500,5,1,0,0,0 -IG_Super_Pet_Egg1_2,Yggdrasilberry,2000,15,1,0,0,0 -IG_Super_Pet_Egg1_2,Seed_Of_Yggdrasil,2000,30,1,0,0,0 -IG_Super_Pet_Egg1_2,Zeny_Scroll,955,10,1,0,0,0 - -IG_Super_Pet_Egg4_2,Angelic_Chain,30,1,1,0,0,0 -IG_Super_Pet_Egg4_2,Magestic_Goat,35,1,1,0,0,0 -IG_Super_Pet_Egg4_2,Sharp_Gear,20,1,1,0,0,0 -IG_Super_Pet_Egg4_2,Helm_Of_Angel,20,1,1,0,0,0 -IG_Super_Pet_Egg4_2,Orc_Hero_Helm,40,1,1,0,0,0 -IG_Super_Pet_Egg4_2,Doppelganger_Card,1,1,1,0,0,0 -IG_Super_Pet_Egg4_2,Osiris_Card,1,1,1,0,0,0 -IG_Super_Pet_Egg4_2,Phreeoni_Card,1,1,1,0,0,0 -IG_Super_Pet_Egg4_2,Green_Feeler,720,1,1,0,0,0 -IG_Super_Pet_Egg4_2,Big_Sis'_Ribbon_,500,1,1,0,0,0 -IG_Super_Pet_Egg4_2,Mistic_Rose,370,1,1,0,0,0 -IG_Super_Pet_Egg4_2,Well_Baked_Toast,350,1,1,0,0,0 -IG_Super_Pet_Egg4_2,Old_Card_Album,912,2,1,0,0,0 -IG_Super_Pet_Egg4_2,Old_Violet_Box,1300,1,1,0,0,0 -IG_Super_Pet_Egg4_2,Yggdrasilberry,1700,15,1,0,0,0 -IG_Super_Pet_Egg4_2,Seed_Of_Yggdrasil,1700,30,1,0,0,0 -IG_Super_Pet_Egg4_2,Zeny_Scroll,2300,10,1,0,0,0 - -IG_Fire_Brand_Box,Fire_Brand_C,0,1,0,0,10080,1 - -IG_BR_Independence_Scroll,Brazilian_Emblem,5,1,1,0,0,1 -IG_BR_Independence_Scroll,Acaraje,50,10,1,0,0,1 -IG_BR_Independence_Scroll,Br_Twin_Ribbon,20,1,1,0,0,1 -IG_BR_Independence_Scroll,HE_Battle_Manual,100,10,1,0,0,1 -IG_BR_Independence_Scroll,Navel_Ring,30,1,1,0,0,1 -IG_BR_Independence_Scroll,Br_Beret,20,1,1,0,0,1 -IG_BR_Independence_Scroll,Ragged_Zombie_Card,1,1,1,0,0,1 -IG_BR_Independence_Scroll,Job_Manual50,100,10,1,0,0,1 -IG_BR_Independence_Scroll,Token_Of_Siegfried_Box,100,1,1,0,0,1 -IG_BR_Independence_Scroll,Big_Bun_Box,100,1,1,0,0,1 -IG_BR_Independence_Scroll,Gold_Pill_1,94,10,1,0,0,1 -IG_BR_Independence_Scroll,Int_Dish10_,50,10,1,0,0,1 -IG_BR_Independence_Scroll,Durian,100,10,1,0,0,1 -IG_BR_Independence_Scroll,B_Mdef_Potion,100,10,1,0,0,1 -IG_BR_Independence_Scroll,All_In_One_Ring_Box,100,1,1,0,0,1 -IG_BR_Independence_Scroll,Carmen_Miranda's_Hat,30,1,1,0,0,1 - -IG_All_In_One_Ring_Box,All_In_One_Ring,0,1,0,0,10080,1 - -IG_Gemi_Crown_Scroll,Dark_Snake_Lord_Card,1,1,1,0,0,0 -IG_Gemi_Crown_Scroll,Elven_Ears_,2,1,1,0,0,0 -IG_Gemi_Crown_Scroll,Antique_Pipe,47,1,1,0,0,0 -IG_Gemi_Crown_Scroll,Neuralizer_Box,50,1,1,0,0,0 -IG_Gemi_Crown_Scroll,Gemini_Crown,100,1,1,0,0,0 -IG_Gemi_Crown_Scroll,Hawkeyes,100,1,1,0,0,0 -IG_Gemi_Crown_Scroll,Bulb_Hairband,200,1,1,0,0,0 -IG_Gemi_Crown_Scroll,Max_Weight_Up_Box,500,1,1,0,0,0 -IG_Gemi_Crown_Scroll,Glass_Of_Illusion_Box5,800,1,1,0,0,0 -IG_Gemi_Crown_Scroll,Mysterious_Travel_Sack4,1300,1,1,0,0,0 -IG_Gemi_Crown_Scroll,Zeny_Scroll,1500,15,1,0,0,0 -IG_Gemi_Crown_Scroll,Adrenaline_Scroll_Box,1600,1,1,0,0,0 -IG_Gemi_Crown_Scroll,Lex_Aeterna_Scroll_Box,1800,1,1,0,0,0 -IG_Gemi_Crown_Scroll,MVP_Hunt_Box,2000,1,1,0,0,0 - -IG_Gemi_Crown_Scroll_Box,Gemi_Crown_Scroll,0,1,0,0,0,1 -IG_Gemi_Crown_Scroll_Box,Gemi_Crown_Scroll,0,1,0,0,0,1 -IG_Gemi_Crown_Scroll_Box,Gemi_Crown_Scroll,0,1,0,0,0,1 -IG_Gemi_Crown_Scroll_Box,Gemi_Crown_Scroll,0,1,0,0,0,1 -IG_Gemi_Crown_Scroll_Box,Gemi_Crown_Scroll,0,1,0,0,0,1 -IG_Gemi_Crown_Scroll_Box,Gemi_Crown_Scroll,0,1,0,0,0,1 -IG_Gemi_Crown_Scroll_Box,Gemi_Crown_Scroll,0,1,0,0,0,1 -IG_Gemi_Crown_Scroll_Box,Gemi_Crown_Scroll,0,1,0,0,0,1 -IG_Gemi_Crown_Scroll_Box,Gemi_Crown_Scroll,0,1,0,0,0,1 -IG_Gemi_Crown_Scroll_Box,Gemi_Crown_Scroll,0,1,0,0,0,1 - -IG_RWC_Special_Scroll,Party_Recruiter_Hat,4,1,1,0,0,0 -IG_RWC_Special_Scroll,Convex_Mirror,150,1,1,0,0,0 -IG_RWC_Special_Scroll,Megaphone_Box,200,1,1,0,0,0 -IG_RWC_Special_Scroll,Enriched_Elunium_Box,50,1,1,0,0,0 -IG_RWC_Special_Scroll,Enriched_Oridecon_Box,50,1,1,0,0,0 -IG_RWC_Special_Scroll,Daydric_Card,2,1,1,0,0,0 -IG_RWC_Special_Scroll,Pharaoh_Card,2,1,1,0,0,0 -IG_RWC_Special_Scroll,Marc_Card,2,1,1,0,0,0 -IG_RWC_Special_Scroll,Royal_Jelly_Box,200,1,1,0,0,0 -IG_RWC_Special_Scroll,Seed_Of_Yggdrasil,190,50,1,0,0,0 -IG_RWC_Special_Scroll,Str_Dish_Box,150,1,1,0,0,0 - -IG_RWC_Limited_Scroll,Fruit_Of_Mastela,200,30,1,0,0,0 -IG_RWC_Limited_Scroll,White_Slim_Potion,150,10,1,0,0,0 -IG_RWC_Limited_Scroll,Yggdrasilberry_Box,150,1,1,0,0,0 -IG_RWC_Limited_Scroll,Guildsman_Recruiter,4,1,1,0,0,0 -IG_RWC_Limited_Scroll,Megaphone_Box,150,1,1,0,0,0 -IG_RWC_Limited_Scroll,Token_Of_Siegfried_Box,100,1,1,0,0,0 -IG_RWC_Limited_Scroll,Royal_Jelly_Box,200,1,1,0,0,0 -IG_RWC_Limited_Scroll,Insurance_Package,44,1,1,0,0,0 -IG_RWC_Limited_Scroll,Ygnizem_Card,1,1,1,0,0,0 -IG_RWC_Limited_Scroll,B_Ygnizem_Card,1,50,1,0,0,0 - -IG_Asgard_Scroll,Asgard_Blessing,5,1,1,0,0,0 -IG_Asgard_Scroll,Odin's_Blessing,5,1,1,0,0,0 -IG_Asgard_Scroll,Valkyrja's_Shield,1,1,1,0,0,0 -IG_Asgard_Scroll,Yggdrasilberry,150,10,1,0,0,0 -IG_Asgard_Scroll,Daydric_Card,5,1,1,0,0,0 -IG_Asgard_Scroll,Fricca_Circlet,1,1,1,0,0,0 -IG_Asgard_Scroll,Secret_Medicine,2,1,1,0,0,0 -IG_Asgard_Scroll,Tyr's_Blessing,100,30,1,0,0,0 -IG_Asgard_Scroll,HE_Battle_Manual,100,10,1,0,0,0 -IG_Asgard_Scroll,Valkyrie_Feather_Band,20,1,1,0,0,0 -IG_Asgard_Scroll,Isilla_Card,1,1,1,0,0,0 -IG_Asgard_Scroll,Spark_Candy,100,10,1,0,0,0 -IG_Asgard_Scroll,Darkness_Helm,20,1,1,0,0,0 -IG_Asgard_Scroll,Guyak_Pudding,120,10,1,0,0,0 -IG_Asgard_Scroll,Token_Of_Siegfried_Box,120,1,1,0,0,0 -IG_Asgard_Scroll,Regeneration_Box10,100,1,1,0,0,0 -IG_Asgard_Scroll,Lucky_Cookie02,150,30,1,0,0,0 - -IG_Ms_Cancer_Scroll,Garm_Card,2,1,1,1,0,0 -IG_Ms_Cancer_Scroll,Flame_Sprits_Armor_,4,1,1,1,0,0 -IG_Ms_Cancer_Scroll,Beach_Towel,10,1,1,1,0,0 -IG_Ms_Cancer_Scroll,Cancer_Diadem,17,1,1,1,0,0 -IG_Ms_Cancer_Scroll,Cancer_Crown,17,1,1,1,0,0 -IG_Ms_Cancer_Scroll,Flying_Angel,50,1,1,1,0,0 -IG_Ms_Cancer_Scroll,Bloody_Dead_Branch,100,1,1,1,0,0 -IG_Ms_Cancer_Scroll,Max_Weight_Up_Box,500,1,1,1,0,0 -IG_Ms_Cancer_Scroll,Boarding_Halter_Box,1000,1,1,0,0,0 -IG_Ms_Cancer_Scroll,BGum_Box_In_Mouth4,1500,1,1,0,0,0 -IG_Ms_Cancer_Scroll,HE_Battle_Manual,1200,3,1,0,0,0 -IG_Ms_Cancer_Scroll,Guyak_Pudding,1400,3,1,0,0,0 -IG_Ms_Cancer_Scroll,Kafra_Card,1700,5,1,0,0,0 -IG_Ms_Cancer_Scroll,Megaphone_Box5,2000,1,1,0,0,0 -IG_Ms_Cancer_Scroll,Storm_10_Scroll_Box,500,1,1,0,0,0 - -IG_RWC_Super_Scroll,Tao_Gunka_Card,1,1,1,1,0,0 -IG_RWC_Super_Scroll,Mistress_Card,1,1,1,1,0,0 -IG_RWC_Super_Scroll,Berzebub_Card,1,1,1,1,0,0 -IG_RWC_Super_Scroll,Black_Devil_Mask_,2,1,1,1,0,0 -IG_RWC_Super_Scroll,Guarantee_Armor_9Up,15,1,1,1,0,0 -IG_RWC_Super_Scroll,RWC2010_Indonesia,50,1,1,1,0,0 -IG_RWC_Super_Scroll,Yggdrasil_Crown,70,1,1,1,0,0 -IG_RWC_Super_Scroll,Immuned_Shield,80,1,1,1,0,0 -IG_RWC_Super_Scroll,RWC_2012_Ring,250,1,1,1,0,0 -IG_RWC_Super_Scroll,RWC_2012_Pendant,250,1,1,1,0,0 -IG_RWC_Super_Scroll,Hair_Of_The_Strong,100,1,1,1,0,0 -IG_RWC_Super_Scroll,18600,100,1,1,1,0,0 -IG_RWC_Super_Scroll,Red_Bread_Hat,100,1,1,1,0,0 -IG_RWC_Super_Scroll,Garuda_Hat,100,1,1,1,0,0 -IG_RWC_Super_Scroll,Upg_Clip_Box,300,1,1,0,0,0 -IG_RWC_Super_Scroll,Upg_Formal_Dress_Box,1000,1,1,0,0,0 -IG_RWC_Super_Scroll,Blacksmith_Blessing,580,4,1,0,0,0 -IG_RWC_Super_Scroll,Blacksmith_Blessing,1500,2,1,0,0,0 -IG_RWC_Super_Scroll,Unbreak_Weap_Box,2500,1,1,0,0,0 -IG_RWC_Super_Scroll,Unbreak_Def_Box,3000,1,1,0,0,0 - -IG_Leo_Scroll,Fallen_Bishop_Card,1,1,1,1,0,0 -IG_Leo_Scroll,Wind_Sprits_Armor,3,1,1,1,0,0 -IG_Leo_Scroll,Skin_Of_Ventus,5,1,1,1,0,0 -IG_Leo_Scroll,Satanic_Chain_P,17,1,1,1,0,0 -IG_Leo_Scroll,Leo_Crown,17,1,1,1,0,0 -IG_Leo_Scroll,Leo_Diadem,17,1,1,1,0,0 -IG_Leo_Scroll,Angeling_Wanna_Fly,40,1,1,1,0,0 -IG_Leo_Scroll,Max_Weight_Up_Box,300,1,1,1,0,0 -IG_Leo_Scroll,F_Clover_Box_Mouth4,500,1,1,1,0,0 -IG_Leo_Scroll,Guyak_Pudding,700,3,1,0,0,0 -IG_Leo_Scroll,Siroma_Icetea_To_Throw,900,1,1,0,0,0 -IG_Leo_Scroll,Siegfried_Box5,1000,1,1,0,0,0 -IG_Leo_Scroll,HE_Battle_Manual,1700,2,1,0,0,0 -IG_Leo_Scroll,Regeneration_Box5,1600,1,1,0,0,0 -IG_Leo_Scroll,Zeny_Scroll,1400,5,1,0,0,0 -IG_Leo_Scroll,Yggdrasilberry_Box_,1300,1,1,0,0,0 -IG_Leo_Scroll,Vermilion_10_Scroll_Box,500,1,1,0,0,0 - -IG_Ms_Virgo_Scroll,Water_Sprits_Armor_,3,1,1,1,0,0 -IG_Ms_Virgo_Scroll,Piece_Of_Angent_Skin,6,1,1,1,0,0 -IG_Ms_Virgo_Scroll,L_Magestic_Goat,12,1,1,1,0,0 -IG_Ms_Virgo_Scroll,Virgo_Crown,17,1,1,1,0,0 -IG_Ms_Virgo_Scroll,Virgo_Diadem,17,1,1,1,0,0 -IG_Ms_Virgo_Scroll,Magic_Card_Album,100,1,1,1,0,0 -IG_Ms_Virgo_Scroll,Spark_Candy_Box5,645,1,1,1,0,0 -IG_Ms_Virgo_Scroll,Max_Weight_Up_Box,300,1,1,1,0,0 -IG_Ms_Virgo_Scroll,Life_Ribbon_Box3,800,1,1,0,0,0 -IG_Ms_Virgo_Scroll,Tyr's_Blessing,1000,1,1,0,0,0 -IG_Ms_Virgo_Scroll,Int_Dish_Box,1700,1,1,0,0,0 -IG_Ms_Virgo_Scroll,6024,1600,1,1,0,0,0 -IG_Ms_Virgo_Scroll,13285,1800,1,1,0,0,0 -IG_Ms_Virgo_Scroll,HE_Battle_Manual,1500,3,1,0,0,0 -IG_Ms_Virgo_Scroll,Meteor_10_Scroll_Box,500,1,1,0,0,0 - -IG_Lucky_Egg_C6,Pierre_Treasurebox,500,1,1,0,0,0 -IG_Lucky_Egg_C6,Yggdrasilberry,500,5,1,0,0,0 -IG_Lucky_Egg_C6,Underripe_Yggseed,500,10,1,0,0,0 -IG_Lucky_Egg_C6,Psychic_ArmorS,500,2,1,0,0,0 -IG_Lucky_Egg_C6,J_Aspersio_5_Scroll,700,5,1,0,0,0 -IG_Lucky_Egg_C6,Comp_Insurance,700,3,1,0,0,0 -IG_Lucky_Egg_C6,Comp_Bubble_Gum,700,2,1,0,0,0 -IG_Lucky_Egg_C6,Comp_Battle_Manual,500,2,1,0,0,0 -IG_Lucky_Egg_C6,Blue_Herb_Box2,1000,1,1,0,0,0 -IG_Lucky_Egg_C6,Poison_Bottle_Box2,1200,1,1,0,0,0 -IG_Lucky_Egg_C6,White_Slim_Pot_Box2,1200,1,1,0,0,0 -IG_Lucky_Egg_C6,Magic_Card_Album,50,1,1,1,0,0 -IG_Lucky_Egg_C6,Old_Card_Album,350,1,1,0,0,0 -IG_Lucky_Egg_C6,Guarantee_Armor_7Up,300,1,1,1,0,0 -IG_Lucky_Egg_C6,Guarantee_Weapon_7Up,300,1,1,1,0,0 -IG_Lucky_Egg_C6,Passion_FB_Hat,300,1,1,1,0,0 -IG_Lucky_Egg_C6,Cool_FB_Hat,300,1,1,1,0,0 -IG_Lucky_Egg_C6,Victory_FB_Hat,300,1,1,1,0,0 -IG_Lucky_Egg_C6,Glory_FB_Hat,100,1,1,1,0,0 - -IG_Libra_Scroll,B_Katrinn_Card,1,1,1,1,0,0 -IG_Libra_Scroll,Earth_Sprits_Armor_,3,1,1,1,0,0 -IG_Libra_Scroll,Bravery_Bag,12,1,1,1,0,0 -IG_Libra_Scroll,Libra_Crown,17,1,1,1,0,0 -IG_Libra_Scroll,Libra_Diadem,17,1,1,1,0,0 -IG_Libra_Scroll,Angeling_Hairpin,30,1,1,1,0,0 -IG_Libra_Scroll,Magic_Card_Album,70,1,1,1,0,0 -IG_Libra_Scroll,Max_Weight_Up_Box,400,1,1,1,0,0 -IG_Libra_Scroll,Orc_LoadS_Box,50,1,1,1,0,0 -IG_Libra_Scroll,Boarding_Halter_Box,600,1,1,0,0,0 -IG_Libra_Scroll,HE_Battle_Manual,1000,5,1,0,0,0 -IG_Libra_Scroll,Guyak_Pudding,1100,4,1,0,0,0 -IG_Libra_Scroll,Light_White_Pot_Box,1200,1,1,0,0,0 -IG_Libra_Scroll,6024,1300,1,1,0,0,0 -IG_Libra_Scroll,12433,1700,1,1,0,0,0 -IG_Libra_Scroll,Branch_Of_Dead_Tree_Box,2500,1,1,0,0,0 - -IG_Hallo_Scroll,Witchs_Hat,50,1,1,0,0,0 -IG_Hallo_Scroll,Red_Deviruchi_Cap,350,1,1,0,0,0 -IG_Hallo_Scroll,Insurance_Package,1350,1,1,0,0,0 -IG_Hallo_Scroll,Charm_Of_Happiness,1350,1,1,0,0,0 -IG_Hallo_Scroll,Magic_Card_Album,220,1,1,0,0,0 -IG_Hallo_Scroll,Holy_Celestial_Axe_Box,330,1,1,0,0,0 -IG_Hallo_Scroll,Glass_Of_Illusion_Box5,1350,1,1,0,0,0 -IG_Hallo_Scroll,Shadow_Armor_S_Box30,600,1,1,0,0,0 -IG_Hallo_Scroll,Alice_Scroll,1350,5,1,0,0,0 -IG_Hallo_Scroll,Ticket_Loli_Ruri,1350,1,1,0,0,0 -IG_Hallo_Scroll,Teddy_Bear_Card,10,1,1,0,0,0 -IG_Hallo_Scroll,Hallow_Ring_Box,1300,1,1,0,0,0 -IG_Hallo_Scroll,Zherlthsh_Mask,140,1,1,0,0,0 -IG_Hallo_Scroll,HE_Battle_Manual,150,1,1,0,0,0 -IG_Hallo_Scroll,Zeny_Scroll,100,30,1,0,0,0 - -IG_Ms_Scorpio_Scroll,Thanatos_Card,1,1,1,1,0,0 -IG_Ms_Scorpio_Scroll,Bone_Plate,3,1,1,1,0,0 -IG_Ms_Scorpio_Scroll,Thanatos_Mal_Mask,7,1,1,1,0,0 -IG_Ms_Scorpio_Scroll,Scorpio_Crown,17,1,1,1,0,0 -IG_Ms_Scorpio_Scroll,Scorpio_Diadem,17,1,1,1,0,0 -IG_Ms_Scorpio_Scroll,Whike_Black_Tail,160,1,1,1,0,0 -IG_Ms_Scorpio_Scroll,Miracle_Medicine,15,1,1,1,0,0 -IG_Ms_Scorpio_Scroll,Max_Weight_Up_Box,300,1,1,1,0,0 -IG_Ms_Scorpio_Scroll,Orc_HeroS,80,10,1,1,0,0 -IG_Ms_Scorpio_Scroll,Mental_Potion,600,1,1,0,0,0 -IG_Ms_Scorpio_Scroll,Guyak_Pudding,700,5,1,0,0,0 -IG_Ms_Scorpio_Scroll,HE_Battle_Manual,900,4,1,0,0,0 -IG_Ms_Scorpio_Scroll,13286,1100,1,1,0,0,0 -IG_Ms_Scorpio_Scroll,Dex_Dish_Box,1300,1,1,0,0,0 -IG_Ms_Scorpio_Scroll,Zeny_Scroll,2500,5,1,0,0,0 -IG_Ms_Scorpio_Scroll,Small_Life_Potion_Box,2300,1,1,0,0,0 - -IG_TCG_Card_Scroll,TCG_Card,0,1,0,0,0,0 -IG_TCG_Card_Scroll,Battle_Manual,150,2,2,0,0,0 -IG_TCG_Card_Scroll,Bubble_Gum,150,2,2,0,0,0 -IG_TCG_Card_Scroll,Insurance,100,2,2,0,0,0 -IG_TCG_Card_Scroll,Token_Of_Siegfried,100,3,2,0,0,0 -IG_TCG_Card_Scroll,Light_White_Pot,500,25,2,0,0,0 - -IG_Boitata_Scroll,Pill_,0,5,0,0,0,0 -IG_Boitata_Scroll,Sealed_Lady_Tanee_Card,1,1,1,1,0,0 -IG_Boitata_Scroll,Sealed_Mistress_Card,1,1,1,1,0,0 -IG_Boitata_Scroll,Sealed_Tao_Card,1,1,1,1,0,0 -IG_Boitata_Scroll,Boitata_Armor,12,1,1,1,0,1 -IG_Boitata_Scroll,Boitata_Hat,35,1,1,1,0,1 -IG_Boitata_Scroll,Guarantee_Armor_7Up,15,1,1,1,0,0 -IG_Boitata_Scroll,Guarantee_Weapon_7Up,15,1,1,1,0,0 -IG_Boitata_Scroll,Green_Bunny_Hairband,100,1,1,1,0,1 -IG_Boitata_Scroll,Sailor_Hat,300,1,1,1,0,1 -IG_Boitata_Scroll,Bravery_Bag,20,1,1,1,0,1 -IG_Boitata_Scroll,Earth_Sprits_Armor_,50,1,1,1,0,1 -IG_Boitata_Scroll,Skull_Cap,50,1,1,1,0,1 -IG_Boitata_Scroll,Superb_Fish_Box50,100,1,1,0,0,0 -IG_Boitata_Scroll,Bubble_Gum_Box,1200,1,1,0,0,0 -IG_Boitata_Scroll,Guyak_Pudding,1500,10,1,0,0,0 -IG_Boitata_Scroll,White_Slim_Pot_Box2,1500,1,1,0,0,0 -IG_Boitata_Scroll,Underripe_Yggseed,1500,10,1,0,0,0 -IG_Boitata_Scroll,Siroma_Icetea_To_Throw,1800,10,1,0,0,0 -IG_Boitata_Scroll,13289,1800,10,1,0,0,0 - -IG_Lucky_Egg_C2,Magic_Card_Album,50,1,1,0,0,0 -IG_Lucky_Egg_C2,White_Slim_Pot_Box2,900,1,1,0,0,0 -IG_Lucky_Egg_C2,Poison_Bottle_Box2,900,1,1,0,0,0 -IG_Lucky_Egg_C2,Blue_Herb_Box2,900,1,1,0,0,0 -IG_Lucky_Egg_C2,Guarantee_Weapon_5Up,200,1,1,0,0,0 -IG_Lucky_Egg_C2,Guarantee_Armor_5Up,200,1,1,0,0,0 -IG_Lucky_Egg_C2,Sealed_Dracula_Card,1,1,1,0,0,0 -IG_Lucky_Egg_C2,Drake_Card,1,1,1,0,0,0 -IG_Lucky_Egg_C2,Cancer_Diadem,150,1,1,0,0,0 -IG_Lucky_Egg_C2,Cancer_Crown,150,1,1,0,0,0 -IG_Lucky_Egg_C2,Mini_Propeller_,150,1,1,0,0,0 -IG_Lucky_Egg_C2,Battle_Manual_Box,1000,1,1,1,0,0 -IG_Lucky_Egg_C2,Comp_Bubble_Gum,800,1,1,0,0,0 -IG_Lucky_Egg_C2,Comp_Insurance,800,3,1,1,0,0 -IG_Lucky_Egg_C2,J_Aspersio_5_Scroll,800,5,1,1,0,0 -IG_Lucky_Egg_C2,Underripe_Yggseed,800,10,1,1,0,0 -IG_Lucky_Egg_C2,Psychic_ArmorS,800,2,1,1,0,0 -IG_Lucky_Egg_C2,Yggdrasilberry_Box_,948,1,1,1,0,0 -IG_Lucky_Egg_C2,Bogy_Horn,150,1,1,1,0,0 -IG_Lucky_Egg_C2,Flame_Sprits_Armor__,150,1,1,1,0,0 -IG_Lucky_Egg_C2,Jasper_Crest,150,1,1,1,0,0 +IG_Pet_Egg_Scroll7,12208,80,2,1,0,0,1 // 2x Battle_Manual +IG_Pet_Egg_Scroll7,12209,30,2,1,0,0,1 // 2x Insurance +IG_Pet_Egg_Scroll7,7620,120,2,1,0,0,1 // 2x Enriched_Oridecon +IG_Pet_Egg_Scroll7,12211,190,10,1,0,0,1 // 10x Kafra_Card +IG_Pet_Egg_Scroll7,12221,190,5,1,0,0,1 // 5x Megaphone_ +IG_Pet_Egg_Scroll7,617,50,3,1,0,0,1 // 3x Old_Violet_Box +IG_Pet_Egg_Scroll7,12085,200,5,1,0,0,1 // 5x Vit_Dish10 +IG_Pet_Egg_Scroll7,12103,120,1,1,0,0,1 // 1x Bloody_Dead_Branch +IG_Pet_Egg_Scroll7,4218,2,1,1,0,0,1 // 1x Succubus_Card +IG_Pet_Egg_Scroll7,4269,2,1,1,0,0,1 // 1x Incubus_Card +IG_Pet_Egg_Scroll7,5220,5,1,1,0,0,1 // 1x Smoking_Pipe_ +IG_Pet_Egg_Scroll7,5221,9,1,1,0,0,1 // 1x Pair_Of_Red_Ribbon_ + +IG_Pet_Egg_Scroll8,12208,80,2,1,0,0,1 // 2x Battle_Manual +IG_Pet_Egg_Scroll8,12219,60,5,1,0,0,1 // 5x Wind_Walk_10_Scroll +IG_Pet_Egg_Scroll8,7621,120,5,1,0,0,1 // 5x Token_Of_Siegfried +IG_Pet_Egg_Scroll8,12212,244,10,1,0,0,1 // 10x Giant_Fly_Wing +IG_Pet_Egg_Scroll8,12213,1,1,1,0,0,1 // 1x Neuralizer +IG_Pet_Egg_Scroll8,12210,150,2,1,0,0,1 // 2x Bubble_Gum +IG_Pet_Egg_Scroll8,607,200,10,1,0,0,1 // 10x Yggdrasilberry +IG_Pet_Egg_Scroll8,12090,100,5,1,0,0,1 // 5x Agi_Dish10 +IG_Pet_Egg_Scroll8,617,30,3,1,0,0,1 // 3x Old_Violet_Box +IG_Pet_Egg_Scroll8,5149,3,1,1,0,0,1 // 1x Silver_Tiara +IG_Pet_Egg_Scroll8,5217,3,1,1,0,0,1 // 1x Magestic_Goat_TW +IG_Pet_Egg_Scroll8,5222,9,1,1,0,0,1 // 1x Fish_On_Head_ + +IG_Pet_Egg_Scroll9,12208,200,2,1,0,0,1 // 2x Battle_Manual +IG_Pet_Egg_Scroll9,12209,50,2,1,0,0,1 // 2x Insurance +IG_Pet_Egg_Scroll9,7620,160,2,1,0,0,1 // 2x Enriched_Oridecon +IG_Pet_Egg_Scroll9,12211,80,10,1,0,0,1 // 10x Kafra_Card +IG_Pet_Egg_Scroll9,12220,200,5,1,0,0,1 // 5x Adrenaline_Scroll +IG_Pet_Egg_Scroll9,12213,1,1,1,0,0,1 // 1x Neuralizer +IG_Pet_Egg_Scroll9,617,60,3,1,0,0,1 // 3x Old_Violet_Box +IG_Pet_Egg_Scroll9,12075,208,5,1,0,0,1 // 5x Str_Dish10 +IG_Pet_Egg_Scroll9,4169,5,1,1,0,0,1 // 1x Dark_Illusion_Card +IG_Pet_Egg_Scroll9,4168,1,1,1,0,0,1 // 1x Dark_Lord_Card +IG_Pet_Egg_Scroll9,5224,5,1,1,0,0,1 // 1x Orc_Hero_Helm_TW +IG_Pet_Egg_Scroll9,5218,10,1,1,0,0,1 // 1x Bunny_Band_ + +IG_Pet_Egg_Scroll10,12208,100,2,1,0,0,1 // 2x Battle_Manual +IG_Pet_Egg_Scroll10,12219,80,5,1,0,0,1 // 5x Wind_Walk_10_Scroll +IG_Pet_Egg_Scroll10,7621,100,5,1,0,0,1 // 5x Token_Of_Siegfried +IG_Pet_Egg_Scroll10,12212,200,10,1,0,0,1 // 10x Giant_Fly_Wing +IG_Pet_Egg_Scroll10,12221,160,5,1,0,0,1 // 5x Megaphone_ +IG_Pet_Egg_Scroll10,12210,100,2,1,0,0,1 // 2x Bubble_Gum +IG_Pet_Egg_Scroll10,607,152,10,1,0,0,1 // 10x Yggdrasilberry +IG_Pet_Egg_Scroll10,12080,100,5,1,0,0,1 // 5x Int_Dish10 +IG_Pet_Egg_Scroll10,4268,2,1,1,0,0,1 // 1x Injustice_Card +IG_Pet_Egg_Scroll10,4277,2,1,1,0,0,1 // 1x Zherlthsh_Card +IG_Pet_Egg_Scroll10,5215,2,1,1,0,0,1 // 1x Angelic_Chain_ +IG_Pet_Egg_Scroll10,5216,2,1,1,0,0,1 // 1x Satanic_Chain_ + +IG_Pet_Egg_Scroll11,12208,115,2,1,0,0,1 // 2x Battle_Manual +IG_Pet_Egg_Scroll11,7619,90,2,1,0,0,1 // 2x Enriched_Elunium +IG_Pet_Egg_Scroll11,7621,205,5,1,0,0,1 // 5x Token_Of_Siegfried +IG_Pet_Egg_Scroll11,12212,205,10,1,0,0,1 // 10x Giant_Fly_Wing +IG_Pet_Egg_Scroll11,12210,115,2,1,0,0,1 // 2x Bubble_Gum +IG_Pet_Egg_Scroll11,617,55,3,1,0,0,1 // 3x Old_Violet_Box +IG_Pet_Egg_Scroll11,12095,205,5,1,0,0,1 // 5x Dex_Dish10 +IG_Pet_Egg_Scroll11,4238,2,1,1,0,0,1 // 1x Owl_Baron_Card +IG_Pet_Egg_Scroll11,4237,2,1,1,0,0,1 // 1x Owl_Duke_Card +IG_Pet_Egg_Scroll11,2415,2,1,1,0,0,1 // 1x Slipper +IG_Pet_Egg_Scroll11,5219,2,1,1,0,0,1 // 1x Drooping_Kitty_ +IG_Pet_Egg_Scroll11,5223,2,1,1,0,0,1 // 1x Big_Golden_Bell_ + +IG_CP_Helm_Scroll_Box,14517,0,1,0,0,0,1 // 1x CP_Helm_Scroll +IG_CP_Helm_Scroll_Box,7139,0,1,0,0,0,1 // 1x Coating_Bottle + +IG_CP_Shield_Scroll_Box,14518,0,1,0,0,0,1 // 1x CP_Shield_Scroll +IG_CP_Shield_Scroll_Box,7139,0,1,0,0,0,1 // 1x Coating_Bottle + +IG_CP_Armor_Scroll_Box,14519,0,1,0,0,0,1 // 1x CP_Armor_Scroll +IG_CP_Armor_Scroll_Box,7139,0,1,0,0,0,1 // 1x Coating_Bottle + +IG_CP_Weapon_Scroll_Box,14520,0,1,0,0,0,1 // 1x CP_Weapon_Scroll +IG_CP_Weapon_Scroll_Box,7139,0,1,0,0,0,1 // 1x Coating_Bottle + +IG_Repair_Scroll_Box,14521,0,1,0,0,0,1 // 1x Repair_Scroll +IG_Repair_Scroll_Box,1002,0,1,0,0,0,1 // 1x Iron_Ore +IG_Repair_Scroll_Box,998,0,1,0,0,0,1 // 1x Iron +IG_Repair_Scroll_Box,756,0,1,0,0,0,1 // 1x Oridecon_Stone +IG_Repair_Scroll_Box,999,0,1,0,0,0,1 // 1x Steel + +IG_Super_Pet_Egg1,2234,2,1,1,0,0,1 // 1x Tiara +IG_Super_Pet_Egg1,2235,2,1,1,0,0,1 // 1x Crown +IG_Super_Pet_Egg1,5007,1,1,1,0,0,1 // 1x Loard_Circlet +IG_Super_Pet_Egg1,5074,5,1,1,0,0,1 // 1x Ear_Of_Angel's_Wing +IG_Super_Pet_Egg1,5068,5,1,1,0,0,1 // 1x Ear_Of_Devil's_Wing +IG_Super_Pet_Egg1,5210,20,1,1,0,0,1 // 1x Flying_Angel +IG_Super_Pet_Egg1,4168,1,1,1,0,0,1 // 1x Dark_Lord_Card +IG_Super_Pet_Egg1,4054,2,1,1,0,0,1 // 1x Angeling_Card +IG_Super_Pet_Egg1,4047,2,1,1,0,0,1 // 1x Ghostring_Card +IG_Super_Pet_Egg1,2277,80,1,1,0,0,1 // 1x Nurse_Cap +IG_Super_Pet_Egg1,2269,45,1,1,0,0,1 // 1x Centimental_Flower +IG_Super_Pet_Egg1,5077,50,1,1,0,0,1 // 1x Tulip_Hairpin +IG_Super_Pet_Egg1,616,85,2,1,0,0,1 // 2x Old_Card_Album +IG_Super_Pet_Egg1,617,130,5,1,0,0,1 // 5x Old_Violet_Box +IG_Super_Pet_Egg1,607,170,15,1,0,0,1 // 15x Yggdrasilberry +IG_Super_Pet_Egg1,608,170,30,1,0,0,1 // 30x Seed_Of_Yggdrasil +IG_Super_Pet_Egg1,14508,230,10,1,0,0,1 // 10x Zeny_Scroll + +IG_Super_Pet_Egg2,2246,6,1,1,0,0,1 // 1x Golden_Gear +IG_Super_Pet_Egg2,2249,3,1,1,0,0,1 // 1x Coronet +IG_Super_Pet_Egg2,2274,6,1,1,0,0,1 // 1x Ghost_Bandana +IG_Super_Pet_Egg2,5066,2,1,1,0,0,1 // 1x Horn_Of_Succubus +IG_Super_Pet_Egg2,5072,2,1,1,0,0,1 // 1x Inccubus_Horn +IG_Super_Pet_Egg2,4241,10,1,1,0,0,1 // 1x Archangeling_Card +IG_Super_Pet_Egg2,4140,3,1,1,0,0,1 // 1x Knight_Of_Abyss_Card +IG_Super_Pet_Egg2,4148,1,1,1,0,0,1 // 1x Pharaoh_Card +IG_Super_Pet_Egg2,5035,80,1,1,0,0,1 // 1x Poring_Hat +IG_Super_Pet_Egg2,2270,50,1,1,0,0,1 // 1x Centimental_Leaf +IG_Super_Pet_Egg2,5048,40,1,1,0,0,1 // 1x First_Moon_Hair_Pin +IG_Super_Pet_Egg2,2267,20,1,1,0,0,1 // 1x Cigar +IG_Super_Pet_Egg2,616,90,2,1,0,0,1 // 2x Old_Card_Album +IG_Super_Pet_Egg2,617,130,5,1,0,0,1 // 5x Old_Violet_Box +IG_Super_Pet_Egg2,607,160,15,1,0,0,1 // 15x Yggdrasilberry +IG_Super_Pet_Egg2,608,170,30,1,0,0,1 // 30x Seed_Of_Yggdrasil +IG_Super_Pet_Egg2,14508,227,10,1,0,0,1 // 10x Zeny_Scroll + +IG_Super_Pet_Egg3,2247,5,1,1,0,0,1 // 1x Oldman's_Romance +IG_Super_Pet_Egg3,2250,6,1,1,0,0,1 // 1x Fillet +IG_Super_Pet_Egg3,2268,3,1,1,0,0,1 // 1x Smoking_Pipe +IG_Super_Pet_Egg3,5020,1,1,1,0,0,1 // 1x Kafra_Band +IG_Super_Pet_Egg3,5042,6,1,1,0,0,1 // 1x Hair_Protector +IG_Super_Pet_Egg3,1466,10,1,1,0,0,1 // 1x Crescent_Scythe +IG_Super_Pet_Egg3,1230,33,1,1,0,0,1 // 1x House_Auger +IG_Super_Pet_Egg3,4169,2,1,1,0,0,1 // 1x Dark_Illusion_Card +IG_Super_Pet_Egg3,4137,2,1,1,0,0,1 // 1x Drake_Card +IG_Super_Pet_Egg3,4146,2,1,1,0,0,1 // 1x Maya_Card +IG_Super_Pet_Egg3,2283,100,1,1,0,0,1 // 1x Ear_Mufs +IG_Super_Pet_Egg3,5085,50,1,1,0,0,1 // 1x Pair_Of_Red_Ribbon +IG_Super_Pet_Egg3,616,90,2,1,0,0,1 // 2x Old_Card_Album +IG_Super_Pet_Egg3,617,120,5,1,0,0,1 // 5x Old_Violet_Box +IG_Super_Pet_Egg3,607,180,15,1,0,0,1 // 15x Yggdrasilberry +IG_Super_Pet_Egg3,608,170,30,1,0,0,1 // 30x Seed_Of_Yggdrasil +IG_Super_Pet_Egg3,14508,220,10,1,0,0,1 // 10x Zeny_Scroll + +IG_Super_Pet_Egg4,2254,3,1,1,0,0,1 // 1x Angelic_Chain +IG_Super_Pet_Egg4,2256,3,1,1,0,0,1 // 1x Magestic_Goat +IG_Super_Pet_Egg4,2258,2,1,1,0,0,1 // 1x Sharp_Gear +IG_Super_Pet_Egg4,5025,2,1,1,0,0,1 // 1x Helm_Of_Angel +IG_Super_Pet_Egg4,5094,4,1,1,0,0,1 // 1x Orc_Hero_Helm +IG_Super_Pet_Egg4,4142,1,1,1,0,0,1 // 1x Doppelganger_Card +IG_Super_Pet_Egg4,4144,2,1,1,0,0,1 // 1x Osiris_Card +IG_Super_Pet_Egg4,4121,2,1,1,0,0,1 // 1x Phreeoni_Card +IG_Super_Pet_Egg4,2298,70,1,1,0,0,1 // 1x Green_Feeler +IG_Super_Pet_Egg4,2244,50,1,1,0,0,1 // 1x Big_Sis'_Ribbon +IG_Super_Pet_Egg4,5117,36,1,1,0,0,1 // 1x Mistic_Rose +IG_Super_Pet_Egg4,5107,35,1,1,0,0,1 // 1x Well_Baked_Toast +IG_Super_Pet_Egg4,616,90,2,1,0,0,1 // 2x Old_Card_Album +IG_Super_Pet_Egg4,617,130,5,1,0,0,1 // 5x Old_Violet_Box +IG_Super_Pet_Egg4,607,170,15,1,0,0,1 // 15x Yggdrasilberry +IG_Super_Pet_Egg4,608,170,30,1,0,0,1 // 30x Seed_Of_Yggdrasil +IG_Super_Pet_Egg4,14508,230,10,1,0,0,1 // 10x Zeny_Scroll + +IG_Super_Card_Pet_Egg1,4255,40,1,1,0,0,1 // 1x Orc_Lady_Card +IG_Super_Card_Pet_Egg1,4106,30,1,1,0,0,1 // 1x Mummy_Card +IG_Super_Card_Pet_Egg1,4055,80,1,1,0,0,1 // 1x Marina_Card +IG_Super_Card_Pet_Egg1,4082,80,1,1,0,0,1 // 1x Desert_Wolf_Card +IG_Super_Card_Pet_Egg1,4086,17,1,1,0,0,1 // 1x Soldier_Skeleton_Card +IG_Super_Card_Pet_Egg1,4076,40,1,1,0,0,1 // 1x Magnolia_Card +IG_Super_Card_Pet_Egg1,4043,7,1,1,0,0,1 // 1x Andre_Card +IG_Super_Card_Pet_Egg1,4030,40,1,1,0,0,1 // 1x Mandragora_Card +IG_Super_Card_Pet_Egg1,4049,50,1,1,0,0,1 // 1x Vadon_Card +IG_Super_Card_Pet_Egg1,4147,2,1,1,0,0,1 // 1x Baphomet_Card +IG_Super_Card_Pet_Egg1,4069,50,1,1,0,0,1 // 1x Drainliar_Card +IG_Super_Card_Pet_Egg1,4158,20,1,1,0,0,1 // 1x Flying_Deleter_Card +IG_Super_Card_Pet_Egg1,4166,8,1,1,0,0,1 // 1x Nightmare_Terror_Card +IG_Super_Card_Pet_Egg1,4315,20,1,1,0,0,1 // 1x Pest_Card +IG_Super_Card_Pet_Egg1,4105,20,1,1,0,0,1 // 1x Marc_Card +IG_Super_Card_Pet_Egg1,4170,10,1,1,0,0,1 // 1x Dark_Frame_Card +IG_Super_Card_Pet_Egg1,4279,5,1,1,0,0,1 // 1x Deleter_Card +IG_Super_Card_Pet_Egg1,607,165,15,1,0,0,1 // 15x Yggdrasilberry +IG_Super_Card_Pet_Egg1,608,166,20,1,0,0,1 // 20x Seed_Of_Yggdrasil +IG_Super_Card_Pet_Egg1,14508,150,5,1,0,0,1 // 5x Zeny_Scroll + +IG_Super_Card_Pet_Egg2,4135,1,1,1,0,0,1 // 1x Orc_Load_Card +IG_Super_Card_Pet_Egg2,4092,30,1,1,0,0,1 // 1x Skel_Worker_Card +IG_Super_Card_Pet_Egg2,4126,55,1,1,0,0,1 // 1x Minorous_Card +IG_Super_Card_Pet_Egg2,4323,18,1,1,0,0,1 // 1x Garm_Baby_Card +IG_Super_Card_Pet_Egg2,4060,25,1,1,0,0,1 // 1x Goblin_Card +IG_Super_Card_Pet_Egg2,4063,70,1,1,0,0,1 // 1x Caramel_Card +IG_Super_Card_Pet_Egg2,4068,5,1,1,0,0,1 // 1x Scorpion_Card +IG_Super_Card_Pet_Egg2,4080,35,1,1,0,0,1 // 1x Flora_Card +IG_Super_Card_Pet_Egg2,4115,35,1,1,0,0,1 // 1x Hunter_Fly_Card +IG_Super_Card_Pet_Egg2,4007,40,1,1,0,0,1 // 1x Pecopeco_Egg_Card +IG_Super_Card_Pet_Egg2,4035,30,1,1,0,0,1 // 1x Hydra_Card +IG_Super_Card_Pet_Egg2,4181,30,1,1,0,0,1 // 1x Disguise_Card +IG_Super_Card_Pet_Egg2,4194,9,1,1,0,0,1 // 1x Rybio_Card +IG_Super_Card_Pet_Egg2,4189,20,1,1,0,0,1 // 1x Wraith_Dead_Card +IG_Super_Card_Pet_Egg2,4201,18,1,1,0,0,1 // 1x Majoruros_Card +IG_Super_Card_Pet_Egg2,4003,40,1,1,0,0,1 // 1x Pupa_Card +IG_Super_Card_Pet_Egg2,4031,40,1,1,0,0,1 // 1x Pecopeco_Card +IG_Super_Card_Pet_Egg2,607,168,15,1,0,0,1 // 15x Yggdrasilberry +IG_Super_Card_Pet_Egg2,608,165,20,1,0,0,1 // 20x Seed_Of_Yggdrasil +IG_Super_Card_Pet_Egg2,14508,166,5,1,0,0,1 // 5x Zeny_Scroll + +IG_Super_Card_Pet_Egg3,4052,70,1,1,0,0,1 // 1x Elder_Wilow_Card +IG_Super_Card_Pet_Egg3,4122,20,1,1,0,0,1 // 1x Deviruchi_Card +IG_Super_Card_Pet_Egg3,4112,40,1,1,0,0,1 // 1x Marduk_Card +IG_Super_Card_Pet_Egg3,4288,45,1,1,0,0,1 // 1x Carat_Card +IG_Super_Card_Pet_Egg3,4285,30,1,1,0,0,1 // 1x Choco_Card +IG_Super_Card_Pet_Egg3,4148,1,1,1,0,0,1 // 1x Pharaoh_Card +IG_Super_Card_Pet_Egg3,4159,30,1,1,0,0,1 // 1x Nine_Tail_Card +IG_Super_Card_Pet_Egg3,4102,10,1,1,0,0,1 // 1x Whisper_Card +IG_Super_Card_Pet_Egg3,4088,20,1,1,0,0,1 // 1x Frilldora_Card +IG_Super_Card_Pet_Egg3,4178,33,1,1,0,0,1 // 1x Dragon_Tail_Card +IG_Super_Card_Pet_Egg3,4129,10,1,1,0,0,1 // 1x Baphomet__Card +IG_Super_Card_Pet_Egg3,4133,35,1,1,0,0,1 // 1x Daydric_Card +IG_Super_Card_Pet_Egg3,4325,50,1,1,0,0,1 // 1x Harpy_Card +IG_Super_Card_Pet_Egg3,4303,10,1,1,0,0,1 // 1x Whisper_Boss_Card +IG_Super_Card_Pet_Egg3,4058,50,1,1,0,0,1 // 1x Thara_Frog_Card +IG_Super_Card_Pet_Egg3,4250,35,1,1,0,0,1 // 1x Executioner_Card +IG_Super_Card_Pet_Egg3,4136,30,1,1,0,0,1 // 1x Khalitzburg_Card +IG_Super_Card_Pet_Egg3,607,171,15,1,0,0,1 // 15x Yggdrasilberry +IG_Super_Card_Pet_Egg3,608,170,20,1,0,0,1 // 20x Seed_Of_Yggdrasil +IG_Super_Card_Pet_Egg3,14508,140,5,1,0,0,1 // 5x Zeny_Scroll + +IG_Super_Card_Pet_Egg4,4050,60,1,1,0,0,1 // 1x Thief_Bug_Male_Card +IG_Super_Card_Pet_Egg4,4107,70,1,1,0,0,1 // 1x Verit_Card +IG_Super_Card_Pet_Egg4,4097,25,1,1,0,0,1 // 1x Matyr_Card +IG_Super_Card_Pet_Egg4,4100,19,1,1,0,0,1 // 1x Sohee_Card +IG_Super_Card_Pet_Egg4,4160,40,1,1,0,0,1 // 1x Antique_Firelock_Card +IG_Super_Card_Pet_Egg4,4327,38,1,1,0,0,1 // 1x Blood_Butterfly_Card +IG_Super_Card_Pet_Egg4,4205,35,1,1,0,0,1 // 1x Mimic_Card +IG_Super_Card_Pet_Egg4,4064,38,1,1,0,0,1 // 1x Zerom_Card +IG_Super_Card_Pet_Egg4,4077,10,1,1,0,0,1 // 1x Phen_Card +IG_Super_Card_Pet_Egg4,4091,40,1,1,0,0,1 // 1x Kobold_Card +IG_Super_Card_Pet_Egg4,4131,1,1,1,0,0,1 // 1x Moonlight_Flower_Card +IG_Super_Card_Pet_Egg4,4079,45,1,1,0,0,1 // 1x Mantis_Card +IG_Super_Card_Pet_Egg4,4044,65,1,1,0,0,1 // 1x Smokie_Card +IG_Super_Card_Pet_Egg4,4053,10,1,1,0,0,1 // 1x Vitata_Card +IG_Super_Card_Pet_Egg4,4322,3,1,1,0,0,1 // 1x High_Orc_Card +IG_Super_Card_Pet_Egg4,4314,13,1,1,0,0,1 // 1x Penomena_Card +IG_Super_Card_Pet_Egg4,4254,18,1,1,0,0,1 // 1x Tirfing_Card +IG_Super_Card_Pet_Egg4,607,165,15,1,0,0,1 // 15x Yggdrasilberry +IG_Super_Card_Pet_Egg4,608,165,20,1,0,0,1 // 20x Seed_Of_Yggdrasil +IG_Super_Card_Pet_Egg4,14508,140,5,1,0,0,1 // 5x Zeny_Scroll + +IG_Vigorgra_Package1,12208,0,2,0,0,0,1 // 2x Battle_Manual +IG_Vigorgra_Package1,12202,0,2,0,0,0,1 // 2x Str_Dish10_ +IG_Vigorgra_Package1,12203,0,2,0,0,0,1 // 2x Agi_Dish10_ +IG_Vigorgra_Package1,12216,0,15,0,0,0,1 // 15x Inc_Agi_10_Scroll +IG_Vigorgra_Package1,12215,0,15,0,0,0,1 // 15x Blessing_10_Scroll +IG_Vigorgra_Package1,12211,0,1,0,0,0,1 // 1x Kafra_Card +IG_Vigorgra_Package1,7621,0,1,0,0,0,1 // 1x Token_Of_Siegfried + +IG_Vigorgra_Package2,12208,0,2,0,0,0,1 // 2x Battle_Manual +IG_Vigorgra_Package2,12202,0,2,0,0,0,1 // 2x Str_Dish10_ +IG_Vigorgra_Package2,12207,0,2,0,0,0,1 // 2x Vit_Dish10_ +IG_Vigorgra_Package2,12216,0,15,0,0,0,1 // 15x Inc_Agi_10_Scroll +IG_Vigorgra_Package2,12215,0,15,0,0,0,1 // 15x Blessing_10_Scroll +IG_Vigorgra_Package2,12211,0,1,0,0,0,1 // 1x Kafra_Card +IG_Vigorgra_Package2,7621,0,1,0,0,0,1 // 1x Token_Of_Siegfried + +IG_Vigorgra_Package3,12208,0,2,0,0,0,1 // 2x Battle_Manual +IG_Vigorgra_Package3,12204,0,2,0,0,0,1 // 2x Int_Dish10_ +IG_Vigorgra_Package3,12205,0,2,0,0,0,1 // 2x Dex_Dish10_ +IG_Vigorgra_Package3,12216,0,15,0,0,0,1 // 15x Inc_Agi_10_Scroll +IG_Vigorgra_Package3,12215,0,15,0,0,0,1 // 15x Blessing_10_Scroll +IG_Vigorgra_Package3,12211,0,1,0,0,0,1 // 1x Kafra_Card +IG_Vigorgra_Package3,7621,0,1,0,0,0,1 // 1x Token_Of_Siegfried + +IG_Vigorgra_Package4,12208,0,2,0,0,0,1 // 2x Battle_Manual +IG_Vigorgra_Package4,12204,0,2,0,0,0,1 // 2x Int_Dish10_ +IG_Vigorgra_Package4,12205,0,2,0,0,0,1 // 2x Dex_Dish10_ +IG_Vigorgra_Package4,12216,0,15,0,0,0,1 // 15x Inc_Agi_10_Scroll +IG_Vigorgra_Package4,12215,0,15,0,0,0,1 // 15x Blessing_10_Scroll +IG_Vigorgra_Package4,12211,0,1,0,0,0,1 // 1x Kafra_Card +IG_Vigorgra_Package4,7621,0,1,0,0,0,1 // 1x Token_Of_Siegfried + +IG_Vigorgra_Package5,12208,0,2,0,0,0,1 // 2x Battle_Manual +IG_Vigorgra_Package5,12204,0,2,0,0,0,1 // 2x Int_Dish10_ +IG_Vigorgra_Package5,12205,0,2,0,0,0,1 // 2x Dex_Dish10_ +IG_Vigorgra_Package5,12216,0,15,0,0,0,1 // 15x Inc_Agi_10_Scroll +IG_Vigorgra_Package5,12215,0,15,0,0,0,1 // 15x Blessing_10_Scroll +IG_Vigorgra_Package5,12211,0,1,0,0,0,1 // 1x Kafra_Card +IG_Vigorgra_Package5,7621,0,1,0,0,0,1 // 1x Token_Of_Siegfried + +IG_Vigorgra_Package6,12208,0,2,0,0,0,1 // 2x Battle_Manual +IG_Vigorgra_Package6,12202,0,2,0,0,0,1 // 2x Str_Dish10_ +IG_Vigorgra_Package6,12203,0,2,0,0,0,1 // 2x Agi_Dish10_ +IG_Vigorgra_Package6,12220,0,24,0,0,0,1 // 24x Adrenaline_Scroll +IG_Vigorgra_Package6,12217,0,20,0,0,0,1 // 20x Aspersio_5_Scroll +IG_Vigorgra_Package6,523,0,20,0,0,0,1 // 20x Holy_Water +IG_Vigorgra_Package6,12211,0,1,0,0,0,1 // 1x Kafra_Card +IG_Vigorgra_Package6,7621,0,1,0,0,0,1 // 1x Token_Of_Siegfried + +IG_Vigorgra_Package7,12208,0,4,0,0,0,1 // 4x Battle_Manual +IG_Vigorgra_Package7,12202,0,4,0,0,0,1 // 4x Str_Dish10_ +IG_Vigorgra_Package7,12203,0,4,0,0,0,1 // 4x Agi_Dish10_ +IG_Vigorgra_Package7,12216,0,30,0,0,0,1 // 30x Inc_Agi_10_Scroll +IG_Vigorgra_Package7,12215,0,30,0,0,0,1 // 30x Blessing_10_Scroll +IG_Vigorgra_Package7,12211,0,2,0,0,0,1 // 2x Kafra_Card +IG_Vigorgra_Package7,7621,0,2,0,0,0,1 // 2x Token_Of_Siegfried + +IG_Vigorgra_Package8,12208,0,4,0,0,0,1 // 4x Battle_Manual +IG_Vigorgra_Package8,12202,0,4,0,0,0,1 // 4x Str_Dish10_ +IG_Vigorgra_Package8,12203,0,4,0,0,0,1 // 4x Agi_Dish10_ +IG_Vigorgra_Package8,12216,0,30,0,0,0,1 // 30x Inc_Agi_10_Scroll +IG_Vigorgra_Package8,12215,0,30,0,0,0,1 // 30x Blessing_10_Scroll +IG_Vigorgra_Package8,12211,0,2,0,0,0,1 // 2x Kafra_Card +IG_Vigorgra_Package8,7621,0,2,0,0,0,1 // 2x Token_Of_Siegfried + +IG_Vigorgra_Package9,12208,0,4,0,0,0,1 // 4x Battle_Manual +IG_Vigorgra_Package9,12204,0,4,0,0,0,1 // 4x Int_Dish10_ +IG_Vigorgra_Package9,12205,0,4,0,0,0,1 // 4x Dex_Dish10_ +IG_Vigorgra_Package9,12216,0,30,0,0,0,1 // 30x Inc_Agi_10_Scroll +IG_Vigorgra_Package9,12215,0,30,0,0,0,1 // 30x Blessing_10_Scroll +IG_Vigorgra_Package9,12211,0,2,0,0,0,1 // 2x Kafra_Card +IG_Vigorgra_Package9,7621,0,2,0,0,0,1 // 2x Token_Of_Siegfried + +IG_Vigorgra_Package10,12208,0,4,0,0,0,1 // 4x Battle_Manual +IG_Vigorgra_Package10,12204,0,4,0,0,0,1 // 4x Int_Dish10_ +IG_Vigorgra_Package10,12207,0,4,0,0,0,1 // 4x Vit_Dish10_ +IG_Vigorgra_Package10,12216,0,30,0,0,0,1 // 30x Inc_Agi_10_Scroll +IG_Vigorgra_Package10,12215,0,30,0,0,0,1 // 30x Blessing_10_Scroll +IG_Vigorgra_Package10,12211,0,2,0,0,0,1 // 2x Kafra_Card +IG_Vigorgra_Package10,7621,0,2,0,0,0,1 // 2x Token_Of_Siegfried + +IG_Vigorgra_Package11,12208,0,4,0,0,0,1 // 4x Battle_Manual +IG_Vigorgra_Package11,12204,0,4,0,0,0,1 // 4x Int_Dish10_ +IG_Vigorgra_Package11,12207,0,4,0,0,0,1 // 4x Vit_Dish10_ +IG_Vigorgra_Package11,12216,0,30,0,0,0,1 // 30x Inc_Agi_10_Scroll +IG_Vigorgra_Package11,12215,0,30,0,0,0,1 // 30x Blessing_10_Scroll +IG_Vigorgra_Package11,12211,0,2,0,0,0,1 // 2x Kafra_Card +IG_Vigorgra_Package11,7621,0,2,0,0,0,1 // 2x Token_Of_Siegfried + +IG_Vigorgra_Package12,12208,0,4,0,0,0,1 // 4x Battle_Manual +IG_Vigorgra_Package12,12202,0,4,0,0,0,1 // 4x Str_Dish10_ +IG_Vigorgra_Package12,12203,0,4,0,0,0,1 // 4x Agi_Dish10_ +IG_Vigorgra_Package12,12220,0,48,0,0,0,1 // 48x Adrenaline_Scroll +IG_Vigorgra_Package12,12217,0,40,0,0,0,1 // 40x Aspersio_5_Scroll +IG_Vigorgra_Package12,523,0,40,0,0,0,1 // 40x Holy_Water +IG_Vigorgra_Package12,12211,0,2,0,0,0,1 // 2x Kafra_Card +IG_Vigorgra_Package12,7621,0,2,0,0,0,1 // 2x Token_Of_Siegfried + +IG_Pet_Egg_Scroll12,12109,80,1,1,0,0,1 // 1x Poring_Box +IG_Pet_Egg_Scroll12,12207,150,10,1,0,0,1 // 10x Vit_Dish10_ +IG_Pet_Egg_Scroll12,617,80,1,1,0,0,1 // 1x Old_Violet_Box +IG_Pet_Egg_Scroll12,12205,150,10,1,0,0,1 // 10x Dex_Dish10_ +IG_Pet_Egg_Scroll12,12221,150,3,1,0,0,1 // 3x Megaphone_ +IG_Pet_Egg_Scroll12,12211,180,5,1,0,0,1 // 5x Kafra_Card +IG_Pet_Egg_Scroll12,12206,180,10,1,0,0,1 // 10x Luk_Dish10_ +IG_Pet_Egg_Scroll12,2286,10,1,1,0,0,1 // 1x Elven_Ears +IG_Pet_Egg_Scroll12,5210,10,1,1,0,0,1 // 1x Flying_Angel +IG_Pet_Egg_Scroll12,14508,10,1,1,0,0,1 // 1x Zeny_Scroll + +IG_Pet_Egg_Scroll13,5146,10,1,1,0,0,1 // 1x Elephant_Hat +IG_Pet_Egg_Scroll13,5273,10,1,1,0,0,1 // 1x Happy_Wig +IG_Pet_Egg_Scroll13,7620,170,5,1,0,0,1 // 5x Enriched_Oridecon +IG_Pet_Egg_Scroll13,7619,300,5,1,0,0,1 // 5x Enriched_Elunium +IG_Pet_Egg_Scroll13,14508,10,1,1,0,0,1 // 1x Zeny_Scroll +IG_Pet_Egg_Scroll13,607,100,7,1,0,0,1 // 7x Yggdrasilberry +IG_Pet_Egg_Scroll13,522,100,15,1,0,0,1 // 15x Fruit_Of_Mastela +IG_Pet_Egg_Scroll13,510,100,8,1,0,0,1 // 8x Blue_Herb +IG_Pet_Egg_Scroll13,12209,100,3,1,0,0,1 // 3x Insurance +IG_Pet_Egg_Scroll13,547,100,20,1,0,0,1 // 20x White_Slim_Potion + +IG_Pet_Egg_Scroll14,5139,10,1,1,0,0,1 // 1x Hibiscus +IG_Pet_Egg_Scroll14,5140,10,1,1,0,0,1 // 1x Charming_Ribbon +IG_Pet_Egg_Scroll14,7620,150,5,1,0,0,1 // 5x Enriched_Oridecon +IG_Pet_Egg_Scroll14,7619,250,5,1,0,0,1 // 5x Enriched_Elunium +IG_Pet_Egg_Scroll14,14508,50,1,1,0,0,1 // 1x Zeny_Scroll +IG_Pet_Egg_Scroll14,607,100,7,1,0,0,1 // 7x Yggdrasilberry +IG_Pet_Egg_Scroll14,522,100,15,1,0,0,1 // 15x Fruit_Of_Mastela +IG_Pet_Egg_Scroll14,533,100,20,1,0,0,1 // 20x Grape_Juice +IG_Pet_Egg_Scroll14,12209,100,3,1,0,0,1 // 3x Insurance +IG_Pet_Egg_Scroll14,547,130,20,1,0,0,1 // 20x White_Slim_Potion + +IG_Super_Pet_Egg5,5129,15,1,1,0,0,1 // 1x Bird_Nest +IG_Super_Pet_Egg5,5189,10,1,1,0,0,1 // 1x Fallen_Leaves +IG_Super_Pet_Egg5,5133,5,1,1,0,0,1 // 1x Sheep_Hat +IG_Super_Pet_Egg5,5134,10,1,1,0,0,1 // 1x Pumpkin_Hat +IG_Super_Pet_Egg5,5135,6,1,1,0,0,1 // 1x Cyclops_Visor +IG_Super_Pet_Egg5,5137,5,1,1,0,0,1 // 1x Alice_Doll +IG_Super_Pet_Egg5,5138,5,1,1,0,0,1 // 1x Magic_Eyes +IG_Super_Pet_Egg5,5188,5,1,1,0,0,1 // 1x Minstrel_Hat +IG_Super_Pet_Egg5,999,53,10,1,0,0,1 // 10x Steel +IG_Super_Pet_Egg5,616,90,2,1,0,0,1 // 2x Old_Card_Album +IG_Super_Pet_Egg5,617,150,5,1,0,0,1 // 5x Old_Violet_Box +IG_Super_Pet_Egg5,607,200,15,1,0,0,1 // 15x Yggdrasilberry +IG_Super_Pet_Egg5,608,230,30,1,0,0,1 // 30x Seed_Of_Yggdrasil +IG_Super_Pet_Egg5,13525,216,10,1,0,0,1 // 10x Zeny_Scroll_Box + +IG_Super_Pet_Egg6,5141,5,1,1,0,0,1 // 1x Marionette_Doll +IG_Super_Pet_Egg6,5144,10,1,1,0,0,1 // 1x Gambler_Hat +IG_Super_Pet_Egg6,5146,10,1,1,0,0,1 // 1x Elephant_Hat +IG_Super_Pet_Egg6,5147,5,1,1,0,0,1 // 1x Baseball_Cap +IG_Super_Pet_Egg6,5149,5,1,1,0,0,1 // 1x Silver_Tiara +IG_Super_Pet_Egg6,5150,6,1,1,0,0,1 // 1x Joker_Jester_ +IG_Super_Pet_Egg6,5151,5,1,1,0,0,1 // 1x Headset_OST +IG_Super_Pet_Egg6,5152,5,1,1,0,0,1 // 1x Chinese_Crown +IG_Super_Pet_Egg6,999,53,10,1,0,0,1 // 10x Steel +IG_Super_Pet_Egg6,616,90,2,1,0,0,1 // 2x Old_Card_Album +IG_Super_Pet_Egg6,617,150,5,1,0,0,1 // 5x Old_Violet_Box +IG_Super_Pet_Egg6,607,200,15,1,0,0,1 // 15x Yggdrasilberry +IG_Super_Pet_Egg6,608,230,30,1,0,0,1 // 30x Seed_Of_Yggdrasil +IG_Super_Pet_Egg6,13525,226,10,1,0,0,1 // 10x Zeny_Scroll_Box + +IG_Super_Pet_Egg7,5028,15,1,1,0,0,1 // 1x Candle +IG_Super_Pet_Egg7,5179,5,1,1,0,0,1 // 1x Gold_Tiara +IG_Super_Pet_Egg7,5180,10,1,1,0,0,1 // 1x Phrygian_Cap_ +IG_Super_Pet_Egg7,5181,5,1,1,0,0,1 // 1x Helm_Of_Darkness +IG_Super_Pet_Egg7,5182,10,1,1,0,0,1 // 1x Puppy_Hat +IG_Super_Pet_Egg7,5206,8,1,1,0,0,1 // 1x Romantic_White_Flower +IG_Super_Pet_Egg7,5139,5,1,1,0,0,1 // 1x Hibiscus +IG_Super_Pet_Egg7,5140,10,1,1,0,0,1 // 1x Charming_Ribbon +IG_Super_Pet_Egg7,999,53,10,1,0,0,1 // 10x Steel +IG_Super_Pet_Egg7,616,90,2,1,0,0,1 // 2x Old_Card_Album +IG_Super_Pet_Egg7,617,150,5,1,0,0,1 // 5x Old_Violet_Box +IG_Super_Pet_Egg7,607,200,15,1,0,0,1 // 15x Yggdrasilberry +IG_Super_Pet_Egg7,608,230,30,1,0,0,1 // 30x Seed_Of_Yggdrasil +IG_Super_Pet_Egg7,13525,209,10,1,0,0,1 // 10x Zeny_Scroll_Box + +IG_Super_Pet_Egg8,5132,5,1,1,0,0,1 // 1x Angeling_Hat +IG_Super_Pet_Egg8,5200,10,1,1,0,0,1 // 1x Coppola +IG_Super_Pet_Egg8,5203,15,1,1,0,0,1 // 1x Tongue_Mask +IG_Super_Pet_Egg8,5184,5,1,1,0,0,1 // 1x Captain_Hat +IG_Super_Pet_Egg8,5185,5,1,1,0,0,1 // 1x Laurel_Wreath +IG_Super_Pet_Egg8,5186,5,1,1,0,0,1 // 1x Geographer_Band +IG_Super_Pet_Egg8,5187,5,1,1,0,0,1 // 1x Twin_Ribbon +IG_Super_Pet_Egg8,5183,10,1,1,0,0,1 // 1x Bird_Nest_Hat +IG_Super_Pet_Egg8,999,53,10,1,0,0,1 // 10x Steel +IG_Super_Pet_Egg8,616,90,2,1,0,0,1 // 2x Old_Card_Album +IG_Super_Pet_Egg8,617,150,5,1,0,0,1 // 5x Old_Violet_Box +IG_Super_Pet_Egg8,607,200,15,1,0,0,1 // 15x Yggdrasilberry +IG_Super_Pet_Egg8,608,230,30,1,0,0,1 // 30x Seed_Of_Yggdrasil +IG_Super_Pet_Egg8,13525,217,10,1,0,0,1 // 10x Zeny_Scroll_Box + +IG_Pet_Egg_Scroll_E,683,350,10,1,0,0,1 // 10x Exorcize_Herb +IG_Pet_Egg_Scroll_E,10007,130,1,1,0,0,1 // 1x Silk_Ribbon +IG_Pet_Egg_Scroll_E,682,350,10,1,0,0,1 // 10x Realgar_Wine +IG_Pet_Egg_Scroll_E,7767,70,10,1,0,0,1 // 10x Chung_E_Cake +IG_Pet_Egg_Scroll_E,7766,70,10,1,0,0,1 // 10x Bok_Choy +IG_Pet_Egg_Scroll_E,7774,10,1,1,0,0,1 // 1x Chung_E_Ticket +IG_Pet_Egg_Scroll_E,7775,10,1,1,0,0,1 // 1x Spring_Rabbit_Ticket +IG_Pet_Egg_Scroll_E,13525,10,1,1,0,0,1 // 1x Zeny_Scroll_Box + +IG_Ramen_Hat_Box,5293,0,1,0,0,20160,1 // 1x Ramen_Hat + +IG_Mysterious_Travel_Sack1,5209,1,1,1,0,0,1 // 1x Yellow_Baseball_Cap +IG_Mysterious_Travel_Sack1,5256,5,1,1,0,0,1 // 1x Valkyrie_Feather_Band +IG_Mysterious_Travel_Sack1,5257,5,1,1,0,0,1 // 1x Soulless_Wing +IG_Mysterious_Travel_Sack1,5258,1,1,1,0,0,1 // 1x Afro_Wig +IG_Mysterious_Travel_Sack1,5273,1,1,1,0,0,1 // 1x Happy_Wig +IG_Mysterious_Travel_Sack1,5274,1,1,1,0,0,1 // 1x Shiny_Wig +IG_Mysterious_Travel_Sack1,2682,2,1,1,0,0,1 // 1x Ring_Of_Water +IG_Mysterious_Travel_Sack1,2683,2,1,1,0,0,1 // 1x Ring_Of_Fire +IG_Mysterious_Travel_Sack1,14527,2,1,1,0,0,1 // 1x Dun_Tele_Scroll1 +IG_Mysterious_Travel_Sack1,13553,5,1,1,0,0,1 // 1x Dun_Tele_Scroll1_Box +IG_Mysterious_Travel_Sack1,13741,5,1,1,0,0,1 // 1x Shadow_Armor_S_Box10 +IG_Mysterious_Travel_Sack1,13744,5,1,1,0,0,1 // 1x Holy_Armor_S_Box10 +IG_Mysterious_Travel_Sack1,13712,200,1,1,0,0,1 // 1x Small_Life_Potion_Box30 +IG_Mysterious_Travel_Sack1,13715,200,1,1,0,0,1 // 1x Med_Life_Potion_Box30 +IG_Mysterious_Travel_Sack1,13747,200,1,1,0,0,1 // 1x S_Def_Potion_Box30 +IG_Mysterious_Travel_Sack1,13753,80,1,1,0,0,1 // 1x S_Mdef_Potion_Box30 +IG_Mysterious_Travel_Sack1,13710,80,1,1,0,0,1 // 1x Max_Weight_Up_Box +IG_Mysterious_Travel_Sack1,13720,205,1,1,0,0,1 // 1x Regeneration_Box10 + +IG_Mysterious_Travel_Sack2,5264,10,1,1,0,0,1 // 1x Aussie_Flag_Hat +IG_Mysterious_Travel_Sack2,5243,20,1,1,0,0,1 // 1x Chullos +IG_Mysterious_Travel_Sack2,5263,5,1,1,0,0,1 // 1x Ati_Atihan_Hat +IG_Mysterious_Travel_Sack2,5225,5,1,1,0,0,1 // 1x Marcher_Hat +IG_Mysterious_Travel_Sack2,5275,100,1,1,0,0,1 // 1x Marvelous_Wig +IG_Mysterious_Travel_Sack2,5276,100,1,1,0,0,1 // 1x Fantastic_Wig +IG_Mysterious_Travel_Sack2,2684,20,1,1,0,0,1 // 1x Ring_Of_Wind +IG_Mysterious_Travel_Sack2,2685,20,1,1,0,0,1 // 1x Ring_Of_Earth +IG_Mysterious_Travel_Sack2,14527,10,1,1,0,0,1 // 1x Dun_Tele_Scroll1 +IG_Mysterious_Travel_Sack2,13553,50,1,1,0,0,1 // 1x Dun_Tele_Scroll1_Box +IG_Mysterious_Travel_Sack2,13741,50,1,1,0,0,1 // 1x Shadow_Armor_S_Box10 +IG_Mysterious_Travel_Sack2,13744,50,1,1,0,0,1 // 1x Holy_Armor_S_Box10 +IG_Mysterious_Travel_Sack2,13712,100,1,1,0,0,1 // 1x Small_Life_Potion_Box30 +IG_Mysterious_Travel_Sack2,13715,100,1,1,0,0,1 // 1x Med_Life_Potion_Box30 +IG_Mysterious_Travel_Sack2,13747,100,1,1,0,0,1 // 1x S_Def_Potion_Box30 +IG_Mysterious_Travel_Sack2,13753,80,1,1,0,0,1 // 1x S_Mdef_Potion_Box30 +IG_Mysterious_Travel_Sack2,13710,80,1,1,0,0,1 // 1x Max_Weight_Up_Box +IG_Mysterious_Travel_Sack2,13720,100,1,1,0,0,1 // 1x Regeneration_Box10 + +IG_Mysterious_Travel_Sack3,5291,20,1,1,0,0,1 // 1x Kettle_Hat +IG_Mysterious_Travel_Sack3,5254,10,1,1,0,0,1 // 1x Deviling_Hat +IG_Mysterious_Travel_Sack3,5286,10,1,1,0,0,1 // 1x Pecopeco_Hairband +IG_Mysterious_Travel_Sack3,5283,50,1,1,0,0,1 // 1x Chick_Hat +IG_Mysterious_Travel_Sack3,5287,30,1,1,0,0,1 // 1x Vacation_Hat +IG_Mysterious_Travel_Sack3,5191,60,1,1,0,0,1 // 1x Ribbon_Black +IG_Mysterious_Travel_Sack3,5192,50,1,1,0,0,1 // 1x Ribbon_Yellow +IG_Mysterious_Travel_Sack3,5193,50,1,1,0,0,1 // 1x Ribbon_Green +IG_Mysterious_Travel_Sack3,14527,10,1,1,0,0,1 // 1x Dun_Tele_Scroll1 +IG_Mysterious_Travel_Sack3,13553,50,1,1,0,0,1 // 1x Dun_Tele_Scroll1_Box +IG_Mysterious_Travel_Sack3,13741,50,1,1,0,0,1 // 1x Shadow_Armor_S_Box10 +IG_Mysterious_Travel_Sack3,13744,50,1,1,0,0,1 // 1x Holy_Armor_S_Box10 +IG_Mysterious_Travel_Sack3,13712,100,1,1,0,0,1 // 1x Small_Life_Potion_Box30 +IG_Mysterious_Travel_Sack3,13715,100,1,1,0,0,1 // 1x Med_Life_Potion_Box30 +IG_Mysterious_Travel_Sack3,13747,100,1,1,0,0,1 // 1x S_Def_Potion_Box30 +IG_Mysterious_Travel_Sack3,13753,80,1,1,0,0,1 // 1x S_Mdef_Potion_Box30 +IG_Mysterious_Travel_Sack3,13710,80,1,1,0,0,1 // 1x Max_Weight_Up_Box +IG_Mysterious_Travel_Sack3,13720,100,1,1,0,0,1 // 1x Regeneration_Box10 + +IG_Magician_Card_Box,4327,0,1,0,0,0,1 // 1x Blood_Butterfly_Card +IG_Magician_Card_Box,4309,0,1,0,0,0,1 // 1x Parasite_Card +IG_Magician_Card_Box,4325,0,1,0,0,0,1 // 1x Harpy_Card +IG_Magician_Card_Box,4208,0,1,0,0,0,1 // 1x Miyabi_Ningyo_Card +IG_Magician_Card_Box,4258,0,1,0,0,0,1 // 1x Wicked_Nymph_Card +IG_Magician_Card_Box,4191,0,1,0,0,0,1 // 1x Loli_Ruri_Card + +IG_Acolyte_Card_Box,4185,0,1,0,0,0,1 // 1x Rideword_Card +IG_Acolyte_Card_Box,4312,0,1,0,0,0,1 // 1x Fur_Seal_Card +IG_Acolyte_Card_Box,4217,0,1,0,0,0,1 // 1x Live_Peach_Tree_Card +IG_Acolyte_Card_Box,4280,0,1,0,0,0,1 // 1x Geographer_Card +IG_Acolyte_Card_Box,4293,0,1,0,0,0,1 // 1x Cookie_Card + +IG_Archer_Card_Box,4297,0,1,0,0,0,1 // 1x Cruiser_Card +IG_Archer_Card_Box,4234,0,1,0,0,0,1 // 1x Anolian_Card +IG_Archer_Card_Box,4199,0,1,0,0,0,1 // 1x Merman_Card +IG_Archer_Card_Box,4178,0,1,0,0,0,1 // 1x Dragon_Tail_Card +IG_Archer_Card_Box,4252,0,1,0,0,0,1 // 1x Alligator_Card + +IG_Swordman_Card_Box,4319,0,1,0,0,0,1 // 1x Freezer_Card +IG_Swordman_Card_Box,4331,0,1,0,0,0,1 // 1x Heater_Card +IG_Swordman_Card_Box,4220,0,1,0,0,0,1 // 1x Solider_Card +IG_Swordman_Card_Box,4311,0,1,0,0,0,1 // 1x Permeter_Card +IG_Swordman_Card_Box,4246,0,1,0,0,0,1 // 1x Assulter_Card + +IG_Thief_Card_Box,4230,0,1,0,0,0,1 // 1x Shinobi_Card +IG_Thief_Card_Box,4210,0,1,0,0,0,1 // 1x Wander_Man_Card +IG_Thief_Card_Box,4257,0,1,0,0,0,1 // 1x Wild_Rose_Card +IG_Thief_Card_Box,4172,0,1,0,0,0,1 // 1x The_Paper_Card +IG_Thief_Card_Box,4272,0,1,0,0,0,1 // 1x Dancing_Dragon_Card + +IG_Merchant_Card_Box,4206,0,1,0,0,0,1 // 1x Mystcase_Card +IG_Merchant_Card_Box,4281,0,1,0,0,0,1 // 1x Zipper_Bear_Card +IG_Merchant_Card_Box,4186,0,1,0,0,0,1 // 1x Raggler_Card +IG_Merchant_Card_Box,4233,0,1,0,0,0,1 // 1x Baby_Leopard_Card +IG_Merchant_Card_Box,4321,0,1,0,0,0,1 // 1x Hylozoist_Card + +IG_Hard_Core_Set_Box,12208,0,10,0,0,0,1 // 10x Battle_Manual +IG_Hard_Core_Set_Box,12210,0,10,0,0,0,1 // 10x Bubble_Gum +IG_Hard_Core_Set_Box,12209,0,10,0,0,0,1 // 10x Insurance + +IG_Kitty_Set_Box,5230,0,1,0,0,0,1 // 1x White_Drooping_Kitty +IG_Kitty_Set_Box,5233,0,1,0,0,0,1 // 1x Blue_Drooping_Kitty +IG_Kitty_Set_Box,5232,0,1,0,0,0,1 // 1x Pink_Drooping_Kitty +IG_Kitty_Set_Box,5234,0,1,0,0,0,1 // 1x Yellow_Drooping_Kitty +IG_Kitty_Set_Box,5231,0,1,0,0,0,1 // 1x Gray_Drooping_Kitty + +IG_Soft_Core_Set_Box,12208,0,5,0,0,0,1 // 5x Battle_Manual +IG_Soft_Core_Set_Box,12210,0,5,0,0,0,1 // 5x Bubble_Gum +IG_Soft_Core_Set_Box,12209,0,5,0,0,0,1 // 5x Insurance + +IG_Deviruchi_Set_Box,5227,0,1,0,0,0,1 // 1x Red_Deviruchi_Cap +IG_Deviruchi_Set_Box,5228,0,1,0,0,0,1 // 1x White_Deviruchi_Cap +IG_Deviruchi_Set_Box,5229,0,1,0,0,0,1 // 1x Gray_Deviruchi_Cap + +IG_MVP_Hunt_Box,12214,0,3,0,0,0,1 // 3x Convex_Mirror +IG_MVP_Hunt_Box,7621,0,1,0,0,0,1 // 1x Token_Of_Siegfried +IG_MVP_Hunt_Box,12210,0,1,0,0,0,1 // 1x Bubble_Gum +IG_MVP_Hunt_Box,12221,0,1,0,0,0,1 // 1x Megaphone_ + +IG_Brewing_Box,12205,0,10,0,0,0,1 // 10x Dex_Dish10_ +IG_Brewing_Box,12204,0,10,0,0,0,1 // 10x Int_Dish10_ +IG_Brewing_Box,12206,0,10,0,0,0,1 // 10x Luk_Dish10_ + +IG_Xmas_Pet_Scroll,5380,1,1,1,0,0,1 // 1x Fish_Head_Hat +IG_Xmas_Pet_Scroll,5381,1,1,1,0,0,1 // 1x Santa_Poring_Hat +IG_Xmas_Pet_Scroll,5382,1,1,1,0,0,1 // 1x Bell_Ribbon +IG_Xmas_Pet_Scroll,5074,5,1,1,0,0,1 // 1x Ear_Of_Angel's_Wing +IG_Xmas_Pet_Scroll,5068,5,1,1,0,0,1 // 1x Ear_Of_Devil's_Wing +IG_Xmas_Pet_Scroll,5210,5,1,1,0,0,1 // 1x Flying_Angel +IG_Xmas_Pet_Scroll,5286,2,1,1,0,0,1 // 1x Pecopeco_Hairband +IG_Xmas_Pet_Scroll,2277,20,1,1,0,0,1 // 1x Nurse_Cap +IG_Xmas_Pet_Scroll,2269,20,1,1,0,0,1 // 1x Centimental_Flower +IG_Xmas_Pet_Scroll,5077,80,1,1,0,0,1 // 1x Tulip_Hairpin +IG_Xmas_Pet_Scroll,617,100,3,1,0,0,1 // 3x Old_Violet_Box +IG_Xmas_Pet_Scroll,607,110,30,1,0,0,1 // 30x Yggdrasilberry +IG_Xmas_Pet_Scroll,610,100,30,1,0,0,1 // 30x Leaf_Of_Yggdrasil +IG_Xmas_Pet_Scroll,730,100,20,1,0,0,1 // 20x Crystal_Jewel +IG_Xmas_Pet_Scroll,732,150,10,1,0,0,1 // 10x Crystal_Jewel__ +IG_Xmas_Pet_Scroll,14508,150,10,1,0,0,1 // 10x Zeny_Scroll +IG_Xmas_Pet_Scroll,7776,50,5,1,0,0,1 // 5x Max_Weight_Up_Scroll + +IG_Lucky_Scroll08,12211,220,05,0,0,0,1 // 05x Kafra_Card +IG_Lucky_Scroll08,12208,210,5,0,0,0,1 // 5x Battle_Manual +IG_Lucky_Scroll08,12210,210,5,0,0,0,1 // 5x Bubble_Gum +IG_Lucky_Scroll08,12922,100,05,0,0,0,1 // 05x Token_Of_Siegfried_Box +IG_Lucky_Scroll08,12213,2,0,0,0,0,1 // 0x Neuralizer +IG_Lucky_Scroll08,5226,1,0,0,0,0,1 // 0x Mini_Propeller_ +IG_Lucky_Scroll08,12999,5,0,0,0,0,1 // 0x Branch_Of_Dead_Tree_Box +IG_Lucky_Scroll08,4168,1,0,0,0,0,1 // 0x Dark_Lord_Card +IG_Lucky_Scroll08,4169,1,0,0,0,0,1 // 0x Dark_Illusion_Card +IG_Lucky_Scroll08,5215,2,0,0,0,0,1 // 0x Angelic_Chain_ +IG_Lucky_Scroll08,5216,3,0,0,0,0,1 // 0x Satanic_Chain_ +IG_Lucky_Scroll08,5217,2,0,0,0,0,1 // 0x Magestic_Goat_TW +IG_Lucky_Scroll08,5218,3,0,0,0,0,1 // 0x Bunny_Band_ +IG_Lucky_Scroll08,5219,5,0,0,0,0,1 // 0x Drooping_Kitty_ +IG_Lucky_Scroll08,5077,65,0,0,0,0,1 // 0x Tulip_Hairpin +IG_Lucky_Scroll08,12901,60,0,0,0,0,1 // 0x Insurance_Package +IG_Lucky_Scroll08,610,110,15,0,0,0,1 // 15x Leaf_Of_Yggdrasil + +IG_Br_SwordPackage,2317,0,1,0,0,0,1 // 1x Plate_Armor_ +IG_Br_SwordPackage,2106,0,1,0,0,0,1 // 1x Shield_ +IG_Br_SwordPackage,2406,0,1,0,0,0,1 // 1x Boots_ +IG_Br_SwordPackage,2506,0,1,0,0,0,1 // 1x Manteau_ +IG_Br_SwordPackage,4003,0,1,0,0,0,1 // 1x Pupa_Card +IG_Br_SwordPackage,4133,0,1,0,0,0,1 // 1x Daydric_Card +IG_Br_SwordPackage,2607,0,1,0,0,0,1 // 1x Clip +IG_Br_SwordPackage,2607,0,1,0,0,0,1 // 1x Clip +IG_Br_SwordPackage,2229,0,1,0,0,0,1 // 1x Helm_ +IG_Br_SwordPackage,2266,0,1,0,0,0,1 // 1x Iron_Cane + +IG_Br_MagePackage,2322,0,1,0,0,0,1 // 1x Silk_Robe_ +IG_Br_MagePackage,2102,0,1,0,0,0,1 // 1x Guard_ +IG_Br_MagePackage,2404,0,1,0,0,0,1 // 1x Shoes_ +IG_Br_MagePackage,2504,0,1,0,0,0,1 // 1x Muffler_ +IG_Br_MagePackage,4003,0,1,0,0,0,1 // 1x Pupa_Card +IG_Br_MagePackage,4077,0,1,0,0,0,1 // 1x Phen_Card +IG_Br_MagePackage,2607,0,1,0,0,0,1 // 1x Clip +IG_Br_MagePackage,2607,0,1,0,0,0,1 // 1x Clip +IG_Br_MagePackage,5027,0,1,0,0,0,1 // 1x Wizardry_Hat + +IG_Br_AcolPackage,2326,0,1,0,0,0,1 // 1x Saint_Robe_ +IG_Br_AcolPackage,2104,0,1,0,0,0,1 // 1x Buckler_ +IG_Br_AcolPackage,2404,0,1,0,0,0,1 // 1x Shoes_ +IG_Br_AcolPackage,2504,0,1,0,0,0,1 // 1x Muffler_ +IG_Br_AcolPackage,4003,0,1,0,0,0,1 // 1x Pupa_Card +IG_Br_AcolPackage,4100,0,1,0,0,0,1 // 1x Sohee_Card +IG_Br_AcolPackage,2607,0,1,0,0,0,1 // 1x Clip +IG_Br_AcolPackage,2607,0,1,0,0,0,1 // 1x Clip +IG_Br_AcolPackage,2217,0,1,0,0,0,1 // 1x Biretta_ + +IG_Br_ArcherPackage,2331,0,1,0,0,0,1 // 1x Tights_ +IG_Br_ArcherPackage,1716,0,1,0,0,0,1 // 1x Kakkung_ +IG_Br_ArcherPackage,2406,0,1,0,0,0,1 // 1x Boots_ +IG_Br_ArcherPackage,2504,0,1,0,0,0,1 // 1x Muffler_ +IG_Br_ArcherPackage,4064,0,1,0,0,0,1 // 1x Zerom_Card +IG_Br_ArcherPackage,4102,0,1,0,0,0,1 // 1x Whisper_Card +IG_Br_ArcherPackage,2607,0,1,0,0,0,1 // 1x Clip +IG_Br_ArcherPackage,2607,0,1,0,0,0,1 // 1x Clip +IG_Br_ArcherPackage,2285,0,1,0,0,0,1 // 1x Apple_Of_Archer + +IG_Br_MerPackage,2315,0,1,0,0,0,1 // 1x Chain_Mail_ +IG_Br_MerPackage,2104,0,1,0,0,0,1 // 1x Buckler_ +IG_Br_MerPackage,2406,0,1,0,0,0,1 // 1x Boots_ +IG_Br_MerPackage,2506,0,1,0,0,0,1 // 1x Manteau_ +IG_Br_MerPackage,4003,0,1,0,0,0,1 // 1x Pupa_Card +IG_Br_MerPackage,4133,0,1,0,0,0,1 // 1x Daydric_Card +IG_Br_MerPackage,2607,0,1,0,0,0,1 // 1x Clip +IG_Br_MerPackage,2607,0,1,0,0,0,1 // 1x Clip +IG_Br_MerPackage,5021,0,1,0,0,0,1 // 1x Bankruptcy_Of_Heart + +IG_Br_ThiefPackage,2336,0,1,0,0,0,1 // 1x Thief_Clothes_ +IG_Br_ThiefPackage,2104,0,1,0,0,0,1 // 1x Buckler_ +IG_Br_ThiefPackage,2406,0,1,0,0,0,1 // 1x Boots_ +IG_Br_ThiefPackage,2506,0,1,0,0,0,1 // 1x Manteau_ +IG_Br_ThiefPackage,4097,0,1,0,0,0,1 // 1x Matyr_Card +IG_Br_ThiefPackage,4102,0,1,0,0,0,1 // 1x Whisper_Card +IG_Br_ThiefPackage,2607,0,1,0,0,0,1 // 1x Clip +IG_Br_ThiefPackage,2607,0,1,0,0,0,1 // 1x Clip +IG_Br_ThiefPackage,2274,0,1,0,0,0,1 // 1x Ghost_Bandana + +IG_Acidbomb_10_Box,7135,0,10,0,0,0,1 // 10x Fire_Bottle +IG_Acidbomb_10_Box,7136,0,10,0,0,0,1 // 10x Acid_Bottle + +IG_Basic_Siege_Supply_Box,11503,0,25,0,0,0,1 // 25x Siege_White_Potion +IG_Basic_Siege_Supply_Box,11504,0,10,0,0,0,1 // 10x Siege_Blue_Potion + +IG_Adv_Siege_Supply_Box,11503,0,50,0,0,0,1 // 50x Siege_White_Potion +IG_Adv_Siege_Supply_Box,11504,0,20,0,0,0,1 // 20x Siege_Blue_Potion + +IG_Elite_Siege_Supply_Box,11503,0,100,0,0,0,1 // 100x Siege_White_Potion +IG_Elite_Siege_Supply_Box,11504,0,50,0,0,0,1 // 50x Siege_Blue_Potion + +IG_Sakura_Scroll,2254,2,1,1,0,0,1 // 1x Angelic_Chain +IG_Sakura_Scroll,2255,2,1,1,0,0,1 // 1x Satanic_Chain +IG_Sakura_Scroll,2257,2,1,1,0,0,1 // 1x Snowy_Horn +IG_Sakura_Scroll,2259,1,1,1,0,0,1 // 1x Mini_Propeller +IG_Sakura_Scroll,4144,1,1,1,0,0,1 // 1x Osiris_Card +IG_Sakura_Scroll,4121,1,1,1,0,0,1 // 1x Phreeoni_Card +IG_Sakura_Scroll,2298,130,1,1,0,0,1 // 1x Green_Feeler +IG_Sakura_Scroll,5094,2,1,1,0,0,1 // 1x Orc_Hero_Helm +IG_Sakura_Scroll,12208,170,10,1,0,0,1 // 10x Battle_Manual +IG_Sakura_Scroll,12209,160,10,1,0,0,1 // 10x Insurance +IG_Sakura_Scroll,12210,160,10,1,0,0,1 // 10x Bubble_Gum +IG_Sakura_Scroll,12211,190,15,1,0,0,1 // 15x Kafra_Card +IG_Sakura_Scroll,608,150,50,1,0,0,1 // 50x Seed_Of_Yggdrasil +IG_Sakura_Scroll,7074,25,1,1,0,0,1 // 1x Iron_Glove +IG_Sakura_Scroll,5143,2,1,1,0,0,1 // 1x Kabuki_Mask +IG_Sakura_Scroll,5117,2,1,1,0,0,1 // 1x Mistic_Rose + +IG_Beholder_Ring_Box,2753,0,1,0,0,10080,1 // 1x Beholder_Ring + +IG_Hallow_Ring_Box,2754,0,1,0,0,10080,1 // 1x Hallow_Ring + +IG_Clamorous_Ring_Box,2755,0,1,0,0,10080,1 // 1x Clamorous_Ring + +IG_Chemical_Ring_Box,2756,0,1,0,0,10080,1 // 1x Chemical_Ring + +IG_Insecticide_Ring_Box,2757,0,1,0,0,10080,1 // 1x Insecticide_Ring + +IG_Fisher_Ring_Box,2758,0,1,0,0,10080,1 // 1x Fisher_Ring + +IG_Decussate_Ring_Box,2759,0,1,0,0,10080,1 // 1x Decussate_Ring + +IG_Bloody_Ring_Box,2760,0,1,0,0,10080,1 // 1x Bloody_Ring + +IG_Satanic_Ring_Box,2761,0,1,0,0,10080,1 // 1x Satanic_Ring + +IG_Dragoon_Ring_Box,2762,0,1,0,0,10080,1 // 1x Dragoon_Ring + +IG_Angel_Scroll,2254,5,1,1,0,0,1 // 1x Angelic_Chain +IG_Angel_Scroll,2358,100,1,1,0,0,1 // 1x Dress_Of_Angel +IG_Angel_Scroll,5074,100,1,1,0,0,1 // 1x Ear_Of_Angel's_Wing +IG_Angel_Scroll,5125,30,1,1,0,0,1 // 1x Kiss_Of_Angel +IG_Angel_Scroll,5132,50,1,1,0,0,1 // 1x Angeling_Hat +IG_Angel_Scroll,5153,130,1,1,0,0,1 // 1x Angeling_Hairpin +IG_Angel_Scroll,5207,110,1,1,0,0,1 // 1x Gold_Spirit_Chain +IG_Angel_Scroll,4054,30,1,1,0,0,1 // 1x Angeling_Card +IG_Angel_Scroll,12913,420,1,1,0,0,1 // 1x Blessing_10_Scroll_Box +IG_Angel_Scroll,4241,20,1,1,0,0,1 // 1x Archangeling_Card + +IG_Devil_Scroll,2255,4,1,1,0,0,1 // 1x Satanic_Chain +IG_Devil_Scroll,642,150,5,1,0,0,1 // 5x Book_Of_Devil +IG_Devil_Scroll,5068,100,1,1,0,0,1 // 1x Ear_Of_Devil's_Wing +IG_Devil_Scroll,1039,125,1,1,0,0,1 // 1x Petite_DiablOfs_Wing +IG_Devil_Scroll,12925,180,1,1,0,0,1 // 1x Pet_Egg_Scroll1 +IG_Devil_Scroll,4174,1,1,1,0,0,1 // 1x Deviling_Card +IG_Devil_Scroll,12923,200,1,1,0,0,1 // 1x Pet_Egg_Scroll_Box1 +IG_Devil_Scroll,5066,45,1,1,0,0,1 // 1x Horn_Of_Succubus +IG_Devil_Scroll,5072,45,1,1,0,0,1 // 1x Inccubus_Horn +IG_Devil_Scroll,13819,150,1,1,0,0,1 // 1x Diabolic_Box + +IG_Surprise_Scroll,12208,130,5,1,0,0,1 // 5x Battle_Manual +IG_Surprise_Scroll,12209,130,5,1,0,0,1 // 5x Insurance +IG_Surprise_Scroll,12210,150,10,1,0,0,1 // 10x Bubble_Gum +IG_Surprise_Scroll,12211,200,10,1,0,0,1 // 10x Kafra_Card +IG_Surprise_Scroll,12103,98,1,1,0,0,1 // 1x Bloody_Dead_Branch +IG_Surprise_Scroll,604,130,6,1,0,0,1 // 6x Branch_Of_Dead_Tree +IG_Surprise_Scroll,12709,80,10,1,0,0,1 // 10x Guyak_Candy +IG_Surprise_Scroll,12710,80,10,1,0,0,1 // 10x Guyak_Pudding +IG_Surprise_Scroll,13904,1,1,1,0,0,1 // 1x Bell_Ribbon_Box +IG_Surprise_Scroll,12213,1,1,1,0,0,1 // 1x Neuralizer + +IG_July7_Scroll,14001,0,1,0,0,0,1 // 1x Basic_Siege_Supply_Box +IG_July7_Scroll,12405,1500,10,1,0,0,1 // 10x Underripe_Yggseed +IG_July7_Scroll,12903,1500,1,1,0,0,1 // 1x Str_Dish_Box +IG_July7_Scroll,12902,1550,1,1,0,0,1 // 1x Bubble_Gum_Box +IG_July7_Scroll,12900,1500,1,1,0,0,1 // 1x Battle_Manual_Box +IG_July7_Scroll,12912,1500,1,1,0,0,1 // 1x Convex_Mirror_Box +IG_July7_Scroll,12801,400,1,1,0,0,1 // 1x Eddga_Scroll +IG_July7_Scroll,12922,1500,1,1,0,0,1 // 1x Token_Of_Siegfried_Box +IG_July7_Scroll,18700,150,1,1,1,0,1 // 1x Rabbit_Ribbon +IG_July7_Scroll,19518,56,1,1,1,0,1 // 1x Rainbow +IG_July7_Scroll,4549,3,1,1,1,0,1 // 1x Upd_Maya_Puple_Card +IG_July7_Scroll,18748,150,1,1,1,0,1 // 1x Gold_Ingot_Poring_Hat +IG_July7_Scroll,4145,1,1,1,1,0,1 // 1x Berzebub_Card +IG_July7_Scroll,18740,70,1,1,1,0,1 // 1x Hair_Of_The_Strong +IG_July7_Scroll,6228,20,1,1,1,0,1 // 1x Guarantee_Weapon_9Up +IG_July7_Scroll,6232,20,1,1,1,0,1 // 1x Guarantee_Armor_9Up +IG_July7_Scroll,18509,5,1,1,1,0,1 // 1x RWC2010_Indonesia +IG_July7_Scroll,18625,75,1,1,1,0,1 // 1x Rocket_Helm_RWC + +IG_Bacsojin_Scroll,12188,150,10,1,0,0,1 // 10x Magical_Moon_Cake +IG_Bacsojin_Scroll,12190,150,10,1,0,0,1 // 10x Moon_Cake +IG_Bacsojin_Scroll,12191,150,10,1,0,0,1 // 10x Special_Moon_Cake +IG_Bacsojin_Scroll,5343,5,1,1,0,0,1 // 1x Tayelin_Doll_Hat +IG_Bacsojin_Scroll,5344,5,1,1,0,0,1 // 1x Binit_Doll_Hat +IG_Bacsojin_Scroll,5345,5,1,1,0,0,1 // 1x Debril_Doll_Hat +IG_Bacsojin_Scroll,12913,180,1,1,0,0,1 // 1x Blessing_10_Scroll_Box +IG_Bacsojin_Scroll,5139,25,1,1,0,0,1 // 1x Hibiscus +IG_Bacsojin_Scroll,5140,30,1,1,0,0,1 // 1x Charming_Ribbon +IG_Bacsojin_Scroll,12259,1,1,1,0,0,1 // 1x Miracle_Medicine +IG_Bacsojin_Scroll,2415,14,1,1,0,0,1 // 1x Slipper +IG_Bacsojin_Scroll,12209,135,5,1,0,0,1 // 5x Insurance +IG_Bacsojin_Scroll,12710,150,5,1,0,0,1 // 5x Guyak_Pudding + +IG_Animal_Scroll,5098,5,1,1,0,0,1 // 1x Tiger_Mask +IG_Animal_Scroll,5177,5,1,1,0,0,1 // 1x Guardian_Lion_Mask +IG_Animal_Scroll,12100,185,5,1,0,0,1 // 5x Luk_Dish10 +IG_Animal_Scroll,5030,5,1,1,0,0,1 // 1x Panda_Cap +IG_Animal_Scroll,5059,5,1,1,0,0,1 // 1x Brown_Bear_Cap +IG_Animal_Scroll,5033,5,1,1,0,0,1 // 1x Smokie_Hat +IG_Animal_Scroll,12073,185,5,1,0,0,1 // 5x Str_Dish08 +IG_Animal_Scroll,5084,5,1,1,0,0,1 // 1x Lazy_Raccoon +IG_Animal_Scroll,5198,5,1,1,0,0,1 // 1x Drooping_Bunny +IG_Animal_Scroll,12048,185,5,1,0,0,1 // 5x Int_Dish03 +IG_Animal_Scroll,5259,10,1,1,0,0,1 // 1x Elephant_Hat_ +IG_Animal_Scroll,5078,10,1,1,0,0,1 // 1x Sea_Otter_Cap +IG_Animal_Scroll,12084,185,5,1,0,0,1 // 5x Vit_Dish09 +IG_Animal_Scroll,5111,10,1,1,0,0,1 // 1x Galapago_Cap +IG_Animal_Scroll,5217,5,1,1,0,0,1 // 1x Magestic_Goat_TW +IG_Animal_Scroll,5222,5,1,1,0,0,1 // 1x Fish_On_Head_ +IG_Animal_Scroll,12086,185,5,1,0,0,1 // 5x Agi_Dish06 + +IG_Heart_Scroll,2701,5,1,1,0,0,1 // 1x Orleans_Glove +IG_Heart_Scroll,2528,5,1,1,0,0,1 // 1x Wool_Scarf +IG_Heart_Scroll,5288,15,1,1,0,0,1 // 1x Red_Glasses +IG_Heart_Scroll,12073,200,7,1,0,0,1 // 7x Str_Dish08 +IG_Heart_Scroll,12085,200,5,1,0,0,1 // 5x Vit_Dish10 +IG_Heart_Scroll,2677,1,1,1,0,0,1 // 1x Spiritual_Ring +IG_Heart_Scroll,12089,200,5,1,0,0,1 // 5x Agi_Dish09 +IG_Heart_Scroll,2664,40,1,1,0,0,1 // 1x Scarf_Belt +IG_Heart_Scroll,2680,5,1,1,0,0,1 // 1x Lesser_Elemental_Ring +IG_Heart_Scroll,12097,200,8,1,0,0,1 // 8x Luk_Dish07 +IG_Heart_Scroll,5130,20,1,1,0,0,1 // 1x Lion_Mask +IG_Heart_Scroll,5076,20,1,1,0,0,1 // 1x Fur_Hat +IG_Heart_Scroll,5123,20,1,1,0,0,1 // 1x Ulle_Cap +IG_Heart_Scroll,5256,4,1,1,0,0,1 // 1x Valkyrie_Feather_Band +IG_Heart_Scroll,5115,20,1,1,0,0,1 // 1x Winter_Hat +IG_Heart_Scroll,2283,45,1,1,0,0,1 // 1x Ear_Mufs + +IG_New_Year_Scroll,12903,1500,1,1,0,0,0 // 1x Str_Dish_Box +IG_New_Year_Scroll,12904,1500,1,1,0,0,0 // 1x Agi_Dish_Box +IG_New_Year_Scroll,12905,1500,1,1,0,0,0 // 1x Int_Dish_Box +IG_New_Year_Scroll,12906,1500,1,1,0,0,0 // 1x Dex_Dish_Box +IG_New_Year_Scroll,12907,1500,1,1,0,0,0 // 1x Luk_Dish_Box +IG_New_Year_Scroll,12908,1500,1,1,0,0,0 // 1x Vit_Dish_Box +IG_New_Year_Scroll,14232,950,1,1,0,0,0 // 1x Yggdrasilberry_Box_ +IG_New_Year_Scroll,17071,50,1,1,0,0,0 // 1x Superb_Fish_Box50 +IG_New_Year_Scroll,4145,1,1,2,1,0,0 // 1x Berzebub_Card +IG_New_Year_Scroll,4480,1,1,2,1,0,0 // 1x Sealed_Kiel_Card +IG_New_Year_Scroll,4489,3,1,2,1,0,0 // 1x Sealed_Pharaoh_Card +IG_New_Year_Scroll,2589,10,1,2,1,0,1 // 1x Fallen_Angel_Wing +IG_New_Year_Scroll,18603,5,1,2,1,0,1 // 1x Black_Devil_Mask_ +IG_New_Year_Scroll,5209,50,1,2,1,0,1 // 1x Yellow_Baseball_Cap +IG_New_Year_Scroll,5507,30,1,2,1,0,1 // 1x Pink_Pajamas_Hat +IG_New_Year_Scroll,2345,50,1,2,1,0,1 // 1x Flame_Sprits_Armor_ +IG_New_Year_Scroll,5783,500,1,2,1,0,1 // 1x YellowBunny_Hairband +IG_New_Year_Scroll,13710,200,1,2,1,0,0 // 1x Max_Weight_Up_Box +IG_New_Year_Scroll,12103,300,1,2,1,0,0 // 1x Bloody_Dead_Branch +IG_New_Year_Scroll,6024,1250,1,2,0,0,0 // 1x 17Carat_Dia +IG_New_Year_Scroll,12710,2000,5,2,0,0,0 // 5x Guyak_Pudding +IG_New_Year_Scroll,12406,2000,10,2,0,0,0 // 10x Psychic_ArmorS +IG_New_Year_Scroll,12642,2000,1,2,0,0,0 // 1x Fruit_Of_Mastela_Box2 +IG_New_Year_Scroll,12533,1600,1,2,0,0,0 // 1x Blue_Herb_Box2 + +IG_Valentine_Pledge_Box,5817,0,1,0,0,8760,1 // 1x Valentine_Pledge + +IG_Ox_Tail_Scroll,14232,1420,1,1,0,0,1 // 1x Yggdrasilberry_Box_ +IG_Ox_Tail_Scroll,12907,1420,1,1,0,0,1 // 1x Luk_Dish_Box +IG_Ox_Tail_Scroll,12909,1420,1,1,0,0,1 // 1x Kafra_Card_Box +IG_Ox_Tail_Scroll,12922,1420,1,1,0,0,1 // 1x Token_Of_Siegfried_Box +IG_Ox_Tail_Scroll,12901,1420,1,1,0,0,1 // 1x Insurance_Package +IG_Ox_Tail_Scroll,12798,300,5,1,0,0,1 // 5x Zealotus_Scroll +IG_Ox_Tail_Scroll,12916,1400,1,1,0,0,1 // 1x Assumptio_5_Scroll_Box +IG_Ox_Tail_Scroll,13710,500,1,1,0,0,1 // 1x Max_Weight_Up_Box +IG_Ox_Tail_Scroll,16186,150,1,1,1,0,1 // 1x B_Dragon_Hat_Box +IG_Ox_Tail_Scroll,19520,87,1,1,1,0,1 // 1x Rain_Cloud +IG_Ox_Tail_Scroll,18748,3,1,1,1,0,1 // 1x Gold_Ingot_Poring_Hat +IG_Ox_Tail_Scroll,18707,150,1,1,1,0,1 // 1x Maneater_Flower_Hat +IG_Ox_Tail_Scroll,18746,100,1,1,1,0,1 // 1x Chilly_Breath +IG_Ox_Tail_Scroll,18745,100,1,1,1,0,1 // 1x Choco_Stick_In_Mouth +IG_Ox_Tail_Scroll,18747,5,1,1,1,0,1 // 1x Eyes_Of_Ifrit +IG_Ox_Tail_Scroll,18749,100,1,1,1,0,1 // 1x Majoruros_Horn +IG_Ox_Tail_Scroll,4488,5,1,1,1,0,1 // 1x Sealed_D_Lord_Card + +IG_Buddah_Scroll,14600,0,3,0,0,0,0 // 3x Mental_Potion +IG_Buddah_Scroll,12902,1400,1,1,0,0,0 // 1x Bubble_Gum_Box +IG_Buddah_Scroll,12903,1400,1,1,0,0,0 // 1x Str_Dish_Box +IG_Buddah_Scroll,12919,1400,1,1,0,0,0 // 1x Megaphone_Box +IG_Buddah_Scroll,12900,1352,1,1,0,0,0,0 // 1x Battle_Manual_Box +IG_Buddah_Scroll,12922,1250,1,1,0,0,0 // 1x Token_Of_Siegfried_Box +IG_Buddah_Scroll,13741,1400,1,1,0,0,0 // 1x Shadow_Armor_S_Box10 +IG_Buddah_Scroll,12710,1400,10,1,0,0,0 // 10x Guyak_Pudding +IG_Buddah_Scroll,18750,30,1,1,1,0,0 // 1x Poker_Card_In_Mouth +IG_Buddah_Scroll,18693,100,1,1,1,0,0 // 1x Sleeping_Kitty_Cat +IG_Buddah_Scroll,18600,10,1,1,1,0,0 // 1x Cat_Ear_Beret +IG_Buddah_Scroll,6456,70,1,1,1,0,0 // 1x Guarantee_Weapon_5Up +IG_Buddah_Scroll,18694,100,1,1,1,0,0 // 1x Red_Hood +IG_Buddah_Scroll,18743,20,1,1,1,0,0 // 1x Spirit_Of_Chung_E +IG_Buddah_Scroll,6228,5,1,1,1,0,0 // 1x Guarantee_Weapon_9Up +IG_Buddah_Scroll,4499,3,1,1,1,0,0 // 1x Sealed_Samurai_Card +IG_Buddah_Scroll,20707,10,1,1,1,0,0 // 1x Kirin_Wing +IG_Buddah_Scroll,16753,50,1,1,1,0,0 // 1x Unbreak_Weap_Box + +IG_Evil_Incarnation,14234,224,1,1,0,0,1 // 1x Dead_Tree_Branch_Box2 +IG_Evil_Incarnation,12710,124,10,1,0,0,1 // 10x Guyak_Pudding +IG_Evil_Incarnation,12905,123,1,1,0,0,1 // 1x Int_Dish_Box +IG_Evil_Incarnation,12907,122,1,1,0,0,1 // 1x Luk_Dish_Box +IG_Evil_Incarnation,12908,121,1,1,0,0,1 // 1x Vit_Dish_Box +IG_Evil_Incarnation,12903,120,1,1,0,0,1 // 1x Str_Dish_Box +IG_Evil_Incarnation,5206,47,1,1,0,0,1 // 1x Romantic_White_Flower +IG_Evil_Incarnation,5056,46,1,1,0,0,1 // 1x Love_Berry +IG_Evil_Incarnation,5188,26,1,1,0,0,1 // 1x Minstrel_Hat +IG_Evil_Incarnation,5182,25,1,1,0,0,1 // 1x Puppy_Hat +IG_Evil_Incarnation,5020,10,1,1,0,0,1 // 1x Kafra_Band +IG_Evil_Incarnation,5584,9,1,1,0,0,1 // 1x Majestic_Evil_Horn +IG_Evil_Incarnation,12261,2,2,1,0,0,1 // 2x Secret_Medicine +IG_Evil_Incarnation,12259,1,1,1,0,0,1 // 1x Miracle_Medicine + +IG_F_Clover_Box_Mouth,5596,0,1,0,0,60,1 // 1x 4Leaf_Clover_In_Mouth + +IG_Mouth_Bubble_Gum_Box,5597,0,1,0,0,60,1 // 1x Bubble_Gum_In_Mouth + +IG_F_Clover_Box_Mouth2,5596,0,1,0,0,120,1 // 1x 4Leaf_Clover_In_Mouth + +IG_F_Clover_Box_Mouth4,5596,0,1,0,0,240,1 // 1x 4Leaf_Clover_In_Mouth + +IG_BGum_Box_In_Mouth2,5597,0,1,0,0,120,1 // 1x Bubble_Gum_In_Mouth + +IG_BGum_Box_In_Mouth4,5597,0,1,0,0,240,1 // 1x Bubble_Gum_In_Mouth + +IG_Tw_October_Scroll,12188,191,10,1,0,0,1 // 10x Magical_Moon_Cake +IG_Tw_October_Scroll,12328,150,10,1,0,0,1 // 10x Charm_Of_Happiness +IG_Tw_October_Scroll,12710,130,10,1,0,0,1 // 10x Guyak_Pudding +IG_Tw_October_Scroll,12907,106,1,1,0,0,1 // 1x Luk_Dish_Box +IG_Tw_October_Scroll,12908,105,1,1,0,0,1 // 1x Vit_Dish_Box +IG_Tw_October_Scroll,12903,104,1,1,0,0,1 // 1x Str_Dish_Box +IG_Tw_October_Scroll,13858,103,1,1,0,0,1 // 1x Spark_Candy_Box10 +IG_Tw_October_Scroll,5117,50,1,1,0,0,1 // 1x Mistic_Rose +IG_Tw_October_Scroll,2702,21,1,1,0,0,1 // 1x Bison_Horn +IG_Tw_October_Scroll,5367,20,1,1,0,0,1 // 1x Hyegun_Hat +IG_Tw_October_Scroll,5403,9,1,1,0,0,1 // 1x Fish_In_Mouth +IG_Tw_October_Scroll,5401,8,1,1,0,0,1 // 1x Black_Glasses +IG_Tw_October_Scroll,12246,2,1,1,0,0,1 // 1x Magic_Card_Album +IG_Tw_October_Scroll,12259,1,1,1,0,0,1 // 1x Miracle_Medicine + +IG_My_Scroll1,12900,1450,1,1,0,0,1 // 1x Battle_Manual_Box +IG_My_Scroll1,12904,1450,1,1,0,0,1 // 1x Agi_Dish_Box +IG_My_Scroll1,12919,1450,1,1,0,0,1 // 1x Megaphone_Box +IG_My_Scroll1,13858,1450,1,1,0,0,1 // 1x Spark_Candy_Box10 +IG_My_Scroll1,13721,1450,1,1,0,0,1 // 1x Dun_Tele_Scroll_Box10 +IG_My_Scroll1,13990,1406,1,1,0,0,1 // 1x Job_Manual50_Box +IG_My_Scroll1,12801,500,5,1,0,0,1 // 5x Eddga_Scroll +IG_My_Scroll1,12103,300,1,1,0,0,1 // 1x Bloody_Dead_Branch +IG_My_Scroll1,5319,50,1,1,1,0,1 // 1x Hellomother_Hat +IG_My_Scroll1,14441,120,1,1,1,0,1 // 1x King_Tiger_Doll_Hat_Box +IG_My_Scroll1,5288,50,1,1,1,0,1 // 1x Red_Glasses +IG_My_Scroll1,4538,3,1,1,1,0,1 // 1x Sealed_Bacsojin_Card +IG_My_Scroll1,18701,150,1,1,1,0,1 // 1x Ancient_Civil_Man +IG_My_Scroll1,18750,50,1,1,1,0,1 // 1x Poker_Card_In_Mouth +IG_My_Scroll1,4549,1,1,1,1,0,1 // 1x Upd_Maya_Puple_Card +IG_My_Scroll1,6635,120,1,1,1,0,1 // 1x Blacksmith_Blessing + +IG_Tw_Nov_Scroll,14508,250,10,1,0,0,1 // 10x Zeny_Scroll +IG_Tw_Nov_Scroll,12710,80,10,1,0,0,1 // 10x Guyak_Pudding +IG_Tw_Nov_Scroll,12903,80,1,1,0,0,1 // 1x Str_Dish_Box +IG_Tw_Nov_Scroll,12904,80,1,1,0,0,1 // 1x Agi_Dish_Box +IG_Tw_Nov_Scroll,12905,80,1,1,0,0,1 // 1x Int_Dish_Box +IG_Tw_Nov_Scroll,12906,80,1,1,0,0,1 // 1x Dex_Dish_Box +IG_Tw_Nov_Scroll,12907,100,1,1,0,0,1 // 1x Luk_Dish_Box +IG_Tw_Nov_Scroll,12908,100,1,1,0,0,1 // 1x Vit_Dish_Box +IG_Tw_Nov_Scroll,13538,50,1,1,0,0,1 // 1x Meteor_10_Scroll_Box +IG_Tw_Nov_Scroll,13539,25,1,1,0,0,1 // 1x Storm_10_Scroll_Box +IG_Tw_Nov_Scroll,13540,50,1,1,0,0,1 // 1x Vermilion_10_Scroll_Box +IG_Tw_Nov_Scroll,5502,10,1,1,0,0,1 // 1x Necromencer's_Hood +IG_Tw_Nov_Scroll,5490,10,1,1,0,0,1 // 1x Anubis_Helm +IG_Tw_Nov_Scroll,12259,5,1,1,0,0,1 // 1x Miracle_Medicine + +IG_My_Scroll2,608,125,25,1,0,0,1 // 25x Seed_Of_Yggdrasil +IG_My_Scroll2,13720,150,1,1,0,0,1 // 1x Regeneration_Box10 +IG_My_Scroll2,13749,130,1,1,0,0,1 // 1x B_Def_Potion_Box10 +IG_My_Scroll2,13973,100,3,1,0,0,1 // 3x Poison_Bottle_30_Box +IG_My_Scroll2,13752,100,1,1,0,0,1 // 1x S_Mdef_Potion_Box10 +IG_My_Scroll2,14601,100,2,1,0,0,1 // 2x Tyr's_Blessing +IG_My_Scroll2,12209,20,6,1,0,0,1 // 6x Insurance +IG_My_Scroll2,12210,75,6,1,0,0,1 // 6x Bubble_Gum +IG_My_Scroll2,13739,20,1,1,0,0,1 // 1x Glass_Of_Illusion_Box10 +IG_My_Scroll2,616,98,2,1,0,0,1 // 2x Old_Card_Album +IG_My_Scroll2,14592,49,2,1,0,0,1 // 2x Job_Manual50 +IG_My_Scroll2,7776,20,1,1,0,0,1 // 1x Max_Weight_Up_Scroll +IG_My_Scroll2,12259,2,1,1,0,0,1 // 1x Miracle_Medicine +IG_My_Scroll2,1230,10,1,1,0,0,1 // 1x House_Auger +IG_My_Scroll2,5568,1,1,1,0,0,1 // 1x Rabbit_Bonnet + +IG_Pr_Reset_Stone_Box,6320,0,1,0,0,0,0 // 1x Premium_Reset_Stone + +IG_Majestic_Devil_Scroll,683,150,10,1,0,0,1 // 10x Exorcize_Herb +IG_Majestic_Devil_Scroll,682,130,10,1,0,0,1 // 10x Realgar_Wine +IG_Majestic_Devil_Scroll,13846,130,1,1,0,0,1 // 1x Mysterious_Travel_Sack2 +IG_Majestic_Devil_Scroll,12702,93,5,1,0,0,1 // 5x Old_Bleu_Box +IG_Majestic_Devil_Scroll,14600,93,2,1,0,0,1 // 2x Mental_Potion +IG_Majestic_Devil_Scroll,12971,93,2,1,0,0,1 // 2x Teleport_Box1 +IG_Majestic_Devil_Scroll,12209,20,6,1,0,0,1 // 6x Insurance +IG_Majestic_Devil_Scroll,12210,80,6,1,0,0,1 // 6x Bubble_Gum +IG_Majestic_Devil_Scroll,12033,80,5,1,0,0,1 // 5x Box_Of_Sunlight +IG_Majestic_Devil_Scroll,7776,20,1,1,0,0,1 // 1x Max_Weight_Up_Scroll +IG_Majestic_Devil_Scroll,12710,80,5,1,0,0,1 // 5x Guyak_Pudding +IG_Majestic_Devil_Scroll,12246,10,1,1,0,0,1 // 1x Magic_Card_Album +IG_Majestic_Devil_Scroll,2701,20,1,1,0,0,1 // 1x Orleans_Glove +IG_Majestic_Devil_Scroll,5584,1,1,1,0,0,1 // 1x Majestic_Evil_Horn + +IG_Life_Ribbon_Box,5793,0,1,0,0,60,1 // 1x Ribbon_Of_Life + +IG_Life_Ribbon_Box2,5793,0,1,0,0,120,1 // 1x Ribbon_Of_Life + +IG_Life_Ribbon_Box3,5793,0,1,0,0,240,1 // 1x Ribbon_Of_Life + +IG_Magic_Candy_Box10,12596,0,10,0,0,0,1 // 10x Magic_Candy + +IG_RWC2010_SuitcaseA,12208,130,5,1,0,0,1 // 5x Battle_Manual +IG_RWC2010_SuitcaseA,12209,130,5,1,0,0,1 // 5x Insurance +IG_RWC2010_SuitcaseA,12210,150,10,1,0,0,1 // 10x Bubble_Gum +IG_RWC2010_SuitcaseA,12211,200,10,1,0,0,1 // 10x Kafra_Card +IG_RWC2010_SuitcaseA,12103,98,1,1,0,0,1 // 1x Bloody_Dead_Branch +IG_RWC2010_SuitcaseA,604,130,6,1,0,0,1 // 6x Branch_Of_Dead_Tree +IG_RWC2010_SuitcaseA,12709,80,10,1,0,0,1 // 10x Guyak_Candy +IG_RWC2010_SuitcaseA,12710,80,10,1,0,0,1 // 10x Guyak_Pudding +IG_RWC2010_SuitcaseA,18509,1,1,1,0,0,1 // 1x RWC2010_Indonesia +IG_RWC2010_SuitcaseA,12213,1,1,1,0,0,1 // 1x Neuralizer + +IG_RWC2010_SuitcaseB,14508,201,7,1,0,0,1 // 7x Zeny_Scroll +IG_RWC2010_SuitcaseB,13747,112,1,1,0,0,1 // 1x S_Def_Potion_Box30 +IG_RWC2010_SuitcaseB,13753,111,1,1,0,0,1 // 1x S_Mdef_Potion_Box30 +IG_RWC2010_SuitcaseB,13749,110,1,1,0,0,1 // 1x B_Def_Potion_Box10 +IG_RWC2010_SuitcaseB,13755,109,1,1,0,0,1 // 1x B_Mdef_Potion_Box10 +IG_RWC2010_SuitcaseB,13721,108,1,1,0,0,1 // 1x Dun_Tele_Scroll_Box10 +IG_RWC2010_SuitcaseB,13858,80,7,1,0,0,1 // 7x Spark_Candy_Box10 +IG_RWC2010_SuitcaseB,5299,50,1,1,0,0,1 // 1x Ati_Atihan_Hat_ +IG_RWC2010_SuitcaseB,5198,50,1,1,0,0,1 // 1x Drooping_Bunny +IG_RWC2010_SuitcaseB,5143,49,1,1,0,0,1 // 1x Kabuki_Mask +IG_RWC2010_SuitcaseB,5340,9,1,1,0,0,1 // 1x Deprotai_Doll_Hat +IG_RWC2010_SuitcaseB,18508,8,1,1,0,0,1 // 1x Garuda_Hat +IG_RWC2010_SuitcaseB,12261,2,1,1,0,0,1 // 1x Secret_Medicine +IG_RWC2010_SuitcaseB,12259,1,1,1,0,0,1 // 1x Miracle_Medicine + +IG_Sagittarius_Scroll,16246,1,1,1,0,0,1 // 1x Crown_Of_Deceit_Box +IG_Sagittarius_Scroll,16548,10,1,1,0,0,1 // 1x Sagittarius_Crown_Box +IG_Sagittarius_Scroll,12911,4,1,1,0,0,1 // 1x Neuralizer_Box +IG_Sagittarius_Scroll,2745,45,1,1,0,0,1 // 1x Pinguicula_Corsage +IG_Sagittarius_Scroll,16414,55,1,1,0,0,1 // 1x Turtle_Hat_Box +IG_Sagittarius_Scroll,5399,35,1,1,0,0,1 // 1x Mandragora_Cap +IG_Sagittarius_Scroll,16185,80,1,1,0,0,1 // 1x Raven_Cap_Box +IG_Sagittarius_Scroll,13710,100,1,1,0,0,1 // 1x Max_Weight_Up_Box +IG_Sagittarius_Scroll,14600,100,1,1,0,0,1 // 1x Mental_Potion +IG_Sagittarius_Scroll,13599,170,1,1,0,0,1 // 1x Battle_Manual_Box5 +IG_Sagittarius_Scroll,13607,130,1,1,0,0,1 // 1x Bubble_Gum_Box5 +IG_Sagittarius_Scroll,12710,160,5,1,0,0,1 // 5x Guyak_Pudding +IG_Sagittarius_Scroll,14601,110,1,1,0,0,1 // 1x Tyr's_Blessing + +IG_Sagittarius_Scr_Box,16775,0,1,0,0,0,1 // 1x Sagittarius_Scroll +IG_Sagittarius_Scr_Box,16775,0,1,0,0,0,1 // 1x Sagittarius_Scroll +IG_Sagittarius_Scr_Box,16775,0,1,0,0,0,1 // 1x Sagittarius_Scroll +IG_Sagittarius_Scr_Box,16775,0,1,0,0,0,1 // 1x Sagittarius_Scroll +IG_Sagittarius_Scr_Box,16775,0,1,0,0,0,1 // 1x Sagittarius_Scroll +IG_Sagittarius_Scr_Box,16775,0,1,0,0,0,1 // 1x Sagittarius_Scroll +IG_Sagittarius_Scr_Box,16775,0,1,0,0,0,1 // 1x Sagittarius_Scroll +IG_Sagittarius_Scr_Box,16775,0,1,0,0,0,1 // 1x Sagittarius_Scroll +IG_Sagittarius_Scr_Box,16775,0,1,0,0,0,1 // 1x Sagittarius_Scroll +IG_Sagittarius_Scr_Box,16775,0,1,0,0,0,1 // 1x Sagittarius_Scroll + +IG_Sagittar_Diadem_Scroll,14343,2,1,1,0,0,1 // 1x Spiked_Scarf_Box +IG_Sagittar_Diadem_Scroll,16775,10,1,1,0,0,1 // 1x Sagittarius_Scroll +IG_Sagittar_Diadem_Scroll,12911,3,1,1,0,0,1 // 1x Neuralizer_Box +IG_Sagittar_Diadem_Scroll,2743,20,1,1,0,0,1 // 1x Angelic_Ring +IG_Sagittar_Diadem_Scroll,5398,25,1,1,0,0,1 // 1x Bone_Head +IG_Sagittar_Diadem_Scroll,16237,80,1,1,0,0,1 // 1x Fur_Seal_Hat_Box +IG_Sagittar_Diadem_Scroll,16186,90,1,1,0,0,1 // 1x B_Dragon_Hat_Box +IG_Sagittar_Diadem_Scroll,13710,100,1,1,0,0,1 // 1x Max_Weight_Up_Box +IG_Sagittar_Diadem_Scroll,13753,100,1,1,0,0,1 // 1x S_Mdef_Potion_Box30 +IG_Sagittar_Diadem_Scroll,13747,100,1,1,0,0,1 // 1x S_Def_Potion_Box30 +IG_Sagittar_Diadem_Scroll,13599,160,1,1,0,0,1 // 1x Battle_Manual_Box5 +IG_Sagittar_Diadem_Scroll,13607,130,1,1,0,0,1 // 1x Bubble_Gum_Box5 +IG_Sagittar_Diadem_Scroll,12710,180,5,1,0,0,1 // 5x Guyak_Pudding + +IG_Sagittar_Di_Scroll_Box,16990,0,1,0,0,0,1 // 1x Sagittar_Diadem_Scroll +IG_Sagittar_Di_Scroll_Box,16990,0,1,0,0,0,1 // 1x Sagittar_Diadem_Scroll +IG_Sagittar_Di_Scroll_Box,16990,0,1,0,0,0,1 // 1x Sagittar_Diadem_Scroll +IG_Sagittar_Di_Scroll_Box,16990,0,1,0,0,0,1 // 1x Sagittar_Diadem_Scroll +IG_Sagittar_Di_Scroll_Box,16990,0,1,0,0,0,1 // 1x Sagittar_Diadem_Scroll +IG_Sagittar_Di_Scroll_Box,16990,0,1,0,0,0,1 // 1x Sagittar_Diadem_Scroll +IG_Sagittar_Di_Scroll_Box,16990,0,1,0,0,0,1 // 1x Sagittar_Diadem_Scroll +IG_Sagittar_Di_Scroll_Box,16990,0,1,0,0,0,1 // 1x Sagittar_Diadem_Scroll +IG_Sagittar_Di_Scroll_Box,16990,0,1,0,0,0,1 // 1x Sagittar_Diadem_Scroll +IG_Sagittar_Di_Scroll_Box,16990,0,1,0,0,0,1 // 1x Sagittar_Diadem_Scroll + +IG_Capri_Crown_Scroll,13903,1,1,1,0,0,1 // 1x Santa_Poring_Hat_Box +IG_Capri_Crown_Scroll,2749,2,1,1,0,0,1 // 1x Linen_Glove +IG_Capri_Crown_Scroll,14344,5,1,1,0,0,1 // 1x Rainbow_Scarf_Box +IG_Capri_Crown_Scroll,16565,10,1,1,0,0,1 // 1x Capricorn_Crown_Box +IG_Capri_Crown_Scroll,14443,35,1,1,0,0,1 // 1x Pizza_Hat_Box +IG_Capri_Crown_Scroll,4243,37,1,1,0,0,1 // 1x Antonio_Card +IG_Capri_Crown_Scroll,12132,150,10,1,0,0,1 // 10x Red_Bag +IG_Capri_Crown_Scroll,13710,70,1,1,0,0,1 // 1x Max_Weight_Up_Box +IG_Capri_Crown_Scroll,12709,130,6,1,0,0,1 // 6x Guyak_Candy +IG_Capri_Crown_Scroll,12710,150,6,1,0,0,1 // 6x Guyak_Pudding +IG_Capri_Crown_Scroll,12918,70,1,1,0,0,1 // 1x Adrenaline_Scroll_Box +IG_Capri_Crown_Scroll,12922,100,1,1,0,0,1 // 1x Token_Of_Siegfried_Box +IG_Capri_Crown_Scroll,13610,180,1,1,0,0,1 // 1x Enriched_Elunium_Box5 +IG_Capri_Crown_Scroll,12917,60,1,1,0,0,1 // 1x Wind_Walk_10_Scroll_Box + +IG_Capri_Crown_Scroll_Box,16996,0,1,0,0,0,1 // 1x Capri_Crown_Scroll +IG_Capri_Crown_Scroll_Box,16996,0,1,0,0,0,1 // 1x Capri_Crown_Scroll +IG_Capri_Crown_Scroll_Box,16996,0,1,0,0,0,1 // 1x Capri_Crown_Scroll +IG_Capri_Crown_Scroll_Box,16996,0,1,0,0,0,1 // 1x Capri_Crown_Scroll +IG_Capri_Crown_Scroll_Box,16996,0,1,0,0,0,1 // 1x Capri_Crown_Scroll +IG_Capri_Crown_Scroll_Box,16996,0,1,0,0,0,1 // 1x Capri_Crown_Scroll +IG_Capri_Crown_Scroll_Box,16996,0,1,0,0,0,1 // 1x Capri_Crown_Scroll +IG_Capri_Crown_Scroll_Box,16996,0,1,0,0,0,1 // 1x Capri_Crown_Scroll +IG_Capri_Crown_Scroll_Box,16996,0,1,0,0,0,1 // 1x Capri_Crown_Scroll +IG_Capri_Crown_Scroll_Box,16996,0,1,0,0,0,1 // 1x Capri_Crown_Scroll + +IG_Capricon_Di_Scroll,13937,1,1,1,0,0,1 // 1x Robo_Eye_Box +IG_Capricon_Di_Scroll,2390,3,1,1,0,0,1 // 1x Improved_Tights +IG_Capricon_Di_Scroll,16567,10,1,1,0,0,1 // 1x Capricorn_Diadem_Box +IG_Capricon_Di_Scroll,2440,26,1,1,0,0,1 // 1x Sprint_Shoes +IG_Capricon_Di_Scroll,2748,40,1,1,0,0,1 // 1x Cursed_Star +IG_Capricon_Di_Scroll,14441,60,1,1,0,0,1 // 1x King_Tiger_Doll_Hat_Box +IG_Capricon_Di_Scroll,14447,80,1,1,0,0,1 // 1x Pirate's_Pride_Box +IG_Capricon_Di_Scroll,13710,10,1,1,0,0,1 // 1x Max_Weight_Up_Box +IG_Capricon_Di_Scroll,13715,50,1,1,0,0,1 // 1x Med_Life_Potion_Box30 +IG_Capricon_Di_Scroll,13717,80,1,1,0,0,1 // 1x Abrasive_Box5 +IG_Capricon_Di_Scroll,12709,130,5,1,0,0,1 // 5x Guyak_Candy +IG_Capricon_Di_Scroll,12710,150,5,1,0,0,1 // 5x Guyak_Pudding +IG_Capricon_Di_Scroll,13611,170,1,1,0,0,1 // 1x Enriched_Oridecon_Box5 +IG_Capricon_Di_Scroll,13712,10,1,1,0,0,1 // 1x Small_Life_Potion_Box30 + +IG_Capricon_Di_Scroll_Box,17011,0,1,0,0,0,1 // 1x Capricon_Di_Scroll +IG_Capricon_Di_Scroll_Box,17011,0,1,0,0,0,1 // 1x Capricon_Di_Scroll +IG_Capricon_Di_Scroll_Box,17011,0,1,0,0,0,1 // 1x Capricon_Di_Scroll +IG_Capricon_Di_Scroll_Box,17011,0,1,0,0,0,1 // 1x Capricon_Di_Scroll +IG_Capricon_Di_Scroll_Box,17011,0,1,0,0,0,1 // 1x Capricon_Di_Scroll +IG_Capricon_Di_Scroll_Box,17011,0,1,0,0,0,1 // 1x Capricon_Di_Scroll +IG_Capricon_Di_Scroll_Box,17011,0,1,0,0,0,1 // 1x Capricon_Di_Scroll +IG_Capricon_Di_Scroll_Box,17011,0,1,0,0,0,1 // 1x Capricon_Di_Scroll +IG_Capricon_Di_Scroll_Box,17011,0,1,0,0,0,1 // 1x Capricon_Di_Scroll +IG_Capricon_Di_Scroll_Box,17011,0,1,0,0,0,1 // 1x Capricon_Di_Scroll + +IG_Aquarius_Diadem_Scroll,14300,1,1,1,0,0,1 // 1x Mask_Of_Ifrit_Box +IG_Aquarius_Diadem_Scroll,5512,30,1,1,0,0,1 // 1x Aquarius_Diadem +IG_Aquarius_Diadem_Scroll,5658,5,1,1,0,0,1 // 1x Imp_Hat +IG_Aquarius_Diadem_Scroll,12911,5,1,1,0,0,1 // 1x Neuralizer_Box +IG_Aquarius_Diadem_Scroll,2787,17,1,1,0,0,1 // 1x Waterdrop_Brooch +IG_Aquarius_Diadem_Scroll,14440,25,1,1,0,0,1 // 1x Dice_Hat_Box +IG_Aquarius_Diadem_Scroll,13751,60,1,1,0,0,1 // 1x B_Def_Potion_Box50 +IG_Aquarius_Diadem_Scroll,13757,60,1,1,0,0,1 // 1x B_Mdef_Potion_Box50 +IG_Aquarius_Diadem_Scroll,13710,100,1,1,0,0,1 // 1x Max_Weight_Up_Box +IG_Aquarius_Diadem_Scroll,14597,2,1,1,0,0,1 // 1x PhreeoniS +IG_Aquarius_Diadem_Scroll,13717,155,1,1,0,0,1 // 1x Abrasive_Box5 +IG_Aquarius_Diadem_Scroll,12710,210,5,1,0,0,1 // 5x Guyak_Pudding +IG_Aquarius_Diadem_Scroll,16390,155,1,1,0,0,1 // 1x BGum_Box_In_Mouth4 +IG_Aquarius_Diadem_Scroll,12033,175,5,1,0,0,1 // 5x Box_Of_Sunlight + +IG_Aquarius_Di_Scroll_Box,17016,0,1,0,0,0,1 // 1x Aquarius_Diadem_Scroll +IG_Aquarius_Di_Scroll_Box,17016,0,1,0,0,0,1 // 1x Aquarius_Diadem_Scroll +IG_Aquarius_Di_Scroll_Box,17016,0,1,0,0,0,1 // 1x Aquarius_Diadem_Scroll +IG_Aquarius_Di_Scroll_Box,17016,0,1,0,0,0,1 // 1x Aquarius_Diadem_Scroll +IG_Aquarius_Di_Scroll_Box,17016,0,1,0,0,0,1 // 1x Aquarius_Diadem_Scroll +IG_Aquarius_Di_Scroll_Box,17016,0,1,0,0,0,1 // 1x Aquarius_Diadem_Scroll +IG_Aquarius_Di_Scroll_Box,17016,0,1,0,0,0,1 // 1x Aquarius_Diadem_Scroll +IG_Aquarius_Di_Scroll_Box,17016,0,1,0,0,0,1 // 1x Aquarius_Diadem_Scroll +IG_Aquarius_Di_Scroll_Box,17016,0,1,0,0,0,1 // 1x Aquarius_Diadem_Scroll +IG_Aquarius_Di_Scroll_Box,17016,0,1,0,0,0,1 // 1x Aquarius_Diadem_Scroll + +IG_Lovely_Aquarius_Scroll,2790,1,1,1,0,0,1 // 1x Bradium_Brooch +IG_Lovely_Aquarius_Scroll,12911,4,1,1,0,0,1 // 1x Neuralizer_Box +IG_Lovely_Aquarius_Scroll,5659,9,1,1,0,0,1 // 1x Sleeper_Hat +IG_Lovely_Aquarius_Scroll,5513,50,1,1,0,0,1 // 1x Aquarius_Crown +IG_Lovely_Aquarius_Scroll,16193,35,1,1,0,0,1 // 1x Tucan_Hat_Box +IG_Lovely_Aquarius_Scroll,14598,1,1,1,0,0,1 // 1x GhostringS +IG_Lovely_Aquarius_Scroll,6220,50,1,1,0,0,1 // 1x Mysterious_Dyestuff +IG_Lovely_Aquarius_Scroll,13710,100,1,1,0,0,1 // 1x Max_Weight_Up_Box +IG_Lovely_Aquarius_Scroll,13857,140,1,1,0,0,1 // 1x Spark_Candy_Box5 +IG_Lovely_Aquarius_Scroll,13738,130,1,1,0,0,1 // 1x Glass_Of_Illusion_Box5 +IG_Lovely_Aquarius_Scroll,16386,150,1,1,0,0,1 // 1x F_Clover_Box_Mouth4 +IG_Lovely_Aquarius_Scroll,12710,170,5,1,0,0,1 // 5x Guyak_Pudding +IG_Lovely_Aquarius_Scroll,13607,140,1,1,0,0,1 // 1x Bubble_Gum_Box5 +IG_Lovely_Aquarius_Scroll,13804,20,2,1,0,0,1 // 2x Fire_Cracker_Love_Box + +IG_Lovely_Aquarius_Box,17024,0,1,0,0,0,1 // 1x Lovely_Aquarius_Scroll +IG_Lovely_Aquarius_Box,17024,0,1,0,0,0,1 // 1x Lovely_Aquarius_Scroll +IG_Lovely_Aquarius_Box,17024,0,1,0,0,0,1 // 1x Lovely_Aquarius_Scroll +IG_Lovely_Aquarius_Box,17024,0,1,0,0,0,1 // 1x Lovely_Aquarius_Scroll +IG_Lovely_Aquarius_Box,17024,0,1,0,0,0,1 // 1x Lovely_Aquarius_Scroll +IG_Lovely_Aquarius_Box,17024,0,1,0,0,0,1 // 1x Lovely_Aquarius_Scroll +IG_Lovely_Aquarius_Box,17024,0,1,0,0,0,1 // 1x Lovely_Aquarius_Scroll +IG_Lovely_Aquarius_Box,17024,0,1,0,0,0,1 // 1x Lovely_Aquarius_Scroll +IG_Lovely_Aquarius_Box,17024,0,1,0,0,0,1 // 1x Lovely_Aquarius_Scroll +IG_Lovely_Aquarius_Box,17024,0,1,0,0,0,1 // 1x Lovely_Aquarius_Scroll + +IG_Pisces_Diadem_Scroll,14301,1,1,1,0,0,1 // 1x Ifrit's_Ear_Box +IG_Pisces_Diadem_Scroll,2788,2,1,1,0,0,1 // 1x Bradium_Earing +IG_Pisces_Diadem_Scroll,5514,10,1,1,0,0,1 // 1x Pisces_Diadem +IG_Pisces_Diadem_Scroll,5660,5,1,1,0,0,1 // 1x Gryphon_Hat +IG_Pisces_Diadem_Scroll,2450,10,1,1,0,0,1 // 1x Vital_Tree_Shoes +IG_Pisces_Diadem_Scroll,12911,22,1,1,0,0,1 // 1x Neuralizer_Box +IG_Pisces_Diadem_Scroll,12901,60,1,1,0,0,1 // 1x Insurance_Package +IG_Pisces_Diadem_Scroll,14604,50,1,1,0,0,1 // 1x Orc_HeroS +IG_Pisces_Diadem_Scroll,13710,100,1,1,0,0,1 // 1x Max_Weight_Up_Box +IG_Pisces_Diadem_Scroll,12922,130,1,1,0,0,1 // 1x Token_Of_Siegfried_Box +IG_Pisces_Diadem_Scroll,16640,160,1,1,0,0,1 // 1x Life_Ribbon_Box3 +IG_Pisces_Diadem_Scroll,12710,180,5,1,0,0,1 // 5x Guyak_Pudding +IG_Pisces_Diadem_Scroll,13599,200,1,1,0,0,1 // 1x Battle_Manual_Box5 +IG_Pisces_Diadem_Scroll,14232,70,1,1,0,0,1 // 1x Yggdrasilberry_Box_ + +IG_Pisces_Diadem_Box,17028,0,1,0,0,0,1 // 1x Pisces_Diadem_Scroll +IG_Pisces_Diadem_Box,17028,0,1,0,0,0,1 // 1x Pisces_Diadem_Scroll +IG_Pisces_Diadem_Box,17028,0,1,0,0,0,1 // 1x Pisces_Diadem_Scroll +IG_Pisces_Diadem_Box,17028,0,1,0,0,0,1 // 1x Pisces_Diadem_Scroll +IG_Pisces_Diadem_Box,17028,0,1,0,0,0,1 // 1x Pisces_Diadem_Scroll +IG_Pisces_Diadem_Box,17028,0,1,0,0,0,1 // 1x Pisces_Diadem_Scroll +IG_Pisces_Diadem_Box,17028,0,1,0,0,0,1 // 1x Pisces_Diadem_Scroll +IG_Pisces_Diadem_Box,17028,0,1,0,0,0,1 // 1x Pisces_Diadem_Scroll +IG_Pisces_Diadem_Box,17028,0,1,0,0,0,1 // 1x Pisces_Diadem_Scroll +IG_Pisces_Diadem_Box,17028,0,1,0,0,0,1 // 1x Pisces_Diadem_Scroll + +IG_Energetic_Pisces_Scroll,2789,1,1,1,0,0,1 // 1x Bradium_Ring +IG_Energetic_Pisces_Scroll,5515,10,1,1,0,0,1 // 1x Pisces_Crown +IG_Energetic_Pisces_Scroll,12911,5,1,1,0,0,1 // 1x Neuralizer_Box +IG_Energetic_Pisces_Scroll,14490,15,1,1,0,0,1 // 1x Shark_Hat_Box +IG_Energetic_Pisces_Scroll,2640,20,1,1,0,0,1 // 1x Kafra_Ring +IG_Energetic_Pisces_Scroll,5532,25,1,1,0,0,1 // 1x Pirate_Dagger_J +IG_Energetic_Pisces_Scroll,14605,34,1,1,0,0,1 // 1x Orc_LoadS +IG_Energetic_Pisces_Scroll,13710,100,1,1,0,0,1 // 1x Max_Weight_Up_Box +IG_Energetic_Pisces_Scroll,13857,100,1,1,0,0,1 // 1x Spark_Candy_Box5 +IG_Energetic_Pisces_Scroll,12405,120,6,1,0,0,1 // 6x Underripe_Yggseed +IG_Energetic_Pisces_Scroll,13610,130,1,1,0,0,1 // 1x Enriched_Elunium_Box5 +IG_Energetic_Pisces_Scroll,12710,190,5,1,0,0,1 // 5x Guyak_Pudding +IG_Energetic_Pisces_Scroll,13611,150,1,1,0,0,1 // 1x Enriched_Oridecon_Box5 +IG_Energetic_Pisces_Scroll,13725,100,1,1,0,0,1 // 1x Ramen_Hat_Box + +IG_Energetic_Pisces_Box,17035,0,1,0,0,0,1 // 1x Energetic_Pisces_Scroll +IG_Energetic_Pisces_Box,17035,0,1,0,0,0,1 // 1x Energetic_Pisces_Scroll +IG_Energetic_Pisces_Box,17035,0,1,0,0,0,1 // 1x Energetic_Pisces_Scroll +IG_Energetic_Pisces_Box,17035,0,1,0,0,0,1 // 1x Energetic_Pisces_Scroll +IG_Energetic_Pisces_Box,17035,0,1,0,0,0,1 // 1x Energetic_Pisces_Scroll +IG_Energetic_Pisces_Box,17035,0,1,0,0,0,1 // 1x Energetic_Pisces_Scroll +IG_Energetic_Pisces_Box,17035,0,1,0,0,0,1 // 1x Energetic_Pisces_Scroll +IG_Energetic_Pisces_Box,17035,0,1,0,0,0,1 // 1x Energetic_Pisces_Scroll +IG_Energetic_Pisces_Box,17035,0,1,0,0,0,1 // 1x Energetic_Pisces_Scroll +IG_Energetic_Pisces_Box,17035,0,1,0,0,0,1 // 1x Energetic_Pisces_Scroll + +IG_Aries_Scroll,2428,5,1,1,1,0,0 // 1x Freyja_Boots +IG_Aries_Scroll,12246,45,1,1,1,0,0 // 1x Magic_Card_Album +IG_Aries_Scroll,5546,50,1,1,1,0,0 // 1x Aries_Crown +IG_Aries_Scroll,5545,50,1,1,1,0,0 // 1x Aries_Diadem +IG_Aries_Scroll,12911,50,1,1,0,0,0 // 1x Neuralizer_Box +IG_Aries_Scroll,5397,150,1,1,0,0,0 // 1x Scuba_Mask +IG_Aries_Scroll,4378,200,1,1,0,0,0 // 1x Acidus_Card +IG_Aries_Scroll,5350,350,1,1,0,0,0 // 1x Pirate_Bandana_ +IG_Aries_Scroll,13710,500,1,1,0,0,0 // 1x Max_Weight_Up_Box +IG_Aries_Scroll,13610,1100,1,1,0,0,0 // 1x Enriched_Elunium_Box5 +IG_Aries_Scroll,13611,1600,1,1,0,0,0 // 1x Enriched_Oridecon_Box5 +IG_Aries_Scroll,13753,1800,1,1,0,0,0 // 1x S_Mdef_Potion_Box30 +IG_Aries_Scroll,13747,1800,1,1,0,0,0 // 1x S_Def_Potion_Box30 +IG_Aries_Scroll,14508,2300,10,1,0,0,0 // 10x Zeny_Scroll + +IG_Aries_Scroll_Box,17050,0,1,0,0,0,1 // 1x Aries_Scroll +IG_Aries_Scroll_Box,17050,0,1,0,0,0,1 // 1x Aries_Scroll +IG_Aries_Scroll_Box,17050,0,1,0,0,0,1 // 1x Aries_Scroll +IG_Aries_Scroll_Box,17050,0,1,0,0,0,1 // 1x Aries_Scroll +IG_Aries_Scroll_Box,17050,0,1,0,0,0,1 // 1x Aries_Scroll +IG_Aries_Scroll_Box,17050,0,1,0,0,0,1 // 1x Aries_Scroll +IG_Aries_Scroll_Box,17050,0,1,0,0,0,1 // 1x Aries_Scroll +IG_Aries_Scroll_Box,17050,0,1,0,0,0,1 // 1x Aries_Scroll +IG_Aries_Scroll_Box,17050,0,1,0,0,0,1 // 1x Aries_Scroll +IG_Aries_Scroll_Box,17050,0,1,0,0,0,1 // 1x Aries_Scroll + +IG_Boarding_Halter_Box,12622,0,1,0,0,10080,1 // 1x Boarding_Halter + +IG_Taurus_Diadem_Scroll,5306,1,1,1,1,0,0 // 1x Freyja_Crown +IG_Taurus_Diadem_Scroll,4238,10,1,1,1,0,0 // 1x Owl_Baron_Card +IG_Taurus_Diadem_Scroll,5767,85,1,1,1,0,0 // 1x Samurai_Mask +IG_Taurus_Diadem_Scroll,5549,100,1,1,1,0,0 // 1x Taurus_Diadem +IG_Taurus_Diadem_Scroll,5402,100,1,1,0,0,0 // 1x Mischievous_Fairy +IG_Taurus_Diadem_Scroll,5347,200,1,1,0,0,0 // 1x Ph.D_Hat_ +IG_Taurus_Diadem_Scroll,13710,500,1,1,0,0,0 // 1x Max_Weight_Up_Box +IG_Taurus_Diadem_Scroll,13990,600,1,1,0,0,0 // 1x Job_Manual50_Box +IG_Taurus_Diadem_Scroll,13538,800,1,1,0,0,0 // 1x Meteor_10_Scroll_Box +IG_Taurus_Diadem_Scroll,13845,1100,1,1,0,0,0 // 1x Mysterious_Travel_Sack1 +IG_Taurus_Diadem_Scroll,13599,1300,1,1,0,0,0 // 1x Battle_Manual_Box5 +IG_Taurus_Diadem_Scroll,13721,1500,1,1,0,0,0 // 1x Dun_Tele_Scroll_Box10 +IG_Taurus_Diadem_Scroll,14601,1700,1,1,0,0,0 // 1x Tyr's_Blessing +IG_Taurus_Diadem_Scroll,14508,2004,10,1,0,0,0 // 10x Zeny_Scroll + +IG_Taurus_Di_Scroll_Box,17062,0,1,0,0,0,1 // 1x Taurus_Diadem_Scroll +IG_Taurus_Di_Scroll_Box,17062,0,1,0,0,0,1 // 1x Taurus_Diadem_Scroll +IG_Taurus_Di_Scroll_Box,17062,0,1,0,0,0,1 // 1x Taurus_Diadem_Scroll +IG_Taurus_Di_Scroll_Box,17062,0,1,0,0,0,1 // 1x Taurus_Diadem_Scroll +IG_Taurus_Di_Scroll_Box,17062,0,1,0,0,0,1 // 1x Taurus_Diadem_Scroll +IG_Taurus_Di_Scroll_Box,17062,0,1,0,0,0,1 // 1x Taurus_Diadem_Scroll +IG_Taurus_Di_Scroll_Box,17062,0,1,0,0,0,1 // 1x Taurus_Diadem_Scroll +IG_Taurus_Di_Scroll_Box,17062,0,1,0,0,0,1 // 1x Taurus_Diadem_Scroll +IG_Taurus_Di_Scroll_Box,17062,0,1,0,0,0,1 // 1x Taurus_Diadem_Scroll +IG_Taurus_Di_Scroll_Box,17062,0,1,0,0,0,1 // 1x Taurus_Diadem_Scroll + +IG_Umbala_Spirit_Box2,18505,0,1,0,0,10080,1 // 1x Umbala_Spirit + +IG_F_Umbala_Spirit_Box2,18505,0,1,0,0,10080,1 // 1x Umbala_Spirit + +IG_Taurus_Crown_Scroll,2533,1,1,1,1,0,0 // 1x Freyja_Cape +IG_Taurus_Crown_Scroll,4452,50,1,1,1,0,0 // 1x Centipede_Larva_Card +IG_Taurus_Crown_Scroll,16760,100,1,1,1,0,0 // 1x Umbala_Spirit_Box2 +IG_Taurus_Crown_Scroll,5550,100,1,1,1,0,0 // 1x Taurus_Crown +IG_Taurus_Crown_Scroll,5102,200,1,1,0,0,0 // 1x Round_Eyes +IG_Taurus_Crown_Scroll,5351,245,1,1,0,0,0 // 1x Sunflower_ +IG_Taurus_Crown_Scroll,5352,400,1,1,0,0,0 // 1x Poporing_Cap +IG_Taurus_Crown_Scroll,13710,500,1,1,0,0,0 // 1x Max_Weight_Up_Box +IG_Taurus_Crown_Scroll,14600,1000,1,1,0,0,0 // 1x Mental_Potion +IG_Taurus_Crown_Scroll,13540,1000,1,1,0,0,0 // 1x Vermilion_10_Scroll_Box +IG_Taurus_Crown_Scroll,13846,1100,1,1,0,0,0 // 1x Mysterious_Travel_Sack2 +IG_Taurus_Crown_Scroll,13607,1500,1,1,0,0,0 // 1x Bubble_Gum_Box5 +IG_Taurus_Crown_Scroll,13712,1800,1,1,0,0,0 // 1x Small_Life_Potion_Box30 +IG_Taurus_Crown_Scroll,14508,2004,10,1,0,0,0 // 10x Zeny_Scroll + +IG_Taurus_Crown_Scroll_Box,17077,0,1,0,0,0,1 // 1x Taurus_Crown_Scroll +IG_Taurus_Crown_Scroll_Box,17077,0,1,0,0,0,1 // 1x Taurus_Crown_Scroll +IG_Taurus_Crown_Scroll_Box,17077,0,1,0,0,0,1 // 1x Taurus_Crown_Scroll +IG_Taurus_Crown_Scroll_Box,17077,0,1,0,0,0,1 // 1x Taurus_Crown_Scroll +IG_Taurus_Crown_Scroll_Box,17077,0,1,0,0,0,1 // 1x Taurus_Crown_Scroll +IG_Taurus_Crown_Scroll_Box,17077,0,1,0,0,0,1 // 1x Taurus_Crown_Scroll +IG_Taurus_Crown_Scroll_Box,17077,0,1,0,0,0,1 // 1x Taurus_Crown_Scroll +IG_Taurus_Crown_Scroll_Box,17077,0,1,0,0,0,1 // 1x Taurus_Crown_Scroll +IG_Taurus_Crown_Scroll_Box,17077,0,1,0,0,0,1 // 1x Taurus_Crown_Scroll +IG_Taurus_Crown_Scroll_Box,17077,0,1,0,0,0,1 // 1x Taurus_Crown_Scroll + +IG_Gemi_Diadem_Scroll,4429,1,1,1,0,0,0 // 1x Salamander_Card +IG_Gemi_Diadem_Scroll,2369,1,1,1,0,0,0 // 1x Freyja_Overcoat +IG_Gemi_Diadem_Scroll,5349,44,1,1,0,0,0 // 1x Boy's_Cap_ +IG_Gemi_Diadem_Scroll,5569,100,1,1,0,0,0 // 1x Gemini_Diadem +IG_Gemi_Diadem_Scroll,5389,100,1,1,0,0,0 // 1x Angel_Spirit +IG_Gemi_Diadem_Scroll,5361,100,1,1,0,0,0 // 1x Gang_Scarf +IG_Gemi_Diadem_Scroll,13905,350,1,1,0,0,0 // 1x Hard_Core_Set_Box +IG_Gemi_Diadem_Scroll,13710,500,1,1,0,0,0 // 1x Max_Weight_Up_Box +IG_Gemi_Diadem_Scroll,13718,800,1,1,0,0,0 // 1x Abrasive_Box10 +IG_Gemi_Diadem_Scroll,14508,1100,15,1,0,0,0 // 15x Zeny_Scroll +IG_Gemi_Diadem_Scroll,13538,1500,1,1,0,0,0 // 1x Meteor_10_Scroll_Box +IG_Gemi_Diadem_Scroll,13847,1600,1,1,0,0,0 // 1x Mysterious_Travel_Sack3 +IG_Gemi_Diadem_Scroll,12917,1800,1,1,0,0,0 // 1x Wind_Walk_10_Scroll_Box +IG_Gemi_Diadem_Scroll,12107,2004,1,1,0,0,0 // 1x Wrapped_Mask + +IG_Gemi_Diadem_Scroll_Box,17082,0,1,0,0,0,1 // 1x Gemi_Diadem_Scroll +IG_Gemi_Diadem_Scroll_Box,17082,0,1,0,0,0,1 // 1x Gemi_Diadem_Scroll +IG_Gemi_Diadem_Scroll_Box,17082,0,1,0,0,0,1 // 1x Gemi_Diadem_Scroll +IG_Gemi_Diadem_Scroll_Box,17082,0,1,0,0,0,1 // 1x Gemi_Diadem_Scroll +IG_Gemi_Diadem_Scroll_Box,17082,0,1,0,0,0,1 // 1x Gemi_Diadem_Scroll +IG_Gemi_Diadem_Scroll_Box,17082,0,1,0,0,0,1 // 1x Gemi_Diadem_Scroll +IG_Gemi_Diadem_Scroll_Box,17082,0,1,0,0,0,1 // 1x Gemi_Diadem_Scroll +IG_Gemi_Diadem_Scroll_Box,17082,0,1,0,0,0,1 // 1x Gemi_Diadem_Scroll +IG_Gemi_Diadem_Scroll_Box,17082,0,1,0,0,0,1 // 1x Gemi_Diadem_Scroll +IG_Gemi_Diadem_Scroll_Box,17082,0,1,0,0,0,1 // 1x Gemi_Diadem_Scroll + +IG_Super_Pet_Egg1_2,2234,70,1,1,0,0,0 // 1x Tiara +IG_Super_Pet_Egg1_2,2235,70,1,1,0,0,0 // 1x Crown +IG_Super_Pet_Egg1_2,5007,30,1,1,0,0,0 // 1x Loard_Circlet +IG_Super_Pet_Egg1_2,5074,70,1,1,0,0,0 // 1x Ear_Of_Angel's_Wing +IG_Super_Pet_Egg1_2,5068,60,1,1,0,0,0 // 1x Ear_Of_Devil's_Wing +IG_Super_Pet_Egg1_2,5210,250,1,1,0,0,0 // 1x Flying_Angel +IG_Super_Pet_Egg1_2,4168,1,1,1,0,0,0 // 1x Dark_Lord_Card +IG_Super_Pet_Egg1_2,4054,2,1,1,0,0,0 // 1x Angeling_Card +IG_Super_Pet_Egg1_2,4047,2,1,1,0,0,0 // 1x Ghostring_Card +IG_Super_Pet_Egg1_2,2277,890,1,1,0,0,0 // 1x Nurse_Cap +IG_Super_Pet_Egg1_2,2269,450,1,1,0,0,0 // 1x Centimental_Flower +IG_Super_Pet_Egg1_2,5077,700,1,1,0,0,0 // 1x Tulip_Hairpin +IG_Super_Pet_Egg1_2,616,950,2,1,0,0,0 // 2x Old_Card_Album +IG_Super_Pet_Egg1_2,617,1500,5,1,0,0,0 // 5x Old_Violet_Box +IG_Super_Pet_Egg1_2,607,2000,15,1,0,0,0 // 15x Yggdrasilberry +IG_Super_Pet_Egg1_2,608,2000,30,1,0,0,0 // 30x Seed_Of_Yggdrasil +IG_Super_Pet_Egg1_2,14508,955,10,1,0,0,0 // 10x Zeny_Scroll + +IG_Super_Pet_Egg4_2,2254,30,1,1,0,0,0 // 1x Angelic_Chain +IG_Super_Pet_Egg4_2,2256,35,1,1,0,0,0 // 1x Magestic_Goat +IG_Super_Pet_Egg4_2,2258,20,1,1,0,0,0 // 1x Sharp_Gear +IG_Super_Pet_Egg4_2,5025,20,1,1,0,0,0 // 1x Helm_Of_Angel +IG_Super_Pet_Egg4_2,5094,40,1,1,0,0,0 // 1x Orc_Hero_Helm +IG_Super_Pet_Egg4_2,4142,1,1,1,0,0,0 // 1x Doppelganger_Card +IG_Super_Pet_Egg4_2,4144,1,1,1,0,0,0 // 1x Osiris_Card +IG_Super_Pet_Egg4_2,4121,1,1,1,0,0,0 // 1x Phreeoni_Card +IG_Super_Pet_Egg4_2,2298,720,1,1,0,0,0 // 1x Green_Feeler +IG_Super_Pet_Egg4_2,5348,500,1,1,0,0,0 // 1x Big_Sis'_Ribbon_ +IG_Super_Pet_Egg4_2,5117,370,1,1,0,0,0 // 1x Mistic_Rose +IG_Super_Pet_Egg4_2,5107,350,1,1,0,0,0 // 1x Well_Baked_Toast +IG_Super_Pet_Egg4_2,616,912,2,1,0,0,0 // 2x Old_Card_Album +IG_Super_Pet_Egg4_2,617,1300,1,1,0,0,0 // 1x Old_Violet_Box +IG_Super_Pet_Egg4_2,607,1700,15,1,0,0,0 // 15x Yggdrasilberry +IG_Super_Pet_Egg4_2,608,1700,30,1,0,0,0 // 30x Seed_Of_Yggdrasil +IG_Super_Pet_Egg4_2,14508,2300,10,1,0,0,0 // 10x Zeny_Scroll + +IG_Fire_Brand_Box,13408,0,1,0,0,10080,1 // 1x Fire_Brand_C + +IG_BR_Independence_Scroll,2871,5,1,1,0,0,1 // 1x Brazilian_Emblem +IG_BR_Independence_Scroll,12375,50,10,1,0,0,1 // 10x Acaraje +IG_BR_Independence_Scroll,5600,20,1,1,0,0,1 // 1x Br_Twin_Ribbon +IG_BR_Independence_Scroll,12411,100,10,1,0,0,1 // 10x HE_Battle_Manual +IG_BR_Independence_Scroll,2736,30,1,1,0,0,1 // 1x Navel_Ring +IG_BR_Independence_Scroll,5601,20,1,1,0,0,1 // 1x Br_Beret +IG_BR_Independence_Scroll,4436,1,1,1,0,0,1 // 1x Ragged_Zombie_Card +IG_BR_Independence_Scroll,14592,100,10,1,0,0,1 // 10x Job_Manual50 +IG_BR_Independence_Scroll,12922,100,1,1,0,0,1 // 1x Token_Of_Siegfried_Box +IG_BR_Independence_Scroll,13548,100,1,1,0,0,1 // 1x Big_Bun_Box +IG_BR_Independence_Scroll,12274,94,10,1,0,0,1 // 10x Gold_Pill_1 +IG_BR_Independence_Scroll,12204,50,10,1,0,0,1 // 10x Int_Dish10_ +IG_BR_Independence_Scroll,684,100,10,1,0,0,1 // 10x Durian +IG_BR_Independence_Scroll,14544,100,10,1,0,0,1 // 10x B_Mdef_Potion +IG_BR_Independence_Scroll,13953,100,1,1,0,0,1 // 1x All_In_One_Ring_Box +IG_BR_Independence_Scroll,5307,30,1,1,0,0,1 // 1x Carmen_Miranda's_Hat + +IG_All_In_One_Ring_Box,2741,0,1,0,0,604800,1 // 1x All_In_One_Ring + +IG_Gemi_Crown_Scroll,4330,1,1,1,0,0,0 // 1x Dark_Snake_Lord_Card +IG_Gemi_Crown_Scroll,18507,2,1,1,0,0,0 // 1x Elven_Ears_ +IG_Gemi_Crown_Scroll,5377,47,1,1,0,0,0 // 1x Antique_Pipe +IG_Gemi_Crown_Scroll,12911,50,1,1,0,0,0 // 1x Neuralizer_Box +IG_Gemi_Crown_Scroll,5570,100,1,1,0,0,0 // 1x Gemini_Crown +IG_Gemi_Crown_Scroll,5680,100,1,1,0,0,0 // 1x Hawkeyes +IG_Gemi_Crown_Scroll,5310,200,1,1,0,0,0 // 1x Bulb_Hairband +IG_Gemi_Crown_Scroll,13710,500,1,1,0,0,0 // 1x Max_Weight_Up_Box +IG_Gemi_Crown_Scroll,13738,800,1,1,0,0,0 // 1x Glass_Of_Illusion_Box5 +IG_Gemi_Crown_Scroll,13848,1300,1,1,0,0,0 // 1x Mysterious_Travel_Sack4 +IG_Gemi_Crown_Scroll,14508,1500,15,1,0,0,0 // 15x Zeny_Scroll +IG_Gemi_Crown_Scroll,12918,1600,1,1,0,0,0 // 1x Adrenaline_Scroll_Box +IG_Gemi_Crown_Scroll,13541,1800,1,1,0,0,0 // 1x Lex_Aeterna_Scroll_Box +IG_Gemi_Crown_Scroll,13909,2000,1,1,0,0,0 // 1x MVP_Hunt_Box + +IG_Gemi_Crown_Scroll_Box,17107,0,1,0,0,0,1 // 1x Gemi_Crown_Scroll +IG_Gemi_Crown_Scroll_Box,17107,0,1,0,0,0,1 // 1x Gemi_Crown_Scroll +IG_Gemi_Crown_Scroll_Box,17107,0,1,0,0,0,1 // 1x Gemi_Crown_Scroll +IG_Gemi_Crown_Scroll_Box,17107,0,1,0,0,0,1 // 1x Gemi_Crown_Scroll +IG_Gemi_Crown_Scroll_Box,17107,0,1,0,0,0,1 // 1x Gemi_Crown_Scroll +IG_Gemi_Crown_Scroll_Box,17107,0,1,0,0,0,1 // 1x Gemi_Crown_Scroll +IG_Gemi_Crown_Scroll_Box,17107,0,1,0,0,0,1 // 1x Gemi_Crown_Scroll +IG_Gemi_Crown_Scroll_Box,17107,0,1,0,0,0,1 // 1x Gemi_Crown_Scroll +IG_Gemi_Crown_Scroll_Box,17107,0,1,0,0,0,1 // 1x Gemi_Crown_Scroll +IG_Gemi_Crown_Scroll_Box,17107,0,1,0,0,0,1 // 1x Gemi_Crown_Scroll + +IG_RWC_Special_Scroll,5337,4,1,1,0,0,0 // 1x Party_Recruiter_Hat +IG_RWC_Special_Scroll,12214,150,1,1,0,0,0 // 1x Convex_Mirror +IG_RWC_Special_Scroll,12919,200,1,1,0,0,0 // 1x Megaphone_Box +IG_RWC_Special_Scroll,12920,50,1,1,0,0,0 // 1x Enriched_Elunium_Box +IG_RWC_Special_Scroll,12921,50,1,1,0,0,0 // 1x Enriched_Oridecon_Box +IG_RWC_Special_Scroll,4133,2,1,1,0,0,0 // 1x Daydric_Card +IG_RWC_Special_Scroll,4148,2,1,1,0,0,0 // 1x Pharaoh_Card +IG_RWC_Special_Scroll,4105,2,1,1,0,0,0 // 1x Marc_Card +IG_RWC_Special_Scroll,13516,200,1,1,0,0,0 // 1x Royal_Jelly_Box +IG_RWC_Special_Scroll,608,190,50,1,0,0,0 // 50x Seed_Of_Yggdrasil +IG_RWC_Special_Scroll,12903,150,1,1,0,0,0 // 1x Str_Dish_Box + +IG_RWC_Limited_Scroll,522,200,30,1,0,0,0 // 30x Fruit_Of_Mastela +IG_RWC_Limited_Scroll,547,150,10,1,0,0,0 // 10x White_Slim_Potion +IG_RWC_Limited_Scroll,13517,150,1,1,0,0,0 // 1x Yggdrasilberry_Box +IG_RWC_Limited_Scroll,5336,4,1,1,0,0,0 // 1x Guildsman_Recruiter +IG_RWC_Limited_Scroll,12919,150,1,1,0,0,0 // 1x Megaphone_Box +IG_RWC_Limited_Scroll,12922,100,1,1,0,0,0 // 1x Token_Of_Siegfried_Box +IG_RWC_Limited_Scroll,13516,200,1,1,0,0,0 // 1x Royal_Jelly_Box +IG_RWC_Limited_Scroll,12901,44,1,1,0,0,0 // 1x Insurance_Package +IG_RWC_Limited_Scroll,4346,1,1,1,0,0,0 // 1x Ygnizem_Card +IG_RWC_Limited_Scroll,4352,1,50,1,0,0,0 // 50x B_Ygnizem_Card + +IG_Asgard_Scroll,18550,5,1,1,0,0,0 // 1x Asgard_Blessing +IG_Asgard_Scroll,2353,5,1,1,0,0,0 // 1x Odin's_Blessing +IG_Asgard_Scroll,2115,1,1,1,0,0,0 // 1x Valkyrja's_Shield +IG_Asgard_Scroll,607,150,10,1,0,0,0 // 10x Yggdrasilberry +IG_Asgard_Scroll,4133,5,1,1,0,0,0 // 1x Daydric_Card +IG_Asgard_Scroll,5124,1,1,1,0,0,0 // 1x Fricca_Circlet +IG_Asgard_Scroll,12261,2,1,1,0,0,0 // 1x Secret_Medicine +IG_Asgard_Scroll,14601,100,30,1,0,0,0 // 30x Tyr's_Blessing +IG_Asgard_Scroll,12411,100,10,1,0,0,0 // 10x HE_Battle_Manual +IG_Asgard_Scroll,5256,20,1,1,0,0,0 // 1x Valkyrie_Feather_Band +IG_Asgard_Scroll,4412,1,1,1,0,0,0 // 1x Isilla_Card +IG_Asgard_Scroll,14586,100,10,1,0,0,0 // 10x Spark_Candy +IG_Asgard_Scroll,5373,20,1,1,0,0,0 // 1x Darkness_Helm +IG_Asgard_Scroll,12710,120,10,1,0,0,0 // 10x Guyak_Pudding +IG_Asgard_Scroll,12922,120,1,1,0,0,0 // 1x Token_Of_Siegfried_Box +IG_Asgard_Scroll,13720,100,1,1,0,0,0 // 1x Regeneration_Box10 +IG_Asgard_Scroll,12707,150,30,1,0,0,0 // 30x Lucky_Cookie02 + +IG_Ms_Cancer_Scroll,4324,2,1,1,1,0,0 // 1x Garm_Card +IG_Ms_Cancer_Scroll,2345,4,1,1,1,0,0 // 1x Flame_Sprits_Armor_ +IG_Ms_Cancer_Scroll,2565,10,1,1,1,0,0 // 1x Beach_Towel +IG_Ms_Cancer_Scroll,5581,17,1,1,1,0,0 // 1x Cancer_Diadem +IG_Ms_Cancer_Scroll,5582,17,1,1,1,0,0 // 1x Cancer_Crown +IG_Ms_Cancer_Scroll,5210,50,1,1,1,0,0 // 1x Flying_Angel +IG_Ms_Cancer_Scroll,12103,100,1,1,1,0,0 // 1x Bloody_Dead_Branch +IG_Ms_Cancer_Scroll,13710,500,1,1,1,0,0 // 1x Max_Weight_Up_Box +IG_Ms_Cancer_Scroll,16682,1000,1,1,0,0,0 // 1x Boarding_Halter_Box +IG_Ms_Cancer_Scroll,16390,1500,1,1,0,0,0 // 1x BGum_Box_In_Mouth4 +IG_Ms_Cancer_Scroll,12411,1200,3,1,0,0,0 // 3x HE_Battle_Manual +IG_Ms_Cancer_Scroll,12710,1400,3,1,0,0,0 // 3x Guyak_Pudding +IG_Ms_Cancer_Scroll,12211,1700,5,1,0,0,0 // 5x Kafra_Card +IG_Ms_Cancer_Scroll,13609,2000,1,1,0,0,0 // 1x Megaphone_Box5 +IG_Ms_Cancer_Scroll,13539,500,1,1,0,0,0 // 1x Storm_10_Scroll_Box + +IG_RWC_Super_Scroll,4302,1,1,1,1,0,0 // 1x Tao_Gunka_Card +IG_RWC_Super_Scroll,4132,1,1,1,1,0,0 // 1x Mistress_Card +IG_RWC_Super_Scroll,4145,1,1,1,1,0,0 // 1x Berzebub_Card +IG_RWC_Super_Scroll,18603,2,1,1,1,0,0 // 1x Black_Devil_Mask_ +IG_RWC_Super_Scroll,6232,15,1,1,1,0,0 // 1x Guarantee_Armor_9Up +IG_RWC_Super_Scroll,18509,50,1,1,1,0,0 // 1x RWC2010_Indonesia +IG_RWC_Super_Scroll,18580,70,1,1,1,0,0 // 1x Yggdrasil_Crown +IG_RWC_Super_Scroll,2168,80,1,1,1,0,0 // 1x Immuned_Shield +IG_RWC_Super_Scroll,2966,250,1,1,1,0,0 // 1x RWC_2012_Ring +IG_RWC_Super_Scroll,2968,250,1,1,1,0,0 // 1x RWC_2012_Pendant +IG_RWC_Super_Scroll,18740,100,1,1,1,0,0 // 1x Hair_Of_The_Strong +IG_RWC_Super_Scroll,18600,100,1,1,1,0,0 // 1x Cat_Ear_Beret +IG_RWC_Super_Scroll,18601,100,1,1,1,0,0 // 1x Red_Bread_Hat +IG_RWC_Super_Scroll,18508,100,1,1,1,0,0 // 1x Garuda_Hat +IG_RWC_Super_Scroll,16323,300,1,1,0,0,0 // 1x Upg_Clip_Box +IG_RWC_Super_Scroll,16339,1000,1,1,0,0,0 // 1x Upg_Formal_Dress_Box +IG_RWC_Super_Scroll,6635,580,4,1,0,0,0 // 4x Blacksmith_Blessing +IG_RWC_Super_Scroll,6635,1500,2,1,0,0,0 // 2x Blacksmith_Blessing +IG_RWC_Super_Scroll,16753,2500,1,1,0,0,0 // 1x Unbreak_Weap_Box +IG_RWC_Super_Scroll,16755,3000,1,1,0,0,0 // 1x Unbreak_Def_Box + +IG_Leo_Scroll,4441,1,1,1,1,0,0 // 1x Fallen_Bishop_Card +IG_Leo_Scroll,2348,3,1,1,1,0,0 // 1x Wind_Sprits_Armor +IG_Leo_Scroll,2536,5,1,1,1,0,0 // 1x Skin_Of_Ventus +IG_Leo_Scroll,5376,17,1,1,1,0,0 // 1x Satanic_Chain_P +IG_Leo_Scroll,5588,17,1,1,1,0,0 // 1x Leo_Crown +IG_Leo_Scroll,5589,17,1,1,1,0,0 // 1x Leo_Diadem +IG_Leo_Scroll,5334,40,1,1,1,0,0 // 1x Angeling_Wanna_Fly +IG_Leo_Scroll,13710,300,1,1,1,0,0 // 1x Max_Weight_Up_Box +IG_Leo_Scroll,16386,500,1,1,1,0,0 // 1x F_Clover_Box_Mouth4 +IG_Leo_Scroll,12710,700,3,1,0,0,0 // 3x Guyak_Pudding +IG_Leo_Scroll,13287,900,1,1,0,0,0 // 1x Siroma_Icetea_To_Throw +IG_Leo_Scroll,13600,1000,1,1,0,0,0 // 1x Siegfried_Box5 +IG_Leo_Scroll,12411,1700,2,1,0,0,0 // 2x HE_Battle_Manual +IG_Leo_Scroll,13719,1600,1,1,0,0,0 // 1x Regeneration_Box5 +IG_Leo_Scroll,14508,1400,5,1,0,0,0 // 5x Zeny_Scroll +IG_Leo_Scroll,14232,1300,1,1,0,0,0 // 1x Yggdrasilberry_Box_ +IG_Leo_Scroll,13540,500,1,1,0,0,0 // 1x Vermilion_10_Scroll_Box + +IG_Ms_Virgo_Scroll,2347,3,1,1,1,0,0 // 1x Water_Sprits_Armor_ +IG_Ms_Virgo_Scroll,2554,6,1,1,1,0,0 // 1x Piece_Of_Angent_Skin +IG_Ms_Virgo_Scroll,5374,12,1,1,1,0,0 // 1x L_Magestic_Goat +IG_Ms_Virgo_Scroll,5598,17,1,1,1,0,0 // 1x Virgo_Crown +IG_Ms_Virgo_Scroll,5599,17,1,1,1,0,0 // 1x Virgo_Diadem +IG_Ms_Virgo_Scroll,12246,100,1,1,1,0,0 // 1x Magic_Card_Album +IG_Ms_Virgo_Scroll,13857,645,1,1,1,0,0 // 1x Spark_Candy_Box5 +IG_Ms_Virgo_Scroll,13710,300,1,1,1,0,0 // 1x Max_Weight_Up_Box +IG_Ms_Virgo_Scroll,16640,800,1,1,0,0,0 // 1x Life_Ribbon_Box3 +IG_Ms_Virgo_Scroll,14601,1000,1,1,0,0,0 // 1x Tyr's_Blessing +IG_Ms_Virgo_Scroll,12905,1700,1,1,0,0,0 // 1x Int_Dish_Box +IG_Ms_Virgo_Scroll,6024,1600,1,1,0,0,0 // 1x 17Carat_Dia +IG_Ms_Virgo_Scroll,13285,1800,1,1,0,0,0 // 1x Wug_Cocktail_To_Throw +IG_Ms_Virgo_Scroll,12411,1500,3,1,0,0,0 // 3x HE_Battle_Manual +IG_Ms_Virgo_Scroll,13538,500,1,1,0,0,0 // 1x Meteor_10_Scroll_Box + +IG_Lucky_Egg_C6,14596,500,1,1,0,0,0 // 1x Pierre_Treasurebox +IG_Lucky_Egg_C6,607,500,5,1,0,0,0 // 5x Yggdrasilberry +IG_Lucky_Egg_C6,12405,500,10,1,0,0,0 // 10x Underripe_Yggseed +IG_Lucky_Egg_C6,12406,500,2,1,0,0,0 // 2x Psychic_ArmorS +IG_Lucky_Egg_C6,12928,700,5,1,0,0,0 // 5x J_Aspersio_5_Scroll +IG_Lucky_Egg_C6,12265,700,3,1,0,0,0 // 3x Comp_Insurance +IG_Lucky_Egg_C6,12264,700,2,1,0,0,0 // 2x Comp_Bubble_Gum +IG_Lucky_Egg_C6,12263,500,2,1,0,0,0 // 2x Comp_Battle_Manual +IG_Lucky_Egg_C6,12533,1000,1,1,0,0,0 // 1x Blue_Herb_Box2 +IG_Lucky_Egg_C6,12550,1200,1,1,0,0,0 // 1x Poison_Bottle_Box2 +IG_Lucky_Egg_C6,12549,1200,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_Lucky_Egg_C6,12246,50,1,1,1,0,0 // 1x Magic_Card_Album +IG_Lucky_Egg_C6,616,350,1,1,0,0,0 // 1x Old_Card_Album +IG_Lucky_Egg_C6,6234,300,1,1,1,0,0 // 1x Guarantee_Armor_7Up +IG_Lucky_Egg_C6,6230,300,1,1,1,0,0 // 1x Guarantee_Weapon_7Up +IG_Lucky_Egg_C6,5856,300,1,1,1,0,0 // 1x Passion_FB_Hat +IG_Lucky_Egg_C6,5857,300,1,1,1,0,0 // 1x Cool_FB_Hat +IG_Lucky_Egg_C6,5858,300,1,1,1,0,0 // 1x Victory_FB_Hat +IG_Lucky_Egg_C6,5859,100,1,1,1,0,0 // 1x Glory_FB_Hat + +IG_Libra_Scroll,4365,1,1,1,1,0,0 // 1x B_Katrinn_Card +IG_Libra_Scroll,2351,3,1,1,1,0,0 // 1x Earth_Sprits_Armor_ +IG_Libra_Scroll,2576,12,1,1,1,0,0 // 1x Bravery_Bag +IG_Libra_Scroll,5662,17,1,1,1,0,0 // 1x Libra_Crown +IG_Libra_Scroll,5663,17,1,1,1,0,0 // 1x Libra_Diadem +IG_Libra_Scroll,5153,30,1,1,1,0,0 // 1x Angeling_Hairpin +IG_Libra_Scroll,12246,70,1,1,1,0,0 // 1x Magic_Card_Album +IG_Libra_Scroll,13710,400,1,1,1,0,0 // 1x Max_Weight_Up_Box +IG_Libra_Scroll,14362,50,1,1,1,0,0 // 1x Orc_LoadS_Box +IG_Libra_Scroll,16682,600,1,1,0,0,0 // 1x Boarding_Halter_Box +IG_Libra_Scroll,12411,1000,5,1,0,0,0 // 5x HE_Battle_Manual +IG_Libra_Scroll,12710,1100,4,1,0,0,0 // 4x Guyak_Pudding +IG_Libra_Scroll,13534,1200,1,1,0,0,0 // 1x Light_White_Pot_Box +IG_Libra_Scroll,6024,1300,1,1,0,0,0 // 1x 17Carat_Dia +IG_Libra_Scroll,12433,1700,1,1,0,0,0 // 1x Drosera_Herb_Salad +IG_Libra_Scroll,12999,2500,1,1,0,0,0 // 1x Branch_Of_Dead_Tree_Box + +IG_Hallo_Scroll,18543,50,1,1,0,0,0 // 1x Witchs_Hat +IG_Hallo_Scroll,5227,350,1,1,0,0,0 // 1x Red_Deviruchi_Cap +IG_Hallo_Scroll,12901,1350,1,1,0,0,0 // 1x Insurance_Package +IG_Hallo_Scroll,12328,1350,1,1,0,0,0 // 1x Charm_Of_Happiness +IG_Hallo_Scroll,12246,220,1,1,0,0,0 // 1x Magic_Card_Album +IG_Hallo_Scroll,14375,330,1,1,0,0,0 // 1x Holy_Celestial_Axe_Box +IG_Hallo_Scroll,13738,1350,1,1,0,0,0 // 1x Glass_Of_Illusion_Box5 +IG_Hallo_Scroll,13742,600,1,1,0,0,0 // 1x Shadow_Armor_S_Box30 +IG_Hallo_Scroll,12278,1350,5,1,0,0,0 // 5x Alice_Scroll +IG_Hallo_Scroll,6130,1350,1,1,0,0,0 // 1x Ticket_Loli_Ruri +IG_Hallo_Scroll,4340,10,1,1,0,0,0 // 1x Teddy_Bear_Card +IG_Hallo_Scroll,14243,1300,1,1,0,0,0 // 1x Hallow_Ring_Box +IG_Hallo_Scroll,5121,140,1,1,0,0,0 // 1x Zherlthsh_Mask +IG_Hallo_Scroll,12411,150,1,1,0,0,0 // 1x HE_Battle_Manual +IG_Hallo_Scroll,14508,100,30,1,0,0,0 // 30x Zeny_Scroll + +IG_Ms_Scorpio_Scroll,4399,1,1,1,1,0,0 // 1x Thanatos_Card +IG_Ms_Scorpio_Scroll,15000,3,1,1,1,0,0 // 1x Bone_Plate +IG_Ms_Scorpio_Scroll,5789,7,1,1,1,0,0 // 1x Thanatos_Mal_Mask +IG_Ms_Scorpio_Scroll,5676,17,1,1,1,0,0 // 1x Scorpio_Crown +IG_Ms_Scorpio_Scroll,5677,17,1,1,1,0,0 // 1x Scorpio_Diadem +IG_Ms_Scorpio_Scroll,2855,160,1,1,1,0,0 // 1x Whike_Black_Tail +IG_Ms_Scorpio_Scroll,12259,15,1,1,1,0,0 // 1x Miracle_Medicine +IG_Ms_Scorpio_Scroll,13710,300,1,1,1,0,0 // 1x Max_Weight_Up_Box +IG_Ms_Scorpio_Scroll,14604,80,10,1,1,0,0 // 10x Orc_HeroS +IG_Ms_Scorpio_Scroll,14600,600,1,1,0,0,0 // 1x Mental_Potion +IG_Ms_Scorpio_Scroll,12710,700,5,1,0,0,0 // 5x Guyak_Pudding +IG_Ms_Scorpio_Scroll,12411,900,4,1,0,0,0 // 4x HE_Battle_Manual +IG_Ms_Scorpio_Scroll,13286,1100,1,1,0,0,0 // 1x M_Brisket_To_Throw +IG_Ms_Scorpio_Scroll,12906,1300,1,1,0,0,0 // 1x Dex_Dish_Box +IG_Ms_Scorpio_Scroll,14508,2500,5,1,0,0,0 // 5x Zeny_Scroll +IG_Ms_Scorpio_Scroll,13711,2300,1,1,0,0,0 // 1x Small_Life_Potion_Box + +IG_TCG_Card_Scroll,7227,0,1,0,0,0,0 // 1x TCG_Card +IG_TCG_Card_Scroll,12208,150,2,2,0,0,0 // 2x Battle_Manual +IG_TCG_Card_Scroll,12210,150,2,2,0,0,0 // 2x Bubble_Gum +IG_TCG_Card_Scroll,12209,100,2,2,0,0,0 // 2x Insurance +IG_TCG_Card_Scroll,7621,100,3,2,0,0,0 // 3x Token_Of_Siegfried +IG_TCG_Card_Scroll,11501,500,25,2,0,0,0 // 25x Light_White_Pot + +IG_Boitata_Scroll,14523,0,5,0,0,0,0 // 5x Pill_ +IG_Boitata_Scroll,4498,1,1,1,1,0,0 // 1x Sealed_Lady_Tanee_Card +IG_Boitata_Scroll,4484,1,1,1,1,0,0 // 1x Sealed_Mistress_Card +IG_Boitata_Scroll,4493,1,1,1,1,0,0 // 1x Sealed_Tao_Card +IG_Boitata_Scroll,15041,12,1,1,1,0,1 // 1x Boitata_Armor +IG_Boitata_Scroll,18659,35,1,1,1,0,1 // 1x Boitata_Hat +IG_Boitata_Scroll,6234,15,1,1,1,0,0 // 1x Guarantee_Armor_7Up +IG_Boitata_Scroll,6230,15,1,1,1,0,0 // 1x Guarantee_Weapon_7Up +IG_Boitata_Scroll,5785,100,1,1,1,0,1 // 1x Green_Bunny_Hairband +IG_Boitata_Scroll,18645,300,1,1,1,0,1 // 1x Sailor_Hat +IG_Boitata_Scroll,2576,20,1,1,1,0,1 // 1x Bravery_Bag +IG_Boitata_Scroll,2351,50,1,1,1,0,1 // 1x Earth_Sprits_Armor_ +IG_Boitata_Scroll,18539,50,1,1,1,0,1 // 1x Skull_Cap +IG_Boitata_Scroll,17071,100,1,1,0,0,0 // 1x Superb_Fish_Box50 +IG_Boitata_Scroll,12902,1200,1,1,0,0,0 // 1x Bubble_Gum_Box +IG_Boitata_Scroll,12710,1500,10,1,0,0,0 // 10x Guyak_Pudding +IG_Boitata_Scroll,12549,1500,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_Boitata_Scroll,12405,1500,10,1,0,0,0 // 10x Underripe_Yggseed +IG_Boitata_Scroll,13287,1800,10,1,0,0,0 // 10x Siroma_Icetea_To_Throw +IG_Boitata_Scroll,13289,1800,10,1,0,0,0 // 10x Petti_Noodle_To_Throw + +IG_Lucky_Egg_C2,12246,50,1,1,0,0,0 // 1x Magic_Card_Album +IG_Lucky_Egg_C2,12549,900,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_Lucky_Egg_C2,12550,900,1,1,0,0,0 // 1x Poison_Bottle_Box2 +IG_Lucky_Egg_C2,12533,900,1,1,0,0,0 // 1x Blue_Herb_Box2 +IG_Lucky_Egg_C2,6456,200,1,1,0,0,0 // 1x Guarantee_Weapon_5Up +IG_Lucky_Egg_C2,6457,200,1,1,0,0,0 // 1x Guarantee_Armor_5Up +IG_Lucky_Egg_C2,4483,1,1,1,0,0,0 // 1x Sealed_Dracula_Card +IG_Lucky_Egg_C2,4137,1,1,1,0,0,0 // 1x Drake_Card +IG_Lucky_Egg_C2,5581,150,1,1,0,0,0 // 1x Cancer_Diadem +IG_Lucky_Egg_C2,5582,150,1,1,0,0,0 // 1x Cancer_Crown +IG_Lucky_Egg_C2,5226,150,1,1,0,0,0 // 1x Mini_Propeller_ +IG_Lucky_Egg_C2,12900,1000,1,1,1,0,0 // 1x Battle_Manual_Box +IG_Lucky_Egg_C2,12264,800,1,1,0,0,0 // 1x Comp_Bubble_Gum +IG_Lucky_Egg_C2,12265,800,3,1,1,0,0 // 3x Comp_Insurance +IG_Lucky_Egg_C2,12928,800,5,1,1,0,0 // 5x J_Aspersio_5_Scroll +IG_Lucky_Egg_C2,12405,800,10,1,1,0,0 // 10x Underripe_Yggseed +IG_Lucky_Egg_C2,12406,800,2,1,1,0,0 // 2x Psychic_ArmorS +IG_Lucky_Egg_C2,14232,948,1,1,1,0,0 // 1x Yggdrasilberry_Box_ +IG_Lucky_Egg_C2,5573,150,1,1,1,0,0 // 1x Bogy_Horn +IG_Lucky_Egg_C2,15008,150,1,1,1,0,0 // 1x Flame_Sprits_Armor__ +IG_Lucky_Egg_C2,5396,150,1,1,1,0,0 // 1x Jasper_Crest //Duplicated? But has different contents //IG_Lucky_Egg_C6,Yggdrasilberry_Box_,928,1,1,0,0,0 @@ -1961,250 +1960,250 @@ IG_Lucky_Egg_C2,Jasper_Crest,150,1,1,1,0,0 //IG_Lucky_Egg_C6,Victory_FB_Hat,20,1,1,1,0,0 //IG_Lucky_Egg_C6,Glory_FB_Hat,50,1,1,1,0,0 -IG_Lucky_Egg_C9,Comp_Bubble_Gum,1500,3,1,0,0,0 -IG_Lucky_Egg_C9,Battle_Manual_Box,1459,1,1,0,0,0 -IG_Lucky_Egg_C9,Comp_Insurance,1500,3,1,0,0,0 -IG_Lucky_Egg_C9,White_Slim_Pot_Box2,1500,1,1,0,0,0 -IG_Lucky_Egg_C9,Poison_Bottle_Box2,1500,1,1,0,0,0 -IG_Lucky_Egg_C9,Dead_Tree_Branch_Box2,1500,1,1,0,0,0 -IG_Lucky_Egg_C9,Elven_Ears_,10,1,1,1,0,0 -IG_Lucky_Egg_C9,Holy_Marching_Hat_J,300,1,1,1,0,0 -IG_Lucky_Egg_C9,Auger_Of_Spirit,20,1,1,1,0,0 -IG_Lucky_Egg_C9,Orc_Hero_Card,1,1,1,1,0,0 -IG_Lucky_Egg_C9,Flying_Angel,100,1,1,1,0,0 -IG_Lucky_Egg_C9,Guarantee_Armor_7Up,25,1,1,1,0,0 -IG_Lucky_Egg_C9,Guarantee_Weapon_7Up,25,1,1,1,0,0 -IG_Lucky_Egg_C9,Bloody_Dead_Branch,500,1,1,1,0,0 -IG_Lucky_Egg_C9,Magic_Card_Album,50,1,1,1,0,0 -IG_Lucky_Egg_C9,Guarantee_Armor_8Up,5,1,1,1,0,0 -IG_Lucky_Egg_C9,Guarantee_Weapon_8Up,5,1,1,1,0,0 +IG_Lucky_Egg_C9,12264,1500,3,1,0,0,0 // 3x Comp_Bubble_Gum +IG_Lucky_Egg_C9,12900,1459,1,1,0,0,0 // 1x Battle_Manual_Box +IG_Lucky_Egg_C9,12265,1500,3,1,0,0,0 // 3x Comp_Insurance +IG_Lucky_Egg_C9,12549,1500,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_Lucky_Egg_C9,12550,1500,1,1,0,0,0 // 1x Poison_Bottle_Box2 +IG_Lucky_Egg_C9,14234,1500,1,1,0,0,0 // 1x Dead_Tree_Branch_Box2 +IG_Lucky_Egg_C9,18507,10,1,1,1,0,0 // 1x Elven_Ears_ +IG_Lucky_Egg_C9,5654,300,1,1,1,0,0 // 1x Holy_Marching_Hat_J +IG_Lucky_Egg_C9,6396,20,1,1,1,0,0 // 1x Auger_Of_Spirit +IG_Lucky_Egg_C9,4143,1,1,1,1,0,0 // 1x Orc_Hero_Card +IG_Lucky_Egg_C9,5210,100,1,1,1,0,0 // 1x Flying_Angel +IG_Lucky_Egg_C9,6234,25,1,1,1,0,0 // 1x Guarantee_Armor_7Up +IG_Lucky_Egg_C9,6230,25,1,1,1,0,0 // 1x Guarantee_Weapon_7Up +IG_Lucky_Egg_C9,12103,500,1,1,1,0,0 // 1x Bloody_Dead_Branch +IG_Lucky_Egg_C9,12246,50,1,1,1,0,0 // 1x Magic_Card_Album +IG_Lucky_Egg_C9,6233,5,1,1,1,0,0 // 1x Guarantee_Armor_8Up +IG_Lucky_Egg_C9,6229,5,1,1,1,0,0 // 1x Guarantee_Weapon_8Up -IG_Lucky_Egg_C7,Magic_Card_Album,50,1,1,1,0,0 -IG_Lucky_Egg_C7,Yggdrasilberry_Box_,1043,1,1,0,0,0 -IG_Lucky_Egg_C7,Underripe_Yggseed,1000,10,1,0,0,0 -IG_Lucky_Egg_C7,Psychic_ArmorS,1000,2,1,0,0,0 -IG_Lucky_Egg_C7,J_Aspersio_5_Scroll,1000,5,1,0,0,0 -IG_Lucky_Egg_C7,Comp_Insurance,1000,3,1,0,0,0 -IG_Lucky_Egg_C7,Comp_Bubble_Gum,1000,3,1,0,0,0 -IG_Lucky_Egg_C7,Battle_Manual_Box,800,1,1,0,0,0 -IG_Lucky_Egg_C7,Blue_Herb_Box2,1000,1,1,0,0,0 -IG_Lucky_Egg_C7,Poison_Bottle_Box2,1000,1,1,0,0,0 -IG_Lucky_Egg_C7,White_Slim_Pot_Box2,1000,1,1,0,0,0 -IG_Lucky_Egg_C7,Valkyrie_Helm,50,1,1,1,0,0 -IG_Lucky_Egg_C7,Ifrit_Card,1,1,1,1,0,0 -IG_Lucky_Egg_C7,Guarantee_Armor_7Up,25,1,1,1,0,0 -IG_Lucky_Egg_C7,Guarantee_Weapon_7Up,25,1,1,1,0,0 -IG_Lucky_Egg_C7,Guarantee_Armor_9Up,2,1,1,1,0,0 -IG_Lucky_Egg_C7,Guarantee_Weapon_9Up,2,1,1,1,0,0 -IG_Lucky_Egg_C7,Mask_Of_Ifrit,1,1,1,1,0,0 -IG_Lucky_Egg_C7,Ifrit's_Ear,1,1,1,1,0,0 +IG_Lucky_Egg_C7,12246,50,1,1,1,0,0 // 1x Magic_Card_Album +IG_Lucky_Egg_C7,14232,1043,1,1,0,0,0 // 1x Yggdrasilberry_Box_ +IG_Lucky_Egg_C7,12405,1000,10,1,0,0,0 // 10x Underripe_Yggseed +IG_Lucky_Egg_C7,12406,1000,2,1,0,0,0 // 2x Psychic_ArmorS +IG_Lucky_Egg_C7,12928,1000,5,1,0,0,0 // 5x J_Aspersio_5_Scroll +IG_Lucky_Egg_C7,12265,1000,3,1,0,0,0 // 3x Comp_Insurance +IG_Lucky_Egg_C7,12264,1000,3,1,0,0,0 // 3x Comp_Bubble_Gum +IG_Lucky_Egg_C7,12900,800,1,1,0,0,0 // 1x Battle_Manual_Box +IG_Lucky_Egg_C7,12533,1000,1,1,0,0,0 // 1x Blue_Herb_Box2 +IG_Lucky_Egg_C7,12550,1000,1,1,0,0,0 // 1x Poison_Bottle_Box2 +IG_Lucky_Egg_C7,12549,1000,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_Lucky_Egg_C7,5171,50,1,1,1,0,0 // 1x Valkyrie_Helm +IG_Lucky_Egg_C7,4430,1,1,1,1,0,0 // 1x Ifrit_Card +IG_Lucky_Egg_C7,6234,25,1,1,1,0,0 // 1x Guarantee_Armor_7Up +IG_Lucky_Egg_C7,6230,25,1,1,1,0,0 // 1x Guarantee_Weapon_7Up +IG_Lucky_Egg_C7,6232,2,1,1,1,0,0 // 1x Guarantee_Armor_9Up +IG_Lucky_Egg_C7,6228,2,1,1,1,0,0 // 1x Guarantee_Weapon_9Up +IG_Lucky_Egg_C7,5420,1,1,1,1,0,0 // 1x Mask_Of_Ifrit +IG_Lucky_Egg_C7,5421,1,1,1,1,0,0 // 1x Ifrit's_Ear -IG_Lucky_Egg_C8,Yggdrasilberry_Box_,900,1,1,0,0,0 -IG_Lucky_Egg_C8,Bloody_Dead_Branch,95,1,1,1,0,0 -IG_Lucky_Egg_C8,Dead_Tree_Branch_Box2,1000,1,1,0,0,0 -IG_Lucky_Egg_C8,Psychic_ArmorS,1000,2,1,0,0,0 -IG_Lucky_Egg_C8,J_Aspersio_5_Scroll,1000,5,1,0,0,0 -IG_Lucky_Egg_C8,Comp_Insurance,1000,3,1,0,0,0 -IG_Lucky_Egg_C8,Comp_Bubble_Gum,1000,3,1,0,0,0 -IG_Lucky_Egg_C8,Battle_Manual_Box,900,1,1,0,0,0 -IG_Lucky_Egg_C8,Fruit_Of_Mastela_Box2,900,1,1,0,0,0 -IG_Lucky_Egg_C8,Poison_Bottle_Box2,900,1,1,0,0,0 -IG_Lucky_Egg_C8,White_Slim_Pot_Box2,900,1,1,0,0,0 -IG_Lucky_Egg_C8,Magic_Card_Album,50,1,1,1,0,0 -IG_Lucky_Egg_C8,Black_Devil_Mask_,1,1,1,1,0,0 -IG_Lucky_Egg_C8,Guarantee_Armor_7Up,25,1,1,1,0,0 -IG_Lucky_Egg_C8,Guarantee_Weapon_7Up,25,1,1,1,0,0 -IG_Lucky_Egg_C8,Guarantee_Armor_9Up,2,1,1,1,0,0 -IG_Lucky_Egg_C8,Guarantee_Weapon_9Up,2,1,1,1,0,0 -IG_Lucky_Egg_C8,Drooping_Morocc_Minion,150,1,1,1,0,0 -IG_Lucky_Egg_C8,Wanderer's_Sakkat,150,1,1,1,0,0 +IG_Lucky_Egg_C8,14232,900,1,1,0,0,0 // 1x Yggdrasilberry_Box_ +IG_Lucky_Egg_C8,12103,95,1,1,1,0,0 // 1x Bloody_Dead_Branch +IG_Lucky_Egg_C8,14234,1000,1,1,0,0,0 // 1x Dead_Tree_Branch_Box2 +IG_Lucky_Egg_C8,12406,1000,2,1,0,0,0 // 2x Psychic_ArmorS +IG_Lucky_Egg_C8,12928,1000,5,1,0,0,0 // 5x J_Aspersio_5_Scroll +IG_Lucky_Egg_C8,12265,1000,3,1,0,0,0 // 3x Comp_Insurance +IG_Lucky_Egg_C8,12264,1000,3,1,0,0,0 // 3x Comp_Bubble_Gum +IG_Lucky_Egg_C8,12900,900,1,1,0,0,0 // 1x Battle_Manual_Box +IG_Lucky_Egg_C8,12642,900,1,1,0,0,0 // 1x Fruit_Of_Mastela_Box2 +IG_Lucky_Egg_C8,12550,900,1,1,0,0,0 // 1x Poison_Bottle_Box2 +IG_Lucky_Egg_C8,12549,900,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_Lucky_Egg_C8,12246,50,1,1,1,0,0 // 1x Magic_Card_Album +IG_Lucky_Egg_C8,18603,1,1,1,1,0,0 // 1x Black_Devil_Mask_ +IG_Lucky_Egg_C8,6234,25,1,1,1,0,0 // 1x Guarantee_Armor_7Up +IG_Lucky_Egg_C8,6230,25,1,1,1,0,0 // 1x Guarantee_Weapon_7Up +IG_Lucky_Egg_C8,6232,2,1,1,1,0,0 // 1x Guarantee_Armor_9Up +IG_Lucky_Egg_C8,6228,2,1,1,1,0,0 // 1x Guarantee_Weapon_9Up +IG_Lucky_Egg_C8,5671,150,1,1,1,0,0 // 1x Drooping_Morocc_Minion +IG_Lucky_Egg_C8,5579,150,1,1,1,0,0 // 1x Wanderer's_Sakkat -IG_Lucky_Egg_C10,Guarantee_Weapon_8Up,5,1,1,1,0,0 -IG_Lucky_Egg_C10,Guarantee_Armor_8Up,5,1,1,1,0,0 -IG_Lucky_Egg_C10,Magic_Card_Album,50,1,1,1,0,0 -IG_Lucky_Egg_C10,Evil_Marcher_Hat,15,1,1,1,0,0 -IG_Lucky_Egg_C10,Battle_Manual_Box,500,1,1,0,0,0 -IG_Lucky_Egg_C10,Comp_Bubble_Gum,1000,3,1,0,0,0 -IG_Lucky_Egg_C10,Comp_Insurance,1000,3,1,0,0,0 -IG_Lucky_Egg_C10,Poison_Bottle_Box2,1000,1,1,0,0,0 -IG_Lucky_Egg_C10,Bloody_Dead_Branch,100,1,1,1,0,0 -IG_Lucky_Egg_C10,Guarantee_Weapon_5Up,200,1,1,1,0,0 -IG_Lucky_Egg_C10,Guarantee_Armor_5Up,200,1,1,1,0,0 -IG_Lucky_Egg_C10,E_WOB_Rune,900,10,1,0,0,0 -IG_Lucky_Egg_C10,E_WOB_Schwaltz,900,10,1,0,0,0 -IG_Lucky_Egg_C10,E_WOB_Rachel,900,10,1,0,0,0 -IG_Lucky_Egg_C10,E_WOB_Local,900,10,1,0,0,0 -IG_Lucky_Egg_C10,RWC2010_Indonesia,1,1,1,1,0,0 -IG_Lucky_Egg_C10,Sealed_Kiel_Card,1,1,1,1,0,0 -IG_Lucky_Egg_C10,White_Slim_Pot_Box2,800,1,1,0,0,0 -IG_Lucky_Egg_C10,Sealed_B_Ygnizem_Card,1,1,1,1,0,0 -IG_Lucky_Egg_C10,Heart_Eye_Patch1,150,1,1,1,0,0 -IG_Lucky_Egg_C10,Heart_Eye_Patch2,150,1,1,1,0,0 -IG_Lucky_Egg_C10,Boy's_Naivety,400,1,1,0,0,0 -IG_Lucky_Egg_C10,Flaming_Ice,400,1,1,0,0,0 -IG_Lucky_Egg_C10,Tantanmen,400,1,1,0,0,0 -IG_Lucky_Egg_C10,Enchant_Book,22,1,1,1,0,0 +IG_Lucky_Egg_C10,6229,5,1,1,1,0,0 // 1x Guarantee_Weapon_8Up +IG_Lucky_Egg_C10,6233,5,1,1,1,0,0 // 1x Guarantee_Armor_8Up +IG_Lucky_Egg_C10,12246,50,1,1,1,0,0 // 1x Magic_Card_Album +IG_Lucky_Egg_C10,18522,15,1,1,1,0,0 // 1x Evil_Marcher_Hat +IG_Lucky_Egg_C10,12900,500,1,1,0,0,0 // 1x Battle_Manual_Box +IG_Lucky_Egg_C10,12264,1000,3,1,0,0,0 // 3x Comp_Bubble_Gum +IG_Lucky_Egg_C10,12265,1000,3,1,0,0,0 // 3x Comp_Insurance +IG_Lucky_Egg_C10,12550,1000,1,1,0,0,0 // 1x Poison_Bottle_Box2 +IG_Lucky_Egg_C10,12103,100,1,1,1,0,0 // 1x Bloody_Dead_Branch +IG_Lucky_Egg_C10,6456,200,1,1,1,0,0 // 1x Guarantee_Weapon_5Up +IG_Lucky_Egg_C10,6457,200,1,1,1,0,0 // 1x Guarantee_Armor_5Up +IG_Lucky_Egg_C10,12507,900,10,1,0,0,0 // 10x E_WOB_Rune +IG_Lucky_Egg_C10,12508,900,10,1,0,0,0 // 10x E_WOB_Schwaltz +IG_Lucky_Egg_C10,12509,900,10,1,0,0,0 // 10x E_WOB_Rachel +IG_Lucky_Egg_C10,12510,900,10,1,0,0,0 // 10x E_WOB_Local +IG_Lucky_Egg_C10,18509,1,1,1,1,0,0 // 1x RWC2010_Indonesia +IG_Lucky_Egg_C10,4480,1,1,1,1,0,0 // 1x Sealed_Kiel_Card +IG_Lucky_Egg_C10,12549,800,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_Lucky_Egg_C10,4482,1,1,1,1,0,0 // 1x Sealed_B_Ygnizem_Card +IG_Lucky_Egg_C10,19511,150,1,1,1,0,0 // 1x Heart_Eye_Patch1 +IG_Lucky_Egg_C10,19512,150,1,1,1,0,0 // 1x Heart_Eye_Patch2 +IG_Lucky_Egg_C10,12373,400,1,1,0,0,0 // 1x Boy's_Naivety +IG_Lucky_Egg_C10,12374,400,1,1,0,0,0 // 1x Flaming_Ice +IG_Lucky_Egg_C10,12395,400,1,1,0,0,0 // 1x Tantanmen +IG_Lucky_Egg_C10,6484,22,1,1,1,0,0 // 1x Enchant_Book -IG_Wind_Type_Scroll,Gemini_Diadem,100,1,1,1,0,0 -IG_Wind_Type_Scroll,Gemini_Crown,100,1,1,1,0,0 -IG_Wind_Type_Scroll,Libra_Diadem,50,1,1,1,0,0 -IG_Wind_Type_Scroll,Libra_Crown,100,1,1,1,0,0 -IG_Wind_Type_Scroll,Aquarius_Diadem,100,1,1,1,0,0 -IG_Wind_Type_Scroll,Aquarius_Crown,100,1,1,1,0,0 -IG_Wind_Type_Scroll,Snowman_Hat_Box,5,1,1,1,0,0 -IG_Wind_Type_Scroll,Sunglasses_Bball_Hat,234,1,1,1,0,0 -IG_Wind_Type_Scroll,Hankie_In_Mouth,50,1,1,1,0,0 -IG_Wind_Type_Scroll,13870,50,1,1,0,0,0 -IG_Wind_Type_Scroll,Neuralizer_Box,10,1,1,1,0,0 -IG_Wind_Type_Scroll,Battle_Manual_Box,1000,1,1,0,0,0 -IG_Wind_Type_Scroll,Kafra_Card_Box,1000,1,1,0,0,0 -IG_Wind_Type_Scroll,Bloody_Dead_Branch,500,1,1,0,0,0 -IG_Wind_Type_Scroll,Spark_Candy_Box10,1500,1,1,0,0,0 -IG_Wind_Type_Scroll,Str_Dish_Box,1200,1,1,0,0,0 -IG_Wind_Type_Scroll,Int_Dish_Box,1200,1,1,0,0,0 -IG_Wind_Type_Scroll,Token_Of_Siegfried_Box,1200,1,1,0,0,0 -IG_Wind_Type_Scroll,Garm_Card,1,1,1,1,0,0 -IG_Wind_Type_Scroll,Fruit_Of_Mastela_Box2,1500,1,1,0,0,0 +IG_Wind_Type_Scroll,5569,100,1,1,1,0,0 // 1x Gemini_Diadem +IG_Wind_Type_Scroll,5570,100,1,1,1,0,0 // 1x Gemini_Crown +IG_Wind_Type_Scroll,5663,50,1,1,1,0,0 // 1x Libra_Diadem +IG_Wind_Type_Scroll,5662,100,1,1,1,0,0 // 1x Libra_Crown +IG_Wind_Type_Scroll,5512,100,1,1,1,0,0 // 1x Aquarius_Diadem +IG_Wind_Type_Scroll,5513,100,1,1,1,0,0 // 1x Aquarius_Crown +IG_Wind_Type_Scroll,16543,5,1,1,1,0,0 // 1x Snowman_Hat_Box +IG_Wind_Type_Scroll,18663,234,1,1,1,0,0 // 1x Sunglasses_Bball_Hat +IG_Wind_Type_Scroll,18670,50,1,1,1,0,0 // 1x Hankie_In_Mouth +IG_Wind_Type_Scroll,13870,50,1,1,0,0,0 // 1x New_Style_Box +IG_Wind_Type_Scroll,12911,10,1,1,1,0,0 // 1x Neuralizer_Box +IG_Wind_Type_Scroll,12900,1000,1,1,0,0,0 // 1x Battle_Manual_Box +IG_Wind_Type_Scroll,12909,1000,1,1,0,0,0 // 1x Kafra_Card_Box +IG_Wind_Type_Scroll,12103,500,1,1,0,0,0 // 1x Bloody_Dead_Branch +IG_Wind_Type_Scroll,13858,1500,1,1,0,0,0 // 1x Spark_Candy_Box10 +IG_Wind_Type_Scroll,12903,1200,1,1,0,0,0 // 1x Str_Dish_Box +IG_Wind_Type_Scroll,12905,1200,1,1,0,0,0 // 1x Int_Dish_Box +IG_Wind_Type_Scroll,12922,1200,1,1,0,0,0 // 1x Token_Of_Siegfried_Box +IG_Wind_Type_Scroll,4324,1,1,1,1,0,0 // 1x Garm_Card +IG_Wind_Type_Scroll,12642,1500,1,1,0,0,0 // 1x Fruit_Of_Mastela_Box2 -IG_Lucky_Egg_C3,Magic_Card_Album,50,1,1,1,0,0 -IG_Lucky_Egg_C3,White_Slim_Pot_Box2,800,1,1,0,0,0 -IG_Lucky_Egg_C3,Poison_Bottle_Box2,800,1,1,0,0,0 -IG_Lucky_Egg_C3,Blue_Herb_Box2,800,1,1,0,0,0 -IG_Lucky_Egg_C3,Chung_E_Pet_Coupon,500,1,1,1,0,0 -IG_Lucky_Egg_C3,Succu_Pet_Coupon,500,1,1,1,0,0 -IG_Lucky_Egg_C3,Imp_Pet_Coupon,500,1,1,1,0,0 -IG_Lucky_Egg_C3,Leo_Crown,150,1,1,1,0,0 -IG_Lucky_Egg_C3,Dress_Hat,100,1,1,1,0,0 -IG_Lucky_Egg_C3,Sunglasses_,10,1,1,1,0,0 -IG_Lucky_Egg_C3,Battle_Manual_Box,489,1,1,0,0,0 -IG_Lucky_Egg_C3,Comp_Bubble_Gum,800,3,1,0,0,0 -IG_Lucky_Egg_C3,Comp_Insurance,800,3,1,0,0,0 -IG_Lucky_Egg_C3,J_Aspersio_5_Scroll,800,5,1,0,0,0 -IG_Lucky_Egg_C3,Underripe_Yggseed,800,10,1,0,0,0 -IG_Lucky_Egg_C3,Psychic_ArmorS,800,2,1,0,0,0 -IG_Lucky_Egg_C3,Yggdrasilberry_Box_,800,1,1,0,0,0 -IG_Lucky_Egg_C3,Upg_Buckler_Box,100,1,1,1,0,0 -IG_Lucky_Egg_C3,Flame_Sprits_Armor__,200,1,1,1,0,0 -IG_Lucky_Egg_C3,Sealed_Kiel_Card,1,1,1,1,0,0 -IG_Lucky_Egg_C3,Donut_In_Mouth,150,1,1,1,0,0 -IG_Lucky_Egg_C3,5593,50,1,1,1,0,0 +IG_Lucky_Egg_C3,12246,50,1,1,1,0,0 // 1x Magic_Card_Album +IG_Lucky_Egg_C3,12549,800,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_Lucky_Egg_C3,12550,800,1,1,0,0,0 // 1x Poison_Bottle_Box2 +IG_Lucky_Egg_C3,12533,800,1,1,0,0,0 // 1x Blue_Herb_Box2 +IG_Lucky_Egg_C3,6118,500,1,1,1,0,0 // 1x Chung_E_Pet_Coupon +IG_Lucky_Egg_C3,6116,500,1,1,1,0,0 // 1x Succu_Pet_Coupon +IG_Lucky_Egg_C3,6117,500,1,1,1,0,0 // 1x Imp_Pet_Coupon +IG_Lucky_Egg_C3,5588,150,1,1,1,0,0 // 1x Leo_Crown +IG_Lucky_Egg_C3,5211,100,1,1,1,0,0 // 1x Dress_Hat +IG_Lucky_Egg_C3,2202,10,1,1,1,0,0 // 1x Sunglasses_ +IG_Lucky_Egg_C3,12900,489,1,1,0,0,0 // 1x Battle_Manual_Box +IG_Lucky_Egg_C3,12264,800,3,1,0,0,0 // 3x Comp_Bubble_Gum +IG_Lucky_Egg_C3,12265,800,3,1,0,0,0 // 3x Comp_Insurance +IG_Lucky_Egg_C3,12928,800,5,1,0,0,0 // 5x J_Aspersio_5_Scroll +IG_Lucky_Egg_C3,12405,800,10,1,0,0,0 // 10x Underripe_Yggseed +IG_Lucky_Egg_C3,12406,800,2,1,0,0,0 // 2x Psychic_ArmorS +IG_Lucky_Egg_C3,14232,800,1,1,0,0,0 // 1x Yggdrasilberry_Box_ +IG_Lucky_Egg_C3,16307,100,1,1,1,0,0 // 1x Upg_Buckler_Box +IG_Lucky_Egg_C3,15008,200,1,1,1,0,0 // 1x Flame_Sprits_Armor__ +IG_Lucky_Egg_C3,4480,1,1,1,1,0,0 // 1x Sealed_Kiel_Card +IG_Lucky_Egg_C3,5594,150,1,1,1,0,0 // 1x Donut_In_Mouth +IG_Lucky_Egg_C3,5593,50,1,1,1,0,0 // 1x Rabbit_Bonnet_ -IG_Lucky_Egg_C4,White_Slim_Pot_Box2,790,1,1,0,0,0 -IG_Lucky_Egg_C4,Poison_Bottle_Box2,720,1,1,0,0,0 -IG_Lucky_Egg_C4,Blue_Herb_Box2,720,1,1,0,0,0 -IG_Lucky_Egg_C4,Battle_Manual_Box,700,1,1,0,0,0 -IG_Lucky_Egg_C4,J_Aspersio_5_Scroll,720,5,1,0,0,0 -IG_Lucky_Egg_C4,Deviling_Card,1,1,1,1,0,0 -IG_Lucky_Egg_C4,Comp_Bubble_Gum,720,3,1,0,0,0 -IG_Lucky_Egg_C4,Comp_Insurance,720,3,1,0,0,0 -IG_Lucky_Egg_C4,Underripe_Yggseed,720,10,1,0,0,0 -IG_Lucky_Egg_C4,Psychic_ArmorS,720,2,1,0,0,0 -IG_Lucky_Egg_C4,Yggdrasilberry_Box_,720,1,1,0,0,0 -IG_Lucky_Egg_C4,Sealed_B_Ygnizem_Card,1,1,1,1,0,0 -IG_Lucky_Egg_C4,Lunatic_Hat_Box,200,1,1,1,0,0 -IG_Lucky_Egg_C4,Necromencer's_Hood,200,1,1,1,0,0 -IG_Lucky_Egg_C4,Fried_Egg,200,1,1,1,0,0 -IG_Lucky_Egg_C4,Sagittarius_Crown,200,1,1,1,0,0 -IG_Lucky_Egg_C4,Savage_Baby_Hat,198,1,1,1,0,0 -IG_Lucky_Egg_C4,Fur_Seal_Hat_Box,200,1,1,1,0,0 -IG_Lucky_Egg_C4,Chung_E_Pet_Coupon,500,1,1,1,0,0 -IG_Lucky_Egg_C4,Succu_Pet_Coupon,500,1,1,1,0,0 -IG_Lucky_Egg_C4,Imp_Pet_Coupon,500,1,1,1,0,0 -IG_Lucky_Egg_C4,Magic_Card_Album,50,1,1,1,0,0 +IG_Lucky_Egg_C4,12549,790,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_Lucky_Egg_C4,12550,720,1,1,0,0,0 // 1x Poison_Bottle_Box2 +IG_Lucky_Egg_C4,12533,720,1,1,0,0,0 // 1x Blue_Herb_Box2 +IG_Lucky_Egg_C4,12900,700,1,1,0,0,0 // 1x Battle_Manual_Box +IG_Lucky_Egg_C4,12928,720,5,1,0,0,0 // 5x J_Aspersio_5_Scroll +IG_Lucky_Egg_C4,4174,1,1,1,1,0,0 // 1x Deviling_Card +IG_Lucky_Egg_C4,12264,720,3,1,0,0,0 // 3x Comp_Bubble_Gum +IG_Lucky_Egg_C4,12265,720,3,1,0,0,0 // 3x Comp_Insurance +IG_Lucky_Egg_C4,12405,720,10,1,0,0,0 // 10x Underripe_Yggseed +IG_Lucky_Egg_C4,12406,720,2,1,0,0,0 // 2x Psychic_ArmorS +IG_Lucky_Egg_C4,14232,720,1,1,0,0,0 // 1x Yggdrasilberry_Box_ +IG_Lucky_Egg_C4,4482,1,1,1,1,0,0 // 1x Sealed_B_Ygnizem_Card +IG_Lucky_Egg_C4,16132,200,1,1,1,0,0 // 1x Lunatic_Hat_Box +IG_Lucky_Egg_C4,5502,200,1,1,1,0,0 // 1x Necromencer's_Hood +IG_Lucky_Egg_C4,5365,200,1,1,1,0,0 // 1x Fried_Egg +IG_Lucky_Egg_C4,5739,200,1,1,1,0,0 // 1x Sagittarius_Crown +IG_Lucky_Egg_C4,5572,198,1,1,1,0,0 // 1x Savage_Baby_Hat +IG_Lucky_Egg_C4,16237,200,1,1,1,0,0 // 1x Fur_Seal_Hat_Box +IG_Lucky_Egg_C4,6118,500,1,1,1,0,0 // 1x Chung_E_Pet_Coupon +IG_Lucky_Egg_C4,6116,500,1,1,1,0,0 // 1x Succu_Pet_Coupon +IG_Lucky_Egg_C4,6117,500,1,1,1,0,0 // 1x Imp_Pet_Coupon +IG_Lucky_Egg_C4,12246,50,1,1,1,0,0 // 1x Magic_Card_Album -IG_Lucky_Egg_C5,Yggdrasilberry_Box_,900,1,1,0,0,0 -IG_Lucky_Egg_C5,Underripe_Yggseed,900,10,1,0,0,0 -IG_Lucky_Egg_C5,Psychic_ArmorS,900,2,1,0,0,0 -IG_Lucky_Egg_C5,J_Aspersio_5_Scroll,900,5,1,0,0,0 -IG_Lucky_Egg_C5,Vanberk_Card,1,1,1,1,0,0 -IG_Lucky_Egg_C5,Sealed_Ktullanux_Card,1,1,1,1,0,0 -IG_Lucky_Egg_C5,Comp_Bubble_Gum,900,3,1,0,0,0 -IG_Lucky_Egg_C5,Comp_Insurance,900,3,1,0,0,0 -IG_Lucky_Egg_C5,Battle_Manual_Box,800,1,1,0,0,0 -IG_Lucky_Egg_C5,Blue_Herb_Box2,800,1,1,0,0,0 -IG_Lucky_Egg_C5,Poison_Bottle_Box2,800,1,1,0,0,0 -IG_Lucky_Egg_C5,White_Slim_Pot_Box2,800,1,1,0,0,0 -IG_Lucky_Egg_C5,Magic_Card_Album,50,1,1,1,0,0 -IG_Lucky_Egg_C5,Magestic_Goat_,150,1,1,1,0,0 -IG_Lucky_Egg_C5,Fallen_Angel_Wing,1,1,1,1,0,0 -IG_Lucky_Egg_C5,Delicious_Shaved_Ice,299,1,1,1,0,0 -IG_Lucky_Egg_C5,Fit_Pipe,299,1,1,1,0,0 -IG_Lucky_Egg_C5,Gril's_Naivety,299,1,1,1,0,0 -IG_Lucky_Egg_C5,Ring_Of_Flame_Lord,50,1,1,1,0,0 -IG_Lucky_Egg_C5,Samambaia_Box,200,1,1,1,0,0 -IG_Lucky_Egg_C5,Ring_Of_Resonance,50,1,1,1,0,0 +IG_Lucky_Egg_C5,14232,900,1,1,0,0,0 // 1x Yggdrasilberry_Box_ +IG_Lucky_Egg_C5,12405,900,10,1,0,0,0 // 10x Underripe_Yggseed +IG_Lucky_Egg_C5,12406,900,2,1,0,0,0 // 2x Psychic_ArmorS +IG_Lucky_Egg_C5,12928,900,5,1,0,0,0 // 5x J_Aspersio_5_Scroll +IG_Lucky_Egg_C5,4411,1,1,1,1,0,0 // 1x Vanberk_Card +IG_Lucky_Egg_C5,4481,1,1,1,1,0,0 // 1x Sealed_Ktullanux_Card +IG_Lucky_Egg_C5,12264,900,3,1,0,0,0 // 3x Comp_Bubble_Gum +IG_Lucky_Egg_C5,12265,900,3,1,0,0,0 // 3x Comp_Insurance +IG_Lucky_Egg_C5,12900,800,1,1,0,0,0 // 1x Battle_Manual_Box +IG_Lucky_Egg_C5,12533,800,1,1,0,0,0 // 1x Blue_Herb_Box2 +IG_Lucky_Egg_C5,12550,800,1,1,0,0,0 // 1x Poison_Bottle_Box2 +IG_Lucky_Egg_C5,12549,800,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_Lucky_Egg_C5,12246,50,1,1,1,0,0 // 1x Magic_Card_Album +IG_Lucky_Egg_C5,5160,150,1,1,1,0,0 // 1x Magestic_Goat_ +IG_Lucky_Egg_C5,2589,1,1,1,1,0,0 // 1x Fallen_Angel_Wing +IG_Lucky_Egg_C5,12361,299,1,1,1,0,0 // 1x Delicious_Shaved_Ice +IG_Lucky_Egg_C5,12363,299,1,1,1,0,0 // 1x Fit_Pipe +IG_Lucky_Egg_C5,12370,299,1,1,1,0,0 // 1x Gril's_Naivety +IG_Lucky_Egg_C5,2678,50,1,1,1,0,0 // 1x Ring_Of_Flame_Lord +IG_Lucky_Egg_C5,14494,200,1,1,1,0,0 // 1x Samambaia_Box +IG_Lucky_Egg_C5,2679,50,1,1,1,0,0 // 1x Ring_Of_Resonance -IG_Weather_Report_Box,19507,0,1,0,0,0,0 //Fine_Sun -IG_Weather_Report_Box,Rainbow,0,1,0,0,0,0 -IG_Weather_Report_Box,Rain_Cloud,0,1,0,0,0,0 -IG_Weather_Report_Box,Lightning_Cloud,0,1,0,0,0,0 +IG_Weather_Report_Box,19507,0,1,0,0,0,0 // 1x Clear_Sun +IG_Weather_Report_Box,19518,0,1,0,0,0,0 // 1x Rainbow +IG_Weather_Report_Box,19520,0,1,0,0,0,0 // 1x Rain_Cloud +IG_Weather_Report_Box,19519,0,1,0,0,0,0 // 1x Lightning_Cloud -IG_Comin_Actor_Box,Charlie_Beard,0,1,0,0,0,0 -IG_Comin_Actor_Box,Charlie_Hat,0,1,0,0,0,0 +IG_Comin_Actor_Box,19514,0,1,0,0,0,0 // 1x Charlie_Beard +IG_Comin_Actor_Box,19521,0,1,0,0,0,0 // 1x Charlie_Hat -IG_Hen_Set_Box,Chicken_Beak,0,1,0,0,0,0 -IG_Hen_Set_Box,Cocks_Comb,0,1,0,0,0,0 +IG_Hen_Set_Box,19513,0,1,0,0,0,0 // 1x Chicken_Beak +IG_Hen_Set_Box,19517,0,1,0,0,0,0 // 1x Cocks_Comb -IG_Lucky_Egg_C,Sealed_Mistress_Card,1,1,1,1,0,0 -IG_Lucky_Egg_C,Magic_Card_Album,50,1,1,1,0,0 -IG_Lucky_Egg_C,White_Slim_Pot_Box2,1500,1,1,0,0,0 -IG_Lucky_Egg_C,Poison_Bottle_Box2,1500,1,1,0,0,0 -IG_Lucky_Egg_C,Blue_Herb_Box2,1500,1,1,0,0,0 -IG_Lucky_Egg_C,Chung_E_Pet_Coupon,1200,1,1,0,0,0 -IG_Lucky_Egg_C,Succu_Pet_Coupon,1200,1,1,0,0,0 -IG_Lucky_Egg_C,Imp_Pet_Coupon,1200,1,1,0,0,0 -IG_Lucky_Egg_C,Guarantee_Weapon_5Up,200,1,1,0,0,0 -IG_Lucky_Egg_C,Guarantee_Armor_5Up,200,1,1,0,0,0 -IG_Lucky_Egg_C,Crown_,290,1,1,0,0,0 -IG_Lucky_Egg_C,Sharp_Gear_,250,1,1,0,0,0 -IG_Lucky_Egg_C,Ribbon_Of_Bride,50,1,1,1,0,0 -IG_Lucky_Egg_C,Odin's_Blessing,599,1,1,0,0,0 -IG_Lucky_Egg_C,Archangel_Wing,50,1,1,1,0,0 -IG_Lucky_Egg_C,Elven_Ears_,10,1,1,1,0,0 -IG_Lucky_Egg_C,Rabbit_Earplug,200,1,1,0,0,0 +IG_Lucky_Egg_C,4484,1,1,1,1,0,0 // 1x Sealed_Mistress_Card +IG_Lucky_Egg_C,12246,50,1,1,1,0,0 // 1x Magic_Card_Album +IG_Lucky_Egg_C,12549,1500,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_Lucky_Egg_C,12550,1500,1,1,0,0,0 // 1x Poison_Bottle_Box2 +IG_Lucky_Egg_C,12533,1500,1,1,0,0,0 // 1x Blue_Herb_Box2 +IG_Lucky_Egg_C,6118,1200,1,1,0,0,0 // 1x Chung_E_Pet_Coupon +IG_Lucky_Egg_C,6116,1200,1,1,0,0,0 // 1x Succu_Pet_Coupon +IG_Lucky_Egg_C,6117,1200,1,1,0,0,0 // 1x Imp_Pet_Coupon +IG_Lucky_Egg_C,6456,200,1,1,0,0,0 // 1x Guarantee_Weapon_5Up +IG_Lucky_Egg_C,6457,200,1,1,0,0,0 // 1x Guarantee_Armor_5Up +IG_Lucky_Egg_C,5165,290,1,1,0,0,0 // 1x Crown_ +IG_Lucky_Egg_C,5161,250,1,1,0,0,0 // 1x Sharp_Gear_ +IG_Lucky_Egg_C,5801,50,1,1,1,0,0 // 1x Ribbon_Of_Bride +IG_Lucky_Egg_C,2353,599,1,1,0,0,0 // 1x Odin's_Blessing +IG_Lucky_Egg_C,2573,50,1,1,1,0,0 // 1x Archangel_Wing +IG_Lucky_Egg_C,18507,10,1,1,1,0,0 // 1x Elven_Ears_ +IG_Lucky_Egg_C,5520,200,1,1,0,0,0 // 1x Rabbit_Earplug -IG_Water_Type_Scroll,Cancer_Diadem,150,1,1,1,0,0 -IG_Water_Type_Scroll,Cancer_Crown,150,1,1,1,0,0 -IG_Water_Type_Scroll,Scorpio_Diadem,60,1,1,1,0,0 -IG_Water_Type_Scroll,Scorpio_Crown,60,1,1,1,0,0 -IG_Water_Type_Scroll,Pisces_Diadem,110,1,1,1,0,0 -IG_Water_Type_Scroll,Pisces_Crown,150,1,1,1,0,0 -IG_Water_Type_Scroll,Wizard_Left_Eye,20,1,1,1,0,0 -IG_Water_Type_Scroll,Indi_Feather_Band,266,1,1,1,0,0 -IG_Water_Type_Scroll,Unbreak_Weap_Box,300,1,1,0,0,0 -IG_Water_Type_Scroll,Unbreak_Def_Box,300,1,1,0,0,0 -IG_Water_Type_Scroll,Token_Of_Siegfried_Box,1500,1,1,0,0,0 -IG_Water_Type_Scroll,Bubble_Gum_Box,1500,1,1,0,0,0 -IG_Water_Type_Scroll,Magic_Card_Album,100,1,1,0,0,0 -IG_Water_Type_Scroll,Agi_Dish_Box,1900,1,1,0,0,0 -IG_Water_Type_Scroll,Dex_Dish_Box,1900,1,1,0,0,0 -IG_Water_Type_Scroll,Donut_In_Mouth,10,1,1,1,0,0 -IG_Water_Type_Scroll,Robo_Eye_Box,20,1,1,1,0,0 -IG_Water_Type_Scroll,Sealed_TurtleG_Card,1,1,1,1,0,0 -IG_Water_Type_Scroll,Sealed_Amon_Ra_Card,3,1,1,1,0,0 -IG_Water_Type_Scroll,Diabolic_Scroll,1500,5,1,0,0,0 +IG_Water_Type_Scroll,5581,150,1,1,1,0,0 // 1x Cancer_Diadem +IG_Water_Type_Scroll,5582,150,1,1,1,0,0 // 1x Cancer_Crown +IG_Water_Type_Scroll,5677,60,1,1,1,0,0 // 1x Scorpio_Diadem +IG_Water_Type_Scroll,5676,60,1,1,1,0,0 // 1x Scorpio_Crown +IG_Water_Type_Scroll,5514,110,1,1,1,0,0 // 1x Pisces_Diadem +IG_Water_Type_Scroll,5515,150,1,1,1,0,0 // 1x Pisces_Crown +IG_Water_Type_Scroll,2914,20,1,1,1,0,0 // 1x Wizard_Left_Eye +IG_Water_Type_Scroll,18660,266,1,1,1,0,0 // 1x Indi_Feather_Band +IG_Water_Type_Scroll,16753,300,1,1,0,0,0 // 1x Unbreak_Weap_Box +IG_Water_Type_Scroll,16755,300,1,1,0,0,0 // 1x Unbreak_Def_Box +IG_Water_Type_Scroll,12922,1500,1,1,0,0,0 // 1x Token_Of_Siegfried_Box +IG_Water_Type_Scroll,12902,1500,1,1,0,0,0 // 1x Bubble_Gum_Box +IG_Water_Type_Scroll,12246,100,1,1,0,0,0 // 1x Magic_Card_Album +IG_Water_Type_Scroll,12904,1900,1,1,0,0,0 // 1x Agi_Dish_Box +IG_Water_Type_Scroll,12906,1900,1,1,0,0,0 // 1x Dex_Dish_Box +IG_Water_Type_Scroll,5594,10,1,1,1,0,0 // 1x Donut_In_Mouth +IG_Water_Type_Scroll,13937,20,1,1,1,0,0 // 1x Robo_Eye_Box +IG_Water_Type_Scroll,4494,1,1,1,1,0,0 // 1x Sealed_TurtleG_Card +IG_Water_Type_Scroll,4495,3,1,1,1,0,0 // 1x Sealed_Amon_Ra_Card +IG_Water_Type_Scroll,12787,1500,5,1,0,0,0 // 5x Diabolic_Scroll -IG_Earth_Type_Scroll,5745,150,1,1,1,0,0 -IG_Earth_Type_Scroll,5744,150,1,1,1,0,0 -IG_Earth_Type_Scroll,Virgo_Diadem,150,1,1,1,0,0 -IG_Earth_Type_Scroll,Virgo_Crown,150,1,1,1,0,0 -IG_Earth_Type_Scroll,Taurus_Diadem,150,1,1,1,0,0 -IG_Earth_Type_Scroll,Taurus_Crown,150,1,1,1,0,0 -IG_Earth_Type_Scroll,Teardrop,50,1,1,1,0,0 -IG_Earth_Type_Scroll,Abacus_In_Mouth,300,1,1,1,0,0 -IG_Earth_Type_Scroll,Unbreak_Weap_Box,194,1,1,0,0,0 -IG_Earth_Type_Scroll,Unbreak_Def_Box,194,1,1,0,0,0 -IG_Earth_Type_Scroll,Token_Of_Siegfried_Box,1600,1,1,0,0,0 -IG_Earth_Type_Scroll,Bubble_Gum_Box,1600,1,1,0,0,0 -IG_Earth_Type_Scroll,Battle_Manual_Box,1600,1,1,0,0,0 -IG_Earth_Type_Scroll,Balloon_Hat,5,1,1,1,0,0 -IG_Earth_Type_Scroll,Hexagon_Spectacles,300,1,1,1,0,0 -IG_Earth_Type_Scroll,Rabbit_Bonnet,5,1,1,1,0,0 -IG_Earth_Type_Scroll,Hen_Set_Box,50,1,1,1,0,0 -IG_Earth_Type_Scroll,Sealed_Knight_WS_Card,1,1,1,1,0,0 -IG_Earth_Type_Scroll,Sealed_Lady_Tanee_Card,1,1,1,1,0,0 -IG_Earth_Type_Scroll,Silvervine_Fruit_Box10,1600,1,1,0,0,0 -IG_Earth_Type_Scroll,Diabolic_Scroll,1600,5,1,0,0,0 +IG_Earth_Type_Scroll,5745,150,1,1,1,0,0 // 1x Capricon_Diadem +IG_Earth_Type_Scroll,5744,150,1,1,1,0,0 // 1x Capricon_Crown +IG_Earth_Type_Scroll,5599,150,1,1,1,0,0 // 1x Virgo_Diadem +IG_Earth_Type_Scroll,5598,150,1,1,1,0,0 // 1x Virgo_Crown +IG_Earth_Type_Scroll,5549,150,1,1,1,0,0 // 1x Taurus_Diadem +IG_Earth_Type_Scroll,5550,150,1,1,1,0,0 // 1x Taurus_Crown +IG_Earth_Type_Scroll,18682,50,1,1,1,0,0 // 1x Teardrop +IG_Earth_Type_Scroll,18679,300,1,1,1,0,0 // 1x Abacus_In_Mouth +IG_Earth_Type_Scroll,16753,194,1,1,0,0,0 // 1x Unbreak_Weap_Box +IG_Earth_Type_Scroll,16755,194,1,1,0,0,0 // 1x Unbreak_Def_Box +IG_Earth_Type_Scroll,12922,1600,1,1,0,0,0 // 1x Token_Of_Siegfried_Box +IG_Earth_Type_Scroll,12902,1600,1,1,0,0,0 // 1x Bubble_Gum_Box +IG_Earth_Type_Scroll,12900,1600,1,1,0,0,0 // 1x Battle_Manual_Box +IG_Earth_Type_Scroll,5379,5,1,1,1,0,0 // 1x Balloon_Hat +IG_Earth_Type_Scroll,18676,300,1,1,1,0,0 // 1x Hexagon_Spectacles +IG_Earth_Type_Scroll,5568,5,1,1,1,0,0 // 1x Rabbit_Bonnet +IG_Earth_Type_Scroll,16976,50,1,1,1,0,0 // 1x Hen_Set_Box +IG_Earth_Type_Scroll,4497,1,1,1,1,0,0 // 1x Sealed_Knight_WS_Card +IG_Earth_Type_Scroll,4498,1,1,1,1,0,0 // 1x Sealed_Lady_Tanee_Card +IG_Earth_Type_Scroll,16770,1600,1,1,0,0,0 // 1x Silvervine_Fruit_Box10 +IG_Earth_Type_Scroll,12787,1600,5,1,0,0,0 // 5x Diabolic_Scroll //Duplicated? //IG_Earth_Type_Scroll,5745,150,1,1,1,0,0 @@ -2229,469 +2228,469 @@ IG_Earth_Type_Scroll,Diabolic_Scroll,1600,5,1,0,0,0 //IG_Earth_Type_Scroll,Fruit_Of_Mastela_Box2,1600,1,1,0,0,0 //The different only here //IG_Earth_Type_Scroll,Diabolic_Scroll,1600,5,1,0,0,0 -IG_Splash_Scroll,Songpyun_Box50,1200,1,1,0,0,0 -IG_Splash_Scroll,Love_Chick_Hat,130,1,1,1,0,0 -IG_Splash_Scroll,Convex_Mirror_Box,800,1,1,0,0,0 -IG_Splash_Scroll,Megaphone_Box,700,1,1,0,0,0 -IG_Splash_Scroll,Job_Manual50_Box,500,1,1,0,0,0 -IG_Splash_Scroll,Token_Of_Siegfried_Box,800,1,1,0,0,0 -IG_Splash_Scroll,Splash_Hat,50,1,1,1,0,1 -IG_Splash_Scroll,Gryphon_Hat,150,1,1,1,0,0 -IG_Splash_Scroll,Guarantee_Weapon_7Up,70,1,1,1,0,0 -IG_Splash_Scroll,Kafra_Card_Box,800,1,1,0,0,0 -IG_Splash_Scroll,Psychic_ArmorS,500,10,1,0,0,0 -IG_Splash_Scroll,Guarantee_Armor_7Up,150,1,1,1,0,0 -IG_Splash_Scroll,Yggdrasilberry_Box_,600,1,1,0,0,0 -IG_Splash_Scroll,Enchant_Book,500,1,1,1,0,0 -IG_Splash_Scroll,Str_Dish_Box,1300,1,1,0,0,0 -IG_Splash_Scroll,Dex_Dish_Box,1749,1,1,0,0,0 -IG_Splash_Scroll,B_Eremes_Card,1,1,1,1,0,0 +IG_Splash_Scroll,12822,1200,1,1,0,0,0 // 1x Songpyun_Box50 +IG_Splash_Scroll,5822,130,1,1,1,0,0 // 1x Love_Chick_Hat +IG_Splash_Scroll,12912,800,1,1,0,0,0 // 1x Convex_Mirror_Box +IG_Splash_Scroll,12919,700,1,1,0,0,0 // 1x Megaphone_Box +IG_Splash_Scroll,13990,500,1,1,0,0,0 // 1x Job_Manual50_Box +IG_Splash_Scroll,12922,800,1,1,0,0,0 // 1x Token_Of_Siegfried_Box +IG_Splash_Scroll,5770,50,1,1,1,0,1 // 1x Splash_Hat +IG_Splash_Scroll,5660,150,1,1,1,0,0 // 1x Gryphon_Hat +IG_Splash_Scroll,6230,70,1,1,1,0,0 // 1x Guarantee_Weapon_7Up +IG_Splash_Scroll,12909,800,1,1,0,0,0 // 1x Kafra_Card_Box +IG_Splash_Scroll,12406,500,10,1,0,0,0 // 10x Psychic_ArmorS +IG_Splash_Scroll,6234,150,1,1,1,0,0 // 1x Guarantee_Armor_7Up +IG_Splash_Scroll,14232,600,1,1,0,0,0 // 1x Yggdrasilberry_Box_ +IG_Splash_Scroll,6484,500,1,1,1,0,0 // 1x Enchant_Book +IG_Splash_Scroll,12903,1300,1,1,0,0,0 // 1x Str_Dish_Box +IG_Splash_Scroll,12906,1749,1,1,0,0,0 // 1x Dex_Dish_Box +IG_Splash_Scroll,4359,1,1,1,1,0,0 // 1x B_Eremes_Card -IG_Vocation_Scroll,12424,1200,30,1,0,0,0 -IG_Vocation_Scroll,Vit_Dish_Box,1350,1,1,0,0,0 -IG_Vocation_Scroll,Int_Dish_Box,1350,1,1,0,0,0 -IG_Vocation_Scroll,Boarding_Halter_Box,200,1,1,0,0,0 -IG_Vocation_Scroll,Guyak_Pudding,1100,10,1,0,0,0 -IG_Vocation_Scroll,Psychic_ArmorS,500,10,1,0,0,0 -IG_Vocation_Scroll,HD_Ori_Box10,150,1,1,0,0,0 -IG_Vocation_Scroll,Token_Of_Siegfried_Box,1100,1,1,0,0,0 -IG_Vocation_Scroll,Megaphone_Box,1079,1,1,0,0,0 -IG_Vocation_Scroll,Diabolic_Scroll,1100,5,1,0,0,0 -IG_Vocation_Scroll,Bloody_Dead_Branch,580,1,1,1,0,0 -IG_Vocation_Scroll,HD_Elu_Box10,150,1,1,0,0,0 -IG_Vocation_Scroll,Gang_Scarf,45,1,1,1,0,0 -IG_Vocation_Scroll,Sealed_Orc_Load_Card,10,1,1,1,0,0 -IG_Vocation_Scroll,Sealed_B_Magaleta_Card,10,1,1,1,0,0 -IG_Vocation_Scroll,Red_Bread_Hat,5,1,1,1,0,0 -IG_Vocation_Scroll,Guarantee_Armor_8Up,10,1,1,1,0,0 -IG_Vocation_Scroll,Guarantee_Weapon_8Up,10,1,1,1,0,0 -IG_Vocation_Scroll,Incant_Samurai_Card,1,1,1,1,0,0 -IG_Vocation_Scroll,Neuralizer_Box,50,1,1,1,0,0 +IG_Vocation_Scroll,12424,1200,30,1,0,0,0 // 30x HP_Increase_Potion_(Large) +IG_Vocation_Scroll,12908,1350,1,1,0,0,0 // 1x Vit_Dish_Box +IG_Vocation_Scroll,12905,1350,1,1,0,0,0 // 1x Int_Dish_Box +IG_Vocation_Scroll,16682,200,1,1,0,0,0 // 1x Boarding_Halter_Box +IG_Vocation_Scroll,12710,1100,10,1,0,0,0 // 10x Guyak_Pudding +IG_Vocation_Scroll,12406,500,10,1,0,0,0 // 10x Psychic_ArmorS +IG_Vocation_Scroll,16394,150,1,1,0,0,0 // 1x HD_Ori_Box10 +IG_Vocation_Scroll,12922,1100,1,1,0,0,0 // 1x Token_Of_Siegfried_Box +IG_Vocation_Scroll,12919,1079,1,1,0,0,0 // 1x Megaphone_Box +IG_Vocation_Scroll,12787,1100,5,1,0,0,0 // 5x Diabolic_Scroll +IG_Vocation_Scroll,12103,580,1,1,1,0,0 // 1x Bloody_Dead_Branch +IG_Vocation_Scroll,16396,150,1,1,0,0,0 // 1x HD_Elu_Box10 +IG_Vocation_Scroll,5361,45,1,1,1,0,0 // 1x Gang_Scarf +IG_Vocation_Scroll,4500,10,1,1,1,0,0 // 1x Sealed_Orc_Load_Card +IG_Vocation_Scroll,4501,10,1,1,1,0,0 // 1x Sealed_B_Magaleta_Card +IG_Vocation_Scroll,18601,5,1,1,1,0,0 // 1x Red_Bread_Hat +IG_Vocation_Scroll,6233,10,1,1,1,0,0 // 1x Guarantee_Armor_8Up +IG_Vocation_Scroll,6229,10,1,1,1,0,0 // 1x Guarantee_Weapon_8Up +IG_Vocation_Scroll,4263,1,1,1,1,0,0 // 1x Incant_Samurai_Card +IG_Vocation_Scroll,12911,50,1,1,1,0,0 // 1x Neuralizer_Box -IG_Wisdom_Scroll,White_Slim_Pot_Box2,1100,1,1,0,0,0 -IG_Wisdom_Scroll,Blue_Herb_Box2,1100,1,1,0,0,0 -IG_Wisdom_Scroll,Fruit_Of_Mastela_Box2,1200,1,1,0,0,0 -IG_Wisdom_Scroll,Dead_Tree_Branch_Box2,1100,1,1,0,0,0 -IG_Wisdom_Scroll,B_Def_Potion_Box30,1100,1,1,0,0,0 -IG_Wisdom_Scroll,B_Mdef_Potion_Box30,1100,1,1,0,0,0 -IG_Wisdom_Scroll,Diabolic_Scroll,1100,5,1,0,0,0 -IG_Wisdom_Scroll,Unbreak_Weap_Box,100,1,1,0,0,0 -IG_Wisdom_Scroll,Unbreak_Def_Box,100,1,1,0,0,0 -IG_Wisdom_Scroll,Enchant_Book,500,1,1,1,0,0 -IG_Wisdom_Scroll,Battle_Manual_Box,784,1,1,0,0,0 -IG_Wisdom_Scroll,Bloody_Dead_Branch,400,1,1,1,0,0 -IG_Wisdom_Scroll,18661,150,1,1,1,0,0 -IG_Wisdom_Scroll,Fallen_Angel_Wing,5,1,1,1,0,0 -IG_Wisdom_Scroll,Sealed_B_Harword_Card,15,1,1,1,0,0 -IG_Wisdom_Scroll,Randgris_Card,1,1,1,1,0,0 -IG_Wisdom_Scroll,Turtle_Hat_Box,100,1,1,1,0,0 -IG_Wisdom_Scroll,Snake_Head,40,1,1,1,0,0 -IG_Wisdom_Scroll,Ghostring_Card,5,1,1,1,0,0 +IG_Wisdom_Scroll,12549,1100,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_Wisdom_Scroll,12533,1100,1,1,0,0,0 // 1x Blue_Herb_Box2 +IG_Wisdom_Scroll,12642,1200,1,1,0,0,0 // 1x Fruit_Of_Mastela_Box2 +IG_Wisdom_Scroll,14234,1100,1,1,0,0,0 // 1x Dead_Tree_Branch_Box2 +IG_Wisdom_Scroll,13750,1100,1,1,0,0,0 // 1x B_Def_Potion_Box30 +IG_Wisdom_Scroll,13756,1100,1,1,0,0,0 // 1x B_Mdef_Potion_Box30 +IG_Wisdom_Scroll,12787,1100,5,1,0,0,0 // 5x Diabolic_Scroll +IG_Wisdom_Scroll,16753,100,1,1,0,0,0 // 1x Unbreak_Weap_Box +IG_Wisdom_Scroll,16755,100,1,1,0,0,0 // 1x Unbreak_Def_Box +IG_Wisdom_Scroll,6484,500,1,1,1,0,0 // 1x Enchant_Book +IG_Wisdom_Scroll,12900,784,1,1,0,0,0 // 1x Battle_Manual_Box +IG_Wisdom_Scroll,12103,400,1,1,1,0,0 // 1x Bloody_Dead_Branch +IG_Wisdom_Scroll,18661,150,1,1,1,0,0 // 1x Trident_Helm +IG_Wisdom_Scroll,2589,5,1,1,1,0,0 // 1x Fallen_Angel_Wing +IG_Wisdom_Scroll,4502,15,1,1,1,0,0 // 1x Sealed_B_Harword_Card +IG_Wisdom_Scroll,4407,1,1,1,1,0,0 // 1x Randgris_Card +IG_Wisdom_Scroll,16414,100,1,1,1,0,0 // 1x Turtle_Hat_Box +IG_Wisdom_Scroll,5388,40,1,1,1,0,0 // 1x Snake_Head +IG_Wisdom_Scroll,4047,5,1,1,1,0,0 // 1x Ghostring_Card -IG_Patron_Scroll,Agi_Dish_Box,1300,1,1,0,0,0 -IG_Patron_Scroll,Luk_Dish_Box,1300,1,1,0,0,0 -IG_Patron_Scroll,Yggdrasilberry_Box_,1200,1,1,0,0,0 -IG_Patron_Scroll,Enchant_Book,773,1,1,1,0,0 -IG_Patron_Scroll,Miracle_Medicine,200,1,1,0,0,0 -IG_Patron_Scroll,Fruit_Of_Mastela_Box2,1150,1,1,0,0,0 -IG_Patron_Scroll,Bubble_Gum_Box,1100,1,1,0,0,0 -IG_Patron_Scroll,Storm_10_Scroll_Box,1060,1,1,0,0,0 -IG_Patron_Scroll,Job_Manual50_Box,500,1,1,0,0,0 -IG_Patron_Scroll,Songpyun_Box50,1110,1,1,0,0,0 -IG_Patron_Scroll,Magic_Card_Album,200,1,1,0,0,0 -IG_Patron_Scroll,Immuned_Shield,30,1,1,1,0,0 -IG_Patron_Scroll,Sealed_Berz_Card,1,1,1,1,0,0 -IG_Patron_Scroll,Sealed_Eddga_Card,15,1,1,1,0,0 -IG_Patron_Scroll,18600,20,1,1,1,0,0 -IG_Patron_Scroll,Snowman_Hat_Box,5,1,1,1,0,0 -IG_Patron_Scroll,Hankie_In_Mouth,30,1,1,1,0,0 -IG_Patron_Scroll,Mistress_Card,1,1,1,1,0,0 -IG_Patron_Scroll,Guarantee_Armor_9Up,5,1,1,1,0,0 +IG_Patron_Scroll,12904,1300,1,1,0,0,0 // 1x Agi_Dish_Box +IG_Patron_Scroll,12907,1300,1,1,0,0,0 // 1x Luk_Dish_Box +IG_Patron_Scroll,14232,1200,1,1,0,0,0 // 1x Yggdrasilberry_Box_ +IG_Patron_Scroll,6484,773,1,1,1,0,0 // 1x Enchant_Book +IG_Patron_Scroll,12259,200,1,1,0,0,0 // 1x Miracle_Medicine +IG_Patron_Scroll,12642,1150,1,1,0,0,0 // 1x Fruit_Of_Mastela_Box2 +IG_Patron_Scroll,12902,1100,1,1,0,0,0 // 1x Bubble_Gum_Box +IG_Patron_Scroll,13539,1060,1,1,0,0,0 // 1x Storm_10_Scroll_Box +IG_Patron_Scroll,13990,500,1,1,0,0,0 // 1x Job_Manual50_Box +IG_Patron_Scroll,12822,1110,1,1,0,0,0 // 1x Songpyun_Box50 +IG_Patron_Scroll,12246,200,1,1,0,0,0 // 1x Magic_Card_Album +IG_Patron_Scroll,2168,30,1,1,1,0,0 // 1x Immuned_Shield +IG_Patron_Scroll,4486,1,1,1,1,0,0 // 1x Sealed_Berz_Card +IG_Patron_Scroll,4504,15,1,1,1,0,0 // 1x Sealed_Eddga_Card +IG_Patron_Scroll,18600,20,1,1,1,0,0 // 1x Cat_Ear_Beret +IG_Patron_Scroll,16543,5,1,1,1,0,0 // 1x Snowman_Hat_Box +IG_Patron_Scroll,18670,30,1,1,1,0,0 // 1x Hankie_In_Mouth +IG_Patron_Scroll,4132,1,1,1,1,0,0 // 1x Mistress_Card +IG_Patron_Scroll,6232,5,1,1,1,0,0 // 1x Guarantee_Armor_9Up -IG_Heaven_Scroll,Yggdrasilberry_Box_,1200,1,1,0,0,0 -IG_Heaven_Scroll,Max_Weight_Up_Box,280,1,1,0,0,0 -IG_Heaven_Scroll,12427,1200,30,1,0,0,0 -IG_Heaven_Scroll,Insurance_Package,850,1,1,0,0,0 -IG_Heaven_Scroll,Guyak_Pudding,1100,10,1,0,0,0 -IG_Heaven_Scroll,Accuracy_30_Scroll,1200,10,1,0,0,0 -IG_Heaven_Scroll,Bubble_Gum_Box,1075,1,1,0,0,0 -IG_Heaven_Scroll,Enriched_Elunium_Box,200,1,1,0,0,0 -IG_Heaven_Scroll,Enriched_Oridecon_Box,200,1,1,0,0,0 -IG_Heaven_Scroll,Convex_Mirror_Box,896,1,1,0,0,0 -IG_Heaven_Scroll,Spark_Candy_Box10,1200,1,1,0,0,0 -IG_Heaven_Scroll,Tw_Frog_Hat,150,1,1,1,0,0 -IG_Heaven_Scroll,Carrot_In_Mouth,78,1,1,1,0,0 -IG_Heaven_Scroll,Puppy_Ears_Hat,100,1,1,1,0,0 -IG_Heaven_Scroll,Powder_Snow_Box,1,1,1,1,0,0 -IG_Heaven_Scroll,Sealed_B_Shecil_Card,15,1,1,1,0,0 -IG_Heaven_Scroll,Sealed_Apocalips_H_Card,5,1,1,1,0,0 -IG_Heaven_Scroll,Green_Apple_Hat,150,1,1,1,0,0 -IG_Heaven_Scroll,Enchant_Book,100,1,1,1,0,0 +IG_Heaven_Scroll,14232,1200,1,1,0,0,0 // 1x Yggdrasilberry_Box_ +IG_Heaven_Scroll,13710,280,1,1,0,0,0 // 1x Max_Weight_Up_Box +IG_Heaven_Scroll,12427,1200,30,1,0,0,0 // 30x SP_Increase_Potion_(Large) +IG_Heaven_Scroll,12901,850,1,1,0,0,0 // 1x Insurance_Package +IG_Heaven_Scroll,12710,1100,10,1,0,0,0 // 10x Guyak_Pudding +IG_Heaven_Scroll,14531,1200,10,1,0,0,0 // 10x Accuracy_30_Scroll +IG_Heaven_Scroll,12902,1075,1,1,0,0,0 // 1x Bubble_Gum_Box +IG_Heaven_Scroll,12920,200,1,1,0,0,0 // 1x Enriched_Elunium_Box +IG_Heaven_Scroll,12921,200,1,1,0,0,0 // 1x Enriched_Oridecon_Box +IG_Heaven_Scroll,12912,896,1,1,0,0,0 // 1x Convex_Mirror_Box +IG_Heaven_Scroll,13858,1200,1,1,0,0,0 // 1x Spark_Candy_Box10 +IG_Heaven_Scroll,18680,150,1,1,1,0,0 // 1x Tw_Frog_Hat +IG_Heaven_Scroll,18683,78,1,1,1,0,0 // 1x Carrot_In_Mouth +IG_Heaven_Scroll,18681,100,1,1,1,0,0 // 1x Puppy_Ears_Hat +IG_Heaven_Scroll,14372,1,1,1,1,0,0 // 1x Powder_Snow_Box +IG_Heaven_Scroll,4491,15,1,1,1,0,0 // 1x Sealed_B_Shecil_Card +IG_Heaven_Scroll,4503,5,1,1,1,0,0 // 1x Sealed_Apocalips_H_Card +IG_Heaven_Scroll,18675,150,1,1,1,0,0 // 1x Green_Apple_Hat +IG_Heaven_Scroll,6484,100,1,1,1,0,0 // 1x Enchant_Book -IG_Tw_Aug_Scroll,Yggdrasilberry_Box_,1350,1,1,0,0,0 -IG_Tw_Aug_Scroll,Poison_Bottle_Box2,1280,1,1,0,0,0 -IG_Tw_Aug_Scroll,Diabolic_Scroll,1300,5,1,0,0,0 -IG_Tw_Aug_Scroll,Bubble_Gum_Box,1300,1,1,0,0,0 -IG_Tw_Aug_Scroll,Battle_Manual_Box,1130,1,1,0,0,0 -IG_Tw_Aug_Scroll,Enchant_Book,800,1,1,1,0,0 -IG_Tw_Aug_Scroll,Psychic_ArmorS,1021,10,1,0,0,0 -IG_Tw_Aug_Scroll,Vit_Dish_Box,1350,1,1,0,0,0 -IG_Tw_Aug_Scroll,Guarantee_Armor_5Up,200,1,1,0,0,0 -IG_Tw_Aug_Scroll,Ninja_Scroll,150,1,1,1,0,0 -IG_Tw_Aug_Scroll,Pink_Fur_Hat,100,1,1,1,0,0 -IG_Tw_Aug_Scroll,Fallen_Angel_Wing,3,1,1,1,0,0 -IG_Tw_Aug_Scroll,Whisper_Boss_Card,15,1,1,1,0,0 -IG_Tw_Aug_Scroll,Gloom_Under_Night_Card,1,1,1,1,0,0 +IG_Tw_Aug_Scroll,14232,1350,1,1,0,0,0 // 1x Yggdrasilberry_Box_ +IG_Tw_Aug_Scroll,12550,1280,1,1,0,0,0 // 1x Poison_Bottle_Box2 +IG_Tw_Aug_Scroll,12787,1300,5,1,0,0,0 // 5x Diabolic_Scroll +IG_Tw_Aug_Scroll,12902,1300,1,1,0,0,0 // 1x Bubble_Gum_Box +IG_Tw_Aug_Scroll,12900,1130,1,1,0,0,0 // 1x Battle_Manual_Box +IG_Tw_Aug_Scroll,6484,800,1,1,1,0,0 // 1x Enchant_Book +IG_Tw_Aug_Scroll,12406,1021,10,1,0,0,0 // 10x Psychic_ArmorS +IG_Tw_Aug_Scroll,12908,1350,1,1,0,0,0 // 1x Vit_Dish_Box +IG_Tw_Aug_Scroll,6457,200,1,1,0,0,0 // 1x Guarantee_Armor_5Up +IG_Tw_Aug_Scroll,5362,150,1,1,1,0,0 // 1x Ninja_Scroll +IG_Tw_Aug_Scroll,5237,100,1,1,1,0,0 // 1x Pink_Fur_Hat +IG_Tw_Aug_Scroll,2589,3,1,1,1,0,0 // 1x Fallen_Angel_Wing +IG_Tw_Aug_Scroll,4303,15,1,1,1,0,0 // 1x Whisper_Boss_Card +IG_Tw_Aug_Scroll,4408,1,1,1,1,0,0 // 1x Gloom_Under_Night_Card -IG_Tw_Nov_Scroll2,Dex_Dish_Box,1500,1,1,0,0,0 -IG_Tw_Nov_Scroll2,Songpyun_Box50,1200,1,1,0,0,0 -IG_Tw_Nov_Scroll2,Enchant_Book,1100,1,1,1,0,0 -IG_Tw_Nov_Scroll2,Megaphone_Box,1200,1,1,0,0,0 -IG_Tw_Nov_Scroll2,Token_Of_Siegfried_Box,1200,1,1,0,0,0 -IG_Tw_Nov_Scroll2,Yggdrasilberry_Box_,884,1,1,0,0,0 -IG_Tw_Nov_Scroll2,Vit_Dish_Box,1500,1,1,0,0,0 -IG_Tw_Nov_Scroll2,J_Aspersio_5_Scroll,600,10,1,0,0,0 -IG_Tw_Nov_Scroll2,Psychic_ArmorS,600,10,1,0,0,0 -IG_Tw_Nov_Scroll2,Guarantee_Armor_7Up,80,1,1,1,0,0 -IG_Tw_Nov_Scroll2,Guarantee_Weapon_7Up,50,1,1,1,0,0 -IG_Tw_Nov_Scroll2,Candy_Hat,50,1,1,1,0,0 -IG_Tw_Nov_Scroll2,Sealed_D_Lord_Card,5,1,1,1,0,0 -IG_Tw_Nov_Scroll2,Sealed_F_Bishop_Card,1,1,1,1,0,0 -IG_Tw_Nov_Scroll2,Black_Knitted_Hat,30,1,1,1,0,0 +IG_Tw_Nov_Scroll2,12906,1500,1,1,0,0,0 // 1x Dex_Dish_Box +IG_Tw_Nov_Scroll2,12822,1200,1,1,0,0,0 // 1x Songpyun_Box50 +IG_Tw_Nov_Scroll2,6484,1100,1,1,1,0,0 // 1x Enchant_Book +IG_Tw_Nov_Scroll2,12919,1200,1,1,0,0,0 // 1x Megaphone_Box +IG_Tw_Nov_Scroll2,12922,1200,1,1,0,0,0 // 1x Token_Of_Siegfried_Box +IG_Tw_Nov_Scroll2,14232,884,1,1,0,0,0 // 1x Yggdrasilberry_Box_ +IG_Tw_Nov_Scroll2,12908,1500,1,1,0,0,0 // 1x Vit_Dish_Box +IG_Tw_Nov_Scroll2,12928,600,10,1,0,0,0 // 10x J_Aspersio_5_Scroll +IG_Tw_Nov_Scroll2,12406,600,10,1,0,0,0 // 10x Psychic_ArmorS +IG_Tw_Nov_Scroll2,6234,80,1,1,1,0,0 // 1x Guarantee_Armor_7Up +IG_Tw_Nov_Scroll2,6230,50,1,1,1,0,0 // 1x Guarantee_Weapon_7Up +IG_Tw_Nov_Scroll2,18708,50,1,1,1,0,0 // 1x Candy_Hat +IG_Tw_Nov_Scroll2,4488,5,1,1,1,0,0 // 1x Sealed_D_Lord_Card +IG_Tw_Nov_Scroll2,4539,1,1,1,1,0,0 // 1x Sealed_F_Bishop_Card +IG_Tw_Nov_Scroll2,18709,30,1,1,1,0,0 // 1x Black_Knitted_Hat -IG_Illusion_Nothing,Songpyun_Box50,1534,1,1,0,0,1 -IG_Illusion_Nothing,Guyak_Pudding,1500,10,1,0,0,1 -IG_Illusion_Nothing,Agi_Dish_Box,1500,1,1,0,0,1 -IG_Illusion_Nothing,Vit_Dish_Box,1500,1,1,0,0,1 -IG_Illusion_Nothing,Diabolic_Scroll,1500,5,1,0,0,1 -IG_Illusion_Nothing,Shadow_Armor_S_Box10,1500,1,1,0,0,1 -IG_Illusion_Nothing,Sealed_Tao_Card,1,1,1,1,0,1 -IG_Illusion_Nothing,Bloody_Dead_Branch,500,1,1,1,0,1 -IG_Illusion_Nothing,Syringe_In_Mouth,100,1,1,1,0,1 -IG_Illusion_Nothing,Guarantee_Weapon_8Up,50,1,1,1,0,1 -IG_Illusion_Nothing,Guarantee_Armor_8Up,10,1,1,1,0,1 -IG_Illusion_Nothing,Singing_Bird,130,1,1,1,0,1 -IG_Illusion_Nothing,Round_Eyes,100,1,1,1,0,1 -IG_Illusion_Nothing,Cat_Hat,70,1,1,1,0,1 -IG_Illusion_Nothing,Weather_Report_Box,5,1,1,1,0,1 +IG_Illusion_Nothing,12822,1534,1,1,0,0,1 // 1x Songpyun_Box50 +IG_Illusion_Nothing,12710,1500,10,1,0,0,1 // 10x Guyak_Pudding +IG_Illusion_Nothing,12904,1500,1,1,0,0,1 // 1x Agi_Dish_Box +IG_Illusion_Nothing,12908,1500,1,1,0,0,1 // 1x Vit_Dish_Box +IG_Illusion_Nothing,12787,1500,5,1,0,0,1 // 5x Diabolic_Scroll +IG_Illusion_Nothing,13741,1500,1,1,0,0,1 // 1x Shadow_Armor_S_Box10 +IG_Illusion_Nothing,4493,1,1,1,1,0,1 // 1x Sealed_Tao_Card +IG_Illusion_Nothing,12103,500,1,1,1,0,1 // 1x Bloody_Dead_Branch +IG_Illusion_Nothing,18697,100,1,1,1,0,1 // 1x Syringe_In_Mouth +IG_Illusion_Nothing,6229,50,1,1,1,0,1 // 1x Guarantee_Weapon_8Up +IG_Illusion_Nothing,6233,10,1,1,1,0,1 // 1x Guarantee_Armor_8Up +IG_Illusion_Nothing,19516,130,1,1,1,0,1 // 1x Singing_Bird +IG_Illusion_Nothing,5102,100,1,1,1,0,1 // 1x Round_Eyes +IG_Illusion_Nothing,5099,70,1,1,1,0,1 // 1x Cat_Hat +IG_Illusion_Nothing,16972,5,1,1,1,0,1 // 1x Weather_Report_Box -IG_Tw_Sep_Scroll,Int_Dish_Box,1400,1,1,0,0,0 -IG_Tw_Sep_Scroll,Angeling_Pot_Box,1477,1,1,0,0,0 -IG_Tw_Sep_Scroll,Dun_Tele_Scroll_Box10,1500,1,1,0,0,0 -IG_Tw_Sep_Scroll,Kafra_Card_Box,1200,1,1,0,0,0 -IG_Tw_Sep_Scroll,Holy_Armor_S_Box10,1400,1,1,0,0,0 -IG_Tw_Sep_Scroll,Insurance_Package,1200,1,1,0,0,0 -IG_Tw_Sep_Scroll,Job_Manual50_Box,1200,1,1,0,0,0 -IG_Tw_Sep_Scroll,Archangel_Wing,10,1,1,1,0,0 -IG_Tw_Sep_Scroll,Baby_Pacifier,200,1,1,1,0,0 -IG_Tw_Sep_Scroll,Guarantee_Weapon_5Up,200,1,1,1,0,0 -IG_Tw_Sep_Scroll,Red_Hood,149,1,1,1,0,0 -IG_Tw_Sep_Scroll,Sleeping_Kitty_Cat,60,1,1,1,0,0 -IG_Tw_Sep_Scroll,Guarantee_Weapon_9Up,3,1,1,1,0,0 -IG_Tw_Sep_Scroll,B_Katrinn_Card,1,1,1,1,0,0 +IG_Tw_Sep_Scroll,12905,1400,1,1,0,0,0 // 1x Int_Dish_Box +IG_Tw_Sep_Scroll,14376,1477,1,1,0,0,0 // 1x Angeling_Pot_Box +IG_Tw_Sep_Scroll,13721,1500,1,1,0,0,0 // 1x Dun_Tele_Scroll_Box10 +IG_Tw_Sep_Scroll,12909,1200,1,1,0,0,0 // 1x Kafra_Card_Box +IG_Tw_Sep_Scroll,13744,1400,1,1,0,0,0 // 1x Holy_Armor_S_Box10 +IG_Tw_Sep_Scroll,12901,1200,1,1,0,0,0 // 1x Insurance_Package +IG_Tw_Sep_Scroll,13990,1200,1,1,0,0,0 // 1x Job_Manual50_Box +IG_Tw_Sep_Scroll,2573,10,1,1,1,0,0 // 1x Archangel_Wing +IG_Tw_Sep_Scroll,5110,200,1,1,1,0,0 // 1x Baby_Pacifier +IG_Tw_Sep_Scroll,6456,200,1,1,1,0,0 // 1x Guarantee_Weapon_5Up +IG_Tw_Sep_Scroll,18694,149,1,1,1,0,0 // 1x Red_Hood +IG_Tw_Sep_Scroll,18693,60,1,1,1,0,0 // 1x Sleeping_Kitty_Cat +IG_Tw_Sep_Scroll,6228,3,1,1,1,0,0 // 1x Guarantee_Weapon_9Up +IG_Tw_Sep_Scroll,4365,1,1,1,1,0,0 // 1x B_Katrinn_Card -IG_Flame_Light,Bubble_Gum_Box,1400,1,1,0,0,0 -IG_Flame_Light,Str_Dish_Box,1500,1,1,0,0,0 -IG_Flame_Light,Megaphone_Box,1500,1,1,0,0,0 -IG_Flame_Light,Battle_Manual_Box,1400,1,1,0,0,0 -IG_Flame_Light,Token_Of_Siegfried_Box,1500,1,1,0,0,0 -IG_Flame_Light,Shadow_Armor_S_Box10,1500,1,1,0,0,0 -IG_Flame_Light,Unbreak_Weap_Box,175,1,1,1,0,0 -IG_Flame_Light,Unbreak_Def_Box,175,1,1,1,0,0 -IG_Flame_Light,Max_Weight_Up_Box,300,1,1,1,0,0 -IG_Flame_Light,Mike_Hat,234,1,1,1,0,0 -IG_Flame_Light,Shaving_Cream,250,1,1,1,0,0 -IG_Flame_Light,Deprotai_Doll_Hat,50,1,1,1,0,0 -IG_Flame_Light,SLD_Garm_Card,10,1,1,1,0,0 -IG_Flame_Light,Elven_Ears_,3,1,1,1,0,0 -IG_Flame_Light,MVP_Basketball,3,1,1,1,0,0 +IG_Flame_Light,12902,1400,1,1,0,0,0 // 1x Bubble_Gum_Box +IG_Flame_Light,12903,1500,1,1,0,0,0 // 1x Str_Dish_Box +IG_Flame_Light,12919,1500,1,1,0,0,0 // 1x Megaphone_Box +IG_Flame_Light,12900,1400,1,1,0,0,0 // 1x Battle_Manual_Box +IG_Flame_Light,12922,1500,1,1,0,0,0 // 1x Token_Of_Siegfried_Box +IG_Flame_Light,13741,1500,1,1,0,0,0 // 1x Shadow_Armor_S_Box10 +IG_Flame_Light,16753,175,1,1,1,0,0 // 1x Unbreak_Weap_Box +IG_Flame_Light,16755,175,1,1,1,0,0 // 1x Unbreak_Def_Box +IG_Flame_Light,13710,300,1,1,1,0,0 // 1x Max_Weight_Up_Box +IG_Flame_Light,18692,234,1,1,1,0,0 // 1x Mike_Hat +IG_Flame_Light,18702,250,1,1,1,0,0 // 1x Shaving_Cream +IG_Flame_Light,5340,50,1,1,1,0,0 // 1x Deprotai_Doll_Hat +IG_Flame_Light,4543,10,1,1,1,0,0 // 1x SLD_Garm_Card +IG_Flame_Light,18507,3,1,1,1,0,0 // 1x Elven_Ears_ +IG_Flame_Light,18729,3,1,1,1,0,0 // 1x MVP_Basketball -IG_Tw_Rainbow_Scroll,Vit_Dish_Box,1400,1,1,0,0,0 -IG_Tw_Rainbow_Scroll,Int_Dish_Box,1400,1,1,0,0,0 -IG_Tw_Rainbow_Scroll,Agi_Dish_Box,1400,1,1,0,0,0 -IG_Tw_Rainbow_Scroll,Neko_Mimi_Kafra,30,1,1,1,0,0 -IG_Tw_Rainbow_Scroll,Dex_Dish_Box,1400,1,1,0,0,0 -IG_Tw_Rainbow_Scroll,Diabolic_Scroll,1400,5,1,0,0,0 -IG_Tw_Rainbow_Scroll,Unbreak_Def_Box,200,1,1,1,0,0 -IG_Tw_Rainbow_Scroll,Bloody_Dead_Branch,500,1,1,1,0,0 -IG_Tw_Rainbow_Scroll,16258,250,1,1,0,0,0 -IG_Tw_Rainbow_Scroll,Unbreak_Weap_Box,200,1,1,1,0,0 -IG_Tw_Rainbow_Scroll,Megaphone_Box,1450,1,1,0,0,0 -IG_Tw_Rainbow_Scroll,Guarantee_Weapon_5Up,100,1,1,1,0,0 -IG_Tw_Rainbow_Scroll,Guarantee_Armor_5Up,100,1,1,1,0,0 -IG_Tw_Rainbow_Scroll,Sunglasses_,5,1,1,1,0,0 -IG_Tw_Rainbow_Scroll,Sealed_Ifrit_Card,15,1,1,1,0,0 -IG_Tw_Rainbow_Scroll,Tao_Gunka_Card,1,1,1,1,0,0 -IG_Tw_Rainbow_Scroll,Cowhide_Hat,100,1,1,1,0,0 -IG_Tw_Rainbow_Scroll,Satanic_Chain_P,5,1,1,1,0,0 -IG_Tw_Rainbow_Scroll,Censor_Bar,44,1,1,1,0,1 +IG_Tw_Rainbow_Scroll,12908,1400,1,1,0,0,0 // 1x Vit_Dish_Box +IG_Tw_Rainbow_Scroll,12905,1400,1,1,0,0,0 // 1x Int_Dish_Box +IG_Tw_Rainbow_Scroll,12904,1400,1,1,0,0,0 // 1x Agi_Dish_Box +IG_Tw_Rainbow_Scroll,5387,30,1,1,1,0,0 // 1x Neko_Mimi_Kafra +IG_Tw_Rainbow_Scroll,12906,1400,1,1,0,0,0 // 1x Dex_Dish_Box +IG_Tw_Rainbow_Scroll,12787,1400,5,1,0,0,0 // 5x Diabolic_Scroll +IG_Tw_Rainbow_Scroll,16755,200,1,1,1,0,0 // 1x Unbreak_Def_Box +IG_Tw_Rainbow_Scroll,12103,500,1,1,1,0,0 // 1x Bloody_Dead_Branch +IG_Tw_Rainbow_Scroll,16258,250,1,1,0,0,0 // 1x HD_Bradium_5_Box +IG_Tw_Rainbow_Scroll,16753,200,1,1,1,0,0 // 1x Unbreak_Weap_Box +IG_Tw_Rainbow_Scroll,12919,1450,1,1,0,0,0 // 1x Megaphone_Box +IG_Tw_Rainbow_Scroll,6456,100,1,1,1,0,0 // 1x Guarantee_Weapon_5Up +IG_Tw_Rainbow_Scroll,6457,100,1,1,1,0,0 // 1x Guarantee_Armor_5Up +IG_Tw_Rainbow_Scroll,2202,5,1,1,1,0,0 // 1x Sunglasses_ +IG_Tw_Rainbow_Scroll,4487,15,1,1,1,0,0 // 1x Sealed_Ifrit_Card +IG_Tw_Rainbow_Scroll,4302,1,1,1,1,0,0 // 1x Tao_Gunka_Card +IG_Tw_Rainbow_Scroll,18669,100,1,1,1,0,0 // 1x Cowhide_Hat +IG_Tw_Rainbow_Scroll,5376,5,1,1,1,0,0 // 1x Satanic_Chain_P +IG_Tw_Rainbow_Scroll,5175,44,1,1,1,0,1 // 1x Censor_Bar -IG_Tw_Red_Scroll,White_Slim_Pot_Box2,1100,1,1,0,0,0 -IG_Tw_Red_Scroll,Fruit_Of_Mastela_Box2,1150,1,1,0,0,0 -IG_Tw_Red_Scroll,Kafra_Card_Box,1050,1,1,0,0,0 -IG_Tw_Red_Scroll,Token_Of_Siegfried_Box,1050,1,1,0,0,0 -IG_Tw_Red_Scroll,Bubble_Gum_Box,1150,1,1,0,0,0 -IG_Tw_Red_Scroll,Convex_Mirror_Box,1100,1,1,0,0,0 -IG_Tw_Red_Scroll,Battle_Manual_Box,1100,1,1,0,0,0 -IG_Tw_Red_Scroll,Guarantee_Weapon_5Up,150,1,1,1,0,0 -IG_Tw_Red_Scroll,Guarantee_Armor_5Up,147,1,1,1,0,0 -IG_Tw_Red_Scroll,Psychic_ArmorS,500,10,1,0,0,0 -IG_Tw_Red_Scroll,13286,824,5,1,0,0,0 -IG_Tw_Red_Scroll,Job_Manual50_Box,400,1,1,0,0,0 -IG_Tw_Red_Scroll,Showy_High_Cap,100,1,1,1,0,0 -IG_Tw_Red_Scroll,Neuralizer,10,1,1,1,0,0 -IG_Tw_Red_Scroll,Sealed_Orc_Load_Card,10,1,1,1,0,0 -IG_Tw_Red_Scroll,Moonlight_Flower_Card,1,1,1,1,0,0 -IG_Tw_Red_Scroll,Krieger_Katar1,3,1,1,1,0,0 -IG_Tw_Red_Scroll,Leek_In_Mouth,100,1,1,1,0,0 -IG_Tw_Red_Scroll,Pink_Drooping_Kitty,50,1,1,1,0,0 -IG_Tw_Red_Scroll,Majestic_Evil_Horn,5,1,1,1,0,0 +IG_Tw_Red_Scroll,12549,1100,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_Tw_Red_Scroll,12642,1150,1,1,0,0,0 // 1x Fruit_Of_Mastela_Box2 +IG_Tw_Red_Scroll,12909,1050,1,1,0,0,0 // 1x Kafra_Card_Box +IG_Tw_Red_Scroll,12922,1050,1,1,0,0,0 // 1x Token_Of_Siegfried_Box +IG_Tw_Red_Scroll,12902,1150,1,1,0,0,0 // 1x Bubble_Gum_Box +IG_Tw_Red_Scroll,12912,1100,1,1,0,0,0 // 1x Convex_Mirror_Box +IG_Tw_Red_Scroll,12900,1100,1,1,0,0,0 // 1x Battle_Manual_Box +IG_Tw_Red_Scroll,6456,150,1,1,1,0,0 // 1x Guarantee_Weapon_5Up +IG_Tw_Red_Scroll,6457,147,1,1,1,0,0 // 1x Guarantee_Armor_5Up +IG_Tw_Red_Scroll,12406,500,10,1,0,0,0 // 10x Psychic_ArmorS +IG_Tw_Red_Scroll,13286,824,5,1,0,0,0 // 5x M_Brisket_To_Throw +IG_Tw_Red_Scroll,13990,400,1,1,0,0,0 // 1x Job_Manual50_Box +IG_Tw_Red_Scroll,18684,100,1,1,1,0,0 // 1x Showy_High_Cap +IG_Tw_Red_Scroll,12213,10,1,1,1,0,0 // 1x Neuralizer +IG_Tw_Red_Scroll,4500,10,1,1,1,0,0 // 1x Sealed_Orc_Load_Card +IG_Tw_Red_Scroll,4131,1,1,1,1,0,0 // 1x Moonlight_Flower_Card +IG_Tw_Red_Scroll,1281,3,1,1,1,0,0 // 1x Krieger_Katar1 +IG_Tw_Red_Scroll,18678,100,1,1,1,0,0 // 1x Leek_In_Mouth +IG_Tw_Red_Scroll,5232,50,1,1,1,0,0 // 1x Pink_Drooping_Kitty +IG_Tw_Red_Scroll,5584,5,1,1,1,0,0 // 1x Majestic_Evil_Horn -IG_Tw_Orange_Scroll,Int_Dish_Box,1100,1,1,0,0,0 -IG_Tw_Orange_Scroll,White_Slim_Pot_Box2,1100,1,1,0,0,0 -IG_Tw_Orange_Scroll,Blue_Herb_Box2,1000,1,1,0,0,0 -IG_Tw_Orange_Scroll,Diabolic_Scroll,1100,5,1,0,0,0 -IG_Tw_Orange_Scroll,Guyak_Pudding,1100,10,1,0,0,0 -IG_Tw_Orange_Scroll,Insurance_Package,1100,1,1,0,0,0 -IG_Tw_Orange_Scroll,Aspersio_5_Scroll_Box,1100,1,1,0,0,0 -IG_Tw_Orange_Scroll,Guarantee_Weapon_5Up,150,1,1,1,0,0 -IG_Tw_Orange_Scroll,Guarantee_Armor_5Up,150,1,1,1,0,0 -IG_Tw_Orange_Scroll,B_Mdef_Potion_Box10,590,1,1,0,0,0 -IG_Tw_Orange_Scroll,13285,788,5,1,0,0,0 -IG_Tw_Orange_Scroll,Max_Weight_Up_Box,400,1,1,1,0,0 -IG_Tw_Orange_Scroll,Hippo_Hat,150,1,1,1,0,0 -IG_Tw_Orange_Scroll,Guarantee_Armor_8Up,10,1,1,1,0,0 -IG_Tw_Orange_Scroll,SLD_Lord_Of_Death_Card,10,1,1,1,0,0 -IG_Tw_Orange_Scroll,Doppelganger_Card,1,1,1,1,0,0 -IG_Tw_Orange_Scroll,Krieger_Onehand_Axe1,1,1,1,1,0,0 -IG_Tw_Orange_Scroll,Rose_Hairband,100,1,1,1,0,0 -IG_Tw_Orange_Scroll,Bell_Ribbon,40,1,1,1,0,0 -IG_Tw_Orange_Scroll,Guarantee_Weapon_8Up,10,1,1,1,0,0 +IG_Tw_Orange_Scroll,12905,1100,1,1,0,0,0 // 1x Int_Dish_Box +IG_Tw_Orange_Scroll,12549,1100,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_Tw_Orange_Scroll,12533,1000,1,1,0,0,0 // 1x Blue_Herb_Box2 +IG_Tw_Orange_Scroll,12787,1100,5,1,0,0,0 // 5x Diabolic_Scroll +IG_Tw_Orange_Scroll,12710,1100,10,1,0,0,0 // 10x Guyak_Pudding +IG_Tw_Orange_Scroll,12901,1100,1,1,0,0,0 // 1x Insurance_Package +IG_Tw_Orange_Scroll,12915,1100,1,1,0,0,0 // 1x Aspersio_5_Scroll_Box +IG_Tw_Orange_Scroll,6456,150,1,1,1,0,0 // 1x Guarantee_Weapon_5Up +IG_Tw_Orange_Scroll,6457,150,1,1,1,0,0 // 1x Guarantee_Armor_5Up +IG_Tw_Orange_Scroll,13755,590,1,1,0,0,0 // 1x B_Mdef_Potion_Box10 +IG_Tw_Orange_Scroll,13285,788,5,1,0,0,0 // 5x Wug_Cocktail_To_Throw +IG_Tw_Orange_Scroll,13710,400,1,1,1,0,0 // 1x Max_Weight_Up_Box +IG_Tw_Orange_Scroll,18714,150,1,1,1,0,0 // 1x Hippo_Hat +IG_Tw_Orange_Scroll,6233,10,1,1,1,0,0 // 1x Guarantee_Armor_8Up +IG_Tw_Orange_Scroll,4540,10,1,1,1,0,0 // 1x SLD_Lord_Of_Death_Card +IG_Tw_Orange_Scroll,4142,1,1,1,1,0,0 // 1x Doppelganger_Card +IG_Tw_Orange_Scroll,1310,1,1,1,1,0,0 // 1x Krieger_Onehand_Axe1 +IG_Tw_Orange_Scroll,18718,100,1,1,1,0,0 // 1x Rose_Hairband +IG_Tw_Orange_Scroll,5382,40,1,1,1,0,0 // 1x Bell_Ribbon +IG_Tw_Orange_Scroll,6229,10,1,1,1,0,0 // 1x Guarantee_Weapon_8Up -IG_Tw_Yellow_Scroll,Poison_Bottle_Box2,1000,1,1,0,0,0 -IG_Tw_Yellow_Scroll,J_Aspersio_5_Scroll_Box,1200,1,1,0,0,0 -IG_Tw_Yellow_Scroll,Guyak_Pudding,1100,10,1,0,0,0 -IG_Tw_Yellow_Scroll,Songpyun_Box50,1100,1,1,0,0,0 -IG_Tw_Yellow_Scroll,Spark_Candy_Box10,1100,1,1,0,0,0 -IG_Tw_Yellow_Scroll,Insurance_Package,1000,1,1,0,0,0 -IG_Tw_Yellow_Scroll,Unbreak_Weap_Box,148,1,1,1,0,0 -IG_Tw_Yellow_Scroll,Unbreak_Def_Box,148,1,1,1,0,0 -IG_Tw_Yellow_Scroll,Psychic_ArmorS,550,10,1,0,0,0 -IG_Tw_Yellow_Scroll,12433,784,5,1,0,0,0 -IG_Tw_Yellow_Scroll,Bloody_Dead_Branch,361,1,1,1,0,0 -IG_Tw_Yellow_Scroll,Electric_Sunglass,140,1,1,1,0,0 -IG_Tw_Yellow_Scroll,SLD_B_Katrinn_Card,10,1,1,1,0,0 -IG_Tw_Yellow_Scroll,Guarantee_Armor_7Up,120,1,1,1,0,0 -IG_Tw_Yellow_Scroll,Guarantee_Weapon_7Up,80,1,1,1,0,0 -IG_Tw_Yellow_Scroll,Krieger_Onehand_Spear1,3,1,1,1,0,0 -IG_Tw_Yellow_Scroll,Strawberry_In_Mouth,50,1,1,1,0,0 -IG_Tw_Yellow_Scroll,MVP_Basketball,3,1,1,1,0,0 -IG_Tw_Yellow_Scroll,RWC2010_Indonesia,3,1,1,1,0,0 +IG_Tw_Yellow_Scroll,12550,1000,1,1,0,0,0 // 1x Poison_Bottle_Box2 +IG_Tw_Yellow_Scroll,12927,1200,1,1,0,0,0 // 1x J_Aspersio_5_Scroll_Box +IG_Tw_Yellow_Scroll,12710,1100,10,1,0,0,0 // 10x Guyak_Pudding +IG_Tw_Yellow_Scroll,12822,1100,1,1,0,0,0 // 1x Songpyun_Box50 +IG_Tw_Yellow_Scroll,13858,1100,1,1,0,0,0 // 1x Spark_Candy_Box10 +IG_Tw_Yellow_Scroll,12901,1000,1,1,0,0,0 // 1x Insurance_Package +IG_Tw_Yellow_Scroll,16753,148,1,1,1,0,0 // 1x Unbreak_Weap_Box +IG_Tw_Yellow_Scroll,16755,148,1,1,1,0,0 // 1x Unbreak_Def_Box +IG_Tw_Yellow_Scroll,12406,550,10,1,0,0,0 // 10x Psychic_ArmorS +IG_Tw_Yellow_Scroll,12433,784,5,1,0,0,0 // 5x Drosera_Herb_Salad +IG_Tw_Yellow_Scroll,12103,361,1,1,1,0,0 // 1x Bloody_Dead_Branch +IG_Tw_Yellow_Scroll,18711,140,1,1,1,0,0 // 1x Electric_Sunglass +IG_Tw_Yellow_Scroll,4541,10,1,1,1,0,0 // 1x SLD_B_Katrinn_Card +IG_Tw_Yellow_Scroll,6234,120,1,1,1,0,0 // 1x Guarantee_Armor_7Up +IG_Tw_Yellow_Scroll,6230,80,1,1,1,0,0 // 1x Guarantee_Weapon_7Up +IG_Tw_Yellow_Scroll,1426,3,1,1,1,0,0 // 1x Krieger_Onehand_Spear1 +IG_Tw_Yellow_Scroll,18716,50,1,1,1,0,0 // 1x Strawberry_In_Mouth +IG_Tw_Yellow_Scroll,18729,3,1,1,1,0,0 // 1x MVP_Basketball +IG_Tw_Yellow_Scroll,18509,3,1,1,1,0,0 // 1x RWC2010_Indonesia -IG_Scroll_Of_Death,Lord_Of_Death_Card,1,1,1,1,0,0 -IG_Scroll_Of_Death,SLD_Lord_Of_Death_Card,5,1,1,1,0,0 -IG_Scroll_Of_Death,Knight_Of_Abyss_Card,10,1,1,1,0,0 -IG_Scroll_Of_Death,Lord_of_Death,15,1,1,1,0,0 -IG_Scroll_Of_Death,Guarantee_Weapon_6Up,25,1,1,1,0,0 -IG_Scroll_Of_Death,Guarantee_Armor_6Up,25,1,1,1,0,0 -IG_Scroll_Of_Death,Pole_Axe,50,1,1,1,0,0 -IG_Scroll_Of_Death,House_Auger,74,1,1,1,0,0 -IG_Scroll_Of_Death,Guarantee_Weapon_5Up,100,1,1,1,0,0 -IG_Scroll_Of_Death,Guarantee_Armor_5Up,100,1,1,1,0,0 -IG_Scroll_Of_Death,War_Axe,120,1,1,1,0,0 -IG_Scroll_Of_Death,Ring_,150,1,1,1,0,0 -IG_Scroll_Of_Death,Iron_Driver,150,1,1,1,0,0 -IG_Scroll_Of_Death,Max_Weight_Up_Box,325,1,1,0,0,0 -IG_Scroll_Of_Death,Enriched_Elunium_Box5,600,1,1,0,0,0 -IG_Scroll_Of_Death,Enriched_Oridecon_Box5,600,1,1,0,0,0 -IG_Scroll_Of_Death,Shadow_Armor_S_Box10,1100,1,1,0,0,0 -IG_Scroll_Of_Death,6024,1075,1,1,0,0,0 -IG_Scroll_Of_Death,13289,1100,5,1,0,0,0 -IG_Scroll_Of_Death,Diabolic_Scroll,1100,5,1,0,0,0 -IG_Scroll_Of_Death,HE_Battle_Manual,1100,4,1,0,0,0 -IG_Scroll_Of_Death,Guyak_Pudding,1075,10,1,0,0,0 -IG_Scroll_Of_Death,Siegfried_Box5,1100,1,1,0,0,0 +IG_Scroll_Of_Death,4276,1,1,1,1,0,0 // 1x Lord_Of_Death_Card +IG_Scroll_Of_Death,4540,5,1,1,1,0,0 // 1x SLD_Lord_Of_Death_Card +IG_Scroll_Of_Death,4140,10,1,1,1,0,0 // 1x Knight_Of_Abyss_Card +IG_Scroll_Of_Death,18574,15,1,1,1,0,0 // 1x Lord_of_Death +IG_Scroll_Of_Death,6231,25,1,1,1,0,0 // 1x Guarantee_Weapon_6Up +IG_Scroll_Of_Death,6235,25,1,1,1,0,0 // 1x Guarantee_Armor_6Up +IG_Scroll_Of_Death,1417,50,1,1,1,0,0 // 1x Pole_Axe +IG_Scroll_Of_Death,1230,74,1,1,1,0,0 // 1x House_Auger +IG_Scroll_Of_Death,6456,100,1,1,1,0,0 // 1x Guarantee_Weapon_5Up +IG_Scroll_Of_Death,6457,100,1,1,1,0,0 // 1x Guarantee_Armor_5Up +IG_Scroll_Of_Death,1306,120,1,1,1,0,0 // 1x War_Axe +IG_Scroll_Of_Death,2621,150,1,1,1,0,0 // 1x Ring_ +IG_Scroll_Of_Death,1529,150,1,1,1,0,0 // 1x Iron_Driver +IG_Scroll_Of_Death,13710,325,1,1,0,0,0 // 1x Max_Weight_Up_Box +IG_Scroll_Of_Death,13610,600,1,1,0,0,0 // 1x Enriched_Elunium_Box5 +IG_Scroll_Of_Death,13611,600,1,1,0,0,0 // 1x Enriched_Oridecon_Box5 +IG_Scroll_Of_Death,13741,1100,1,1,0,0,0 // 1x Shadow_Armor_S_Box10 +IG_Scroll_Of_Death,6024,1075,1,1,0,0,0 // 1x 17Carat_Dia +IG_Scroll_Of_Death,13289,1100,5,1,0,0,0 // 5x Petti_Noodle_To_Throw +IG_Scroll_Of_Death,12787,1100,5,1,0,0,0 // 5x Diabolic_Scroll +IG_Scroll_Of_Death,12411,1100,4,1,0,0,0 // 4x HE_Battle_Manual +IG_Scroll_Of_Death,12710,1075,10,1,0,0,0 // 10x Guyak_Pudding +IG_Scroll_Of_Death,13600,1100,1,1,0,0,0 // 1x Siegfried_Box5 -IG_Scroll_Of_Life,Tao_Gunka_Card,1,1,1,1,0,0 -IG_Scroll_Of_Life,Sealed_Tao_Card,5,1,1,1,0,0 -IG_Scroll_Of_Life,Ungoliant_Card,15,1,1,1,0,0 -IG_Scroll_Of_Life,Sealed_B_Ygnizem_Card,50,1,1,1,0,0 -IG_Scroll_Of_Life,Mini_Glasses_,3,1,1,1,0,0 -IG_Scroll_Of_Life,Bravery_Bag,15,1,1,1,0,0 -IG_Scroll_Of_Life,Fancy_Phantom_Mask,50,1,1,1,0,0 -IG_Scroll_Of_Life,Tiraya_Bonnet,200,1,1,1,0,0 -IG_Scroll_Of_Life,Bizofnil_Wing_Deco,265,1,1,1,0,0 -IG_Scroll_Of_Life,Max_Weight_Up_Box,350,1,1,0,0,0 -IG_Scroll_Of_Life,16258,450,1,1,0,0,0 -IG_Scroll_Of_Life,16259,450,1,1,0,0,0 -IG_Scroll_Of_Life,Life_Ribbon_Box3,1000,1,1,0,0,0 -IG_Scroll_Of_Life,Assumptio_5_Scroll_Box,1000,1,1,0,0,0 -IG_Scroll_Of_Life,6024,1000,1,1,0,0,0 -IG_Scroll_Of_Life,HE_Battle_Manual,500,5,1,0,0,0 -IG_Scroll_Of_Life,Med_Life_Potion_Box,1000,1,1,0,0,0 -IG_Scroll_Of_Life,White_Slim_Pot_Box2,1000,1,1,0,0,0 -IG_Scroll_Of_Life,Guyak_Pudding,902,10,1,0,0,0 -IG_Scroll_Of_Life,Songpyun_Box50,600,1,1,0,0,0 -IG_Scroll_Of_Life,12424,500,30,1,0,0,0 -IG_Scroll_Of_Life,Spark_Candy_Box10,644,1,1,0,0,0 +IG_Scroll_Of_Life,4302,1,1,1,1,0,0 // 1x Tao_Gunka_Card +IG_Scroll_Of_Life,4493,5,1,1,1,0,0 // 1x Sealed_Tao_Card +IG_Scroll_Of_Life,4336,15,1,1,1,0,0 // 1x Ungoliant_Card +IG_Scroll_Of_Life,4482,50,1,1,1,0,0 // 1x Sealed_B_Ygnizem_Card +IG_Scroll_Of_Life,18591,3,1,1,1,0,0 // 1x Mini_Glasses_ +IG_Scroll_Of_Life,2576,15,1,1,1,0,0 // 1x Bravery_Bag +IG_Scroll_Of_Life,18534,50,1,1,1,0,0 // 1x Fancy_Phantom_Mask +IG_Scroll_Of_Life,5395,200,1,1,1,0,0 // 1x Tiraya_Bonnet +IG_Scroll_Of_Life,5480,265,1,1,1,0,0 // 1x Bizofnil_Wing_Deco +IG_Scroll_Of_Life,13710,350,1,1,0,0,0 // 1x Max_Weight_Up_Box +IG_Scroll_Of_Life,16258,450,1,1,0,0,0 // 1x HD_Bradium_5_Box +IG_Scroll_Of_Life,16259,450,1,1,0,0,0 // 1x HD_Carnium_5_Box +IG_Scroll_Of_Life,16640,1000,1,1,0,0,0 // 1x Life_Ribbon_Box3 +IG_Scroll_Of_Life,12916,1000,1,1,0,0,0 // 1x Assumptio_5_Scroll_Box +IG_Scroll_Of_Life,6024,1000,1,1,0,0,0 // 1x 17Carat_Dia +IG_Scroll_Of_Life,12411,500,5,1,0,0,0 // 5x HE_Battle_Manual +IG_Scroll_Of_Life,13714,1000,1,1,0,0,0 // 1x Med_Life_Potion_Box +IG_Scroll_Of_Life,12549,1000,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_Scroll_Of_Life,12710,902,10,1,0,0,0 // 10x Guyak_Pudding +IG_Scroll_Of_Life,12822,600,1,1,0,0,0 // 1x Songpyun_Box50 +IG_Scroll_Of_Life,12424,500,30,1,0,0,0 // 30x HP_Increase_Potion_(Large) +IG_Scroll_Of_Life,13858,644,1,1,0,0,0 // 1x Spark_Candy_Box10 -IG_Scroll_Of_Magic,B_Katrinn_Card,1,1,1,1,0,0 -IG_Scroll_Of_Magic,Sealed_Berz_Card,3,1,1,1,0,0 -IG_Scroll_Of_Magic,SLD_B_Katrinn_Card,10,1,1,1,0,0 -IG_Scroll_Of_Magic,Guarantee_Armor_7Up,20,1,1,1,0,0 -IG_Scroll_Of_Magic,Guarantee_Weapon_7Up,20,1,1,1,0,0 -IG_Scroll_Of_Magic,Robo_Eye,45,1,1,1,0,0 -IG_Scroll_Of_Magic,Rainbow_Scarf,53,1,1,1,0,0 -IG_Scroll_Of_Magic,Alchemy_Glove,100,1,1,1,0,0 -IG_Scroll_Of_Magic,Orleans_Necklace,78,1,1,1,0,0 -IG_Scroll_Of_Magic,Orleans_Glove,120,1,1,1,0,0 -IG_Scroll_Of_Magic,Balloon_Hat,150,1,1,1,0,0 -IG_Scroll_Of_Magic,Orleans_Gown,200,1,1,1,0,0 -IG_Scroll_Of_Magic,Orleans_Server,250,1,1,1,0,0 -IG_Scroll_Of_Magic,Enchant_Book,350,1,1,0,0,0 -IG_Scroll_Of_Magic,HD_Ori_Box5,500,1,1,0,0,0 -IG_Scroll_Of_Magic,HD_Elu_Box5,500,1,1,0,0,0 -IG_Scroll_Of_Magic,Blue_Herb_Box2,600,1,1,0,0,0 -IG_Scroll_Of_Magic,Blessing_10_Scroll_Box,1200,1,1,0,0,0 -IG_Scroll_Of_Magic,Guyak_Pudding,1200,10,1,0,0,0 -IG_Scroll_Of_Magic,Megaphone_Box,1000,1,1,0,0,0 -IG_Scroll_Of_Magic,Psychic_ArmorS,1200,5,1,0,0,0 -IG_Scroll_Of_Magic,Zeny_Scroll,1200,15,1,0,0,0 -IG_Scroll_Of_Magic,HE_Battle_Manual,1200,3,1,0,0,0 +IG_Scroll_Of_Magic,4365,1,1,1,1,0,0 // 1x B_Katrinn_Card +IG_Scroll_Of_Magic,4486,3,1,1,1,0,0 // 1x Sealed_Berz_Card +IG_Scroll_Of_Magic,4541,10,1,1,1,0,0 // 1x SLD_B_Katrinn_Card +IG_Scroll_Of_Magic,6234,20,1,1,1,0,0 // 1x Guarantee_Armor_7Up +IG_Scroll_Of_Magic,6230,20,1,1,1,0,0 // 1x Guarantee_Weapon_7Up +IG_Scroll_Of_Magic,5325,45,1,1,1,0,0 // 1x Robo_Eye +IG_Scroll_Of_Magic,5463,53,1,1,1,0,0 // 1x Rainbow_Scarf +IG_Scroll_Of_Magic,2854,100,1,1,1,0,0 // 1x Alchemy_Glove +IG_Scroll_Of_Magic,2881,78,1,1,1,0,0 // 1x Orleans_Necklace +IG_Scroll_Of_Magic,2701,120,1,1,1,0,0 // 1x Orleans_Glove +IG_Scroll_Of_Magic,5379,150,1,1,1,0,0 // 1x Balloon_Hat +IG_Scroll_Of_Magic,2365,200,1,1,1,0,0 // 1x Orleans_Gown +IG_Scroll_Of_Magic,2123,250,1,1,1,0,0 // 1x Orleans_Server +IG_Scroll_Of_Magic,6484,350,1,1,0,0,0 // 1x Enchant_Book +IG_Scroll_Of_Magic,16393,500,1,1,0,0,0 // 1x HD_Ori_Box5 +IG_Scroll_Of_Magic,16395,500,1,1,0,0,0 // 1x HD_Elu_Box5 +IG_Scroll_Of_Magic,12533,600,1,1,0,0,0 // 1x Blue_Herb_Box2 +IG_Scroll_Of_Magic,12913,1200,1,1,0,0,0 // 1x Blessing_10_Scroll_Box +IG_Scroll_Of_Magic,12710,1200,10,1,0,0,0 // 10x Guyak_Pudding +IG_Scroll_Of_Magic,12919,1000,1,1,0,0,0 // 1x Megaphone_Box +IG_Scroll_Of_Magic,12406,1200,5,1,0,0,0 // 5x Psychic_ArmorS +IG_Scroll_Of_Magic,14508,1200,15,1,0,0,0 // 15x Zeny_Scroll +IG_Scroll_Of_Magic,12411,1200,3,1,0,0,0 // 3x HE_Battle_Manual -IG_Scroll_Of_Thews,Lady_Tanee_Card,1,1,1,1,0,0 -IG_Scroll_Of_Thews,Sealed_Lady_Tanee_Card,4,1,1,1,0,0 -IG_Scroll_Of_Thews,Incubus_Card,20,1,1,1,0,0 -IG_Scroll_Of_Thews,Succubus_Card,30,1,1,1,0,0 -IG_Scroll_Of_Thews,Asgard_Blessing,10,1,1,1,0,0 -IG_Scroll_Of_Thews,YinYang_Earring,100,1,1,1,0,0 -IG_Scroll_Of_Thews,Spiked_Scarf,25,1,1,1,0,0 -IG_Scroll_Of_Thews,Guarantee_Armor_7Up,20,1,1,1,0,0 -IG_Scroll_Of_Thews,Guarantee_Weapon_7Up,20,1,1,1,0,0 -IG_Scroll_Of_Thews,Sura_Rampage,70,1,1,1,0,0 -IG_Scroll_Of_Thews,Headband_Of_Power,500,1,1,1,0,0 -IG_Scroll_Of_Thews,Superb_Fish_Box50,100,1,1,1,0,0 -IG_Scroll_Of_Thews,Max_Weight_Up_Box,200,1,1,0,0,0 -IG_Scroll_Of_Thews,Guyak_Pudding,1000,10,1,0,0,0 -IG_Scroll_Of_Thews,Fruit_Of_Mastela_Box2,800,1,1,0,0,0 -IG_Scroll_Of_Thews,Mental_Potion,700,1,1,0,0,0 -IG_Scroll_Of_Thews,13285,1000,5,1,0,0,0 -IG_Scroll_Of_Thews,13284,1000,5,1,0,0,0 -IG_Scroll_Of_Thews,Psychic_ArmorS,500,5,1,0,0,0 -IG_Scroll_Of_Thews,Underripe_Yggseed,900,10,1,0,0,0 -IG_Scroll_Of_Thews,Regeneration_Box10,1000,1,1,0,0,0 -IG_Scroll_Of_Thews,Int_Dish_Box,1000,1,1,0,0,0 -IG_Scroll_Of_Thews,Str_Dish_Box,1000,1,1,0,0,0 +IG_Scroll_Of_Thews,4376,1,1,1,1,0,0 // 1x Lady_Tanee_Card +IG_Scroll_Of_Thews,4498,4,1,1,1,0,0 // 1x Sealed_Lady_Tanee_Card +IG_Scroll_Of_Thews,4269,20,1,1,1,0,0 // 1x Incubus_Card +IG_Scroll_Of_Thews,4218,30,1,1,1,0,0 // 1x Succubus_Card +IG_Scroll_Of_Thews,18550,10,1,1,1,0,0 // 1x Asgard_Blessing +IG_Scroll_Of_Thews,18576,100,1,1,1,0,0 // 1x YinYang_Earring +IG_Scroll_Of_Thews,5462,25,1,1,1,0,0 // 1x Spiked_Scarf +IG_Scroll_Of_Thews,6234,20,1,1,1,0,0 // 1x Guarantee_Armor_7Up +IG_Scroll_Of_Thews,6230,20,1,1,1,0,0 // 1x Guarantee_Weapon_7Up +IG_Scroll_Of_Thews,1830,70,1,1,1,0,0 // 1x Sura_Rampage +IG_Scroll_Of_Thews,5070,500,1,1,1,0,0 // 1x Headband_Of_Power +IG_Scroll_Of_Thews,17071,100,1,1,1,0,0 // 1x Superb_Fish_Box50 +IG_Scroll_Of_Thews,13710,200,1,1,0,0,0 // 1x Max_Weight_Up_Box +IG_Scroll_Of_Thews,12710,1000,10,1,0,0,0 // 10x Guyak_Pudding +IG_Scroll_Of_Thews,12642,800,1,1,0,0,0 // 1x Fruit_Of_Mastela_Box2 +IG_Scroll_Of_Thews,14600,700,1,1,0,0,0 // 1x Mental_Potion +IG_Scroll_Of_Thews,13285,1000,5,1,0,0,0 // 5x Wug_Cocktail_To_Throw +IG_Scroll_Of_Thews,13284,1000,5,1,0,0,0 // 5x Savage_BBQ_To_Throw +IG_Scroll_Of_Thews,12406,500,5,1,0,0,0 // 5x Psychic_ArmorS +IG_Scroll_Of_Thews,12405,900,10,1,0,0,0 // 10x Underripe_Yggseed +IG_Scroll_Of_Thews,13720,1000,1,1,0,0,0 // 1x Regeneration_Box10 +IG_Scroll_Of_Thews,12905,1000,1,1,0,0,0 // 1x Int_Dish_Box +IG_Scroll_Of_Thews,12903,1000,1,1,0,0,0 // 1x Str_Dish_Box -IG_Scroll_Of_Darkness,Fallen_Bishop_Card,1,1,1,1,0,0 -IG_Scroll_Of_Darkness,SLD_Dark_Snake_Card,5,1,1,1,0,0 -IG_Scroll_Of_Darkness,Deviling_Card,10,1,1,1,0,0 -IG_Scroll_Of_Darkness,Ghostring_Card,25,1,1,1,0,0 -IG_Scroll_Of_Darkness,Black_Glasses_,2,1,1,1,0,0 -IG_Scroll_Of_Darkness,Fallen_Angel_Wing,15,1,1,1,0,0 -IG_Scroll_Of_Darkness,Satanic_Chain_P,25,1,1,1,0,0 -IG_Scroll_Of_Darkness,Devil_Whisper,40,1,1,1,0,0 -IG_Scroll_Of_Darkness,Ear_Of_Angel's_Wing,80,1,1,1,0,0 -IG_Scroll_Of_Darkness,Evil_Marcher_Hat,150,1,1,1,0,0 -IG_Scroll_Of_Darkness,Rune_Boots,100,1,1,1,0,0 -IG_Scroll_Of_Darkness,Evil_Mask,100,1,1,1,0,0 -IG_Scroll_Of_Darkness,Eyes_Of_Darkness,200,1,1,1,0,0 -IG_Scroll_Of_Darkness,Helm_Of_Darkness,80,1,1,1,0,0 -IG_Scroll_Of_Darkness,Darkness_Helm,100,1,1,1,0,0 -IG_Scroll_Of_Darkness,Unbreak_Weap_Box,300,1,1,0,0,0 -IG_Scroll_Of_Darkness,Blue_Herb_Box2,1267,1,1,0,0,0 -IG_Scroll_Of_Darkness,Diabolic_Scroll,1500,5,1,0,0,0 -IG_Scroll_Of_Darkness,HE_Battle_Manual,1500,3,1,0,0,0 -IG_Scroll_Of_Darkness,Boy's_Naivety,1500,1,1,0,0,0 -IG_Scroll_Of_Darkness,Psychic_ArmorS,1500,5,1,0,0,0 -IG_Scroll_Of_Darkness,Shadow_Armor_S_Box10,1500,1,1,0,0,0 +IG_Scroll_Of_Darkness,4441,1,1,1,1,0,0 // 1x Fallen_Bishop_Card +IG_Scroll_Of_Darkness,4544,5,1,1,1,0,0 // 1x SLD_Dark_Snake_Card +IG_Scroll_Of_Darkness,4174,10,1,1,1,0,0 // 1x Deviling_Card +IG_Scroll_Of_Darkness,4047,25,1,1,1,0,0 // 1x Ghostring_Card +IG_Scroll_Of_Darkness,18611,2,1,1,1,0,0 // 1x Black_Glasses_ +IG_Scroll_Of_Darkness,2589,15,1,1,1,0,0 // 1x Fallen_Angel_Wing +IG_Scroll_Of_Darkness,5376,25,1,1,1,0,0 // 1x Satanic_Chain_P +IG_Scroll_Of_Darkness,18538,40,1,1,1,0,0 // 1x Devil_Whisper +IG_Scroll_Of_Darkness,5074,80,1,1,1,0,0 // 1x Ear_Of_Angel's_Wing +IG_Scroll_Of_Darkness,18522,150,1,1,1,0,0 // 1x Evil_Marcher_Hat +IG_Scroll_Of_Darkness,2481,100,1,1,1,0,0 // 1x Rune_Boots +IG_Scroll_Of_Darkness,18540,100,1,1,1,0,0 // 1x Evil_Mask +IG_Scroll_Of_Darkness,5470,200,1,1,1,0,0 // 1x Eyes_Of_Darkness +IG_Scroll_Of_Darkness,5181,80,1,1,1,0,0 // 1x Helm_Of_Darkness +IG_Scroll_Of_Darkness,5373,100,1,1,1,0,0 // 1x Darkness_Helm +IG_Scroll_Of_Darkness,16753,300,1,1,0,0,0 // 1x Unbreak_Weap_Box +IG_Scroll_Of_Darkness,12533,1267,1,1,0,0,0 // 1x Blue_Herb_Box2 +IG_Scroll_Of_Darkness,12787,1500,5,1,0,0,0 // 5x Diabolic_Scroll +IG_Scroll_Of_Darkness,12411,1500,3,1,0,0,0 // 3x HE_Battle_Manual +IG_Scroll_Of_Darkness,12373,1500,1,1,0,0,0 // 1x Boy's_Naivety +IG_Scroll_Of_Darkness,12406,1500,5,1,0,0,0 // 5x Psychic_ArmorS +IG_Scroll_Of_Darkness,13741,1500,1,1,0,0,0 // 1x Shadow_Armor_S_Box10 -IG_Scroll_Of_Holiness,Maya_Card,1,1,1,1,0,0 -IG_Scroll_Of_Holiness,Sealed_B_Magaleta_Card,9,1,1,1,0,0 -IG_Scroll_Of_Holiness,Angeling_Card,15,1,1,1,0,0 -IG_Scroll_Of_Holiness,Archangeling_Card,25,1,1,1,0,0 -IG_Scroll_Of_Holiness,Guarantee_Armor_8Up,25,1,1,1,0,0 -IG_Scroll_Of_Holiness,Guarantee_Weapon_8Up,25,1,1,1,0,0 -IG_Scroll_Of_Holiness,Elven_Ears_,5,1,1,1,0,0 -IG_Scroll_Of_Holiness,Archangel_Wing,50,1,1,1,0,0 -IG_Scroll_Of_Holiness,White_Feather,80,1,1,1,0,0 -IG_Scroll_Of_Holiness,B_Feather_Beret,100,1,1,1,0,0 -IG_Scroll_Of_Holiness,Flying_Angel,150,1,1,1,0,0 -IG_Scroll_Of_Holiness,Angel_Spirit,50,1,1,1,0,0 -IG_Scroll_Of_Holiness,Ear_Of_Angel's_Wing,200,1,1,1,0,0 -IG_Scroll_Of_Holiness,Unbreak_Def_Box,300,1,1,0,0,0 -IG_Scroll_Of_Holiness,Job_Manual50_Box,500,1,1,0,0,0 -IG_Scroll_Of_Holiness,Fruit_Of_Mastela_Box2,1000,1,1,0,0,0 -IG_Scroll_Of_Holiness,Inc_Agi_10_Scroll_Box,965,1,1,0,0,0 -IG_Scroll_Of_Holiness,Kafra_Card_Box,1100,1,1,0,0,0 -IG_Scroll_Of_Holiness,Guyak_Pudding,1000,10,1,0,0,0 -IG_Scroll_Of_Holiness,Holy_Armor_S_Box10,1100,1,1,0,0,0 -IG_Scroll_Of_Holiness,HE_Battle_Manual,1100,3,1,0,0,0 -IG_Scroll_Of_Holiness,J_Aspersio_5_Scroll,1100,5,1,0,0,0 -IG_Scroll_Of_Holiness,Gril's_Naivety,1100,1,1,0,0,0 +IG_Scroll_Of_Holiness,4146,1,1,1,1,0,0 // 1x Maya_Card +IG_Scroll_Of_Holiness,4501,9,1,1,1,0,0 // 1x Sealed_B_Magaleta_Card +IG_Scroll_Of_Holiness,4054,15,1,1,1,0,0 // 1x Angeling_Card +IG_Scroll_Of_Holiness,4241,25,1,1,1,0,0 // 1x Archangeling_Card +IG_Scroll_Of_Holiness,6233,25,1,1,1,0,0 // 1x Guarantee_Armor_8Up +IG_Scroll_Of_Holiness,6229,25,1,1,1,0,0 // 1x Guarantee_Weapon_8Up +IG_Scroll_Of_Holiness,18507,5,1,1,1,0,0 // 1x Elven_Ears_ +IG_Scroll_Of_Holiness,2573,50,1,1,1,0,0 // 1x Archangel_Wing +IG_Scroll_Of_Holiness,18573,80,1,1,1,0,0 // 1x White_Feather +IG_Scroll_Of_Holiness,18561,100,1,1,1,0,0 // 1x B_Feather_Beret +IG_Scroll_Of_Holiness,5210,150,1,1,1,0,0 // 1x Flying_Angel +IG_Scroll_Of_Holiness,5389,50,1,1,1,0,0 // 1x Angel_Spirit +IG_Scroll_Of_Holiness,5074,200,1,1,1,0,0 // 1x Ear_Of_Angel's_Wing +IG_Scroll_Of_Holiness,16755,300,1,1,0,0,0 // 1x Unbreak_Def_Box +IG_Scroll_Of_Holiness,13990,500,1,1,0,0,0 // 1x Job_Manual50_Box +IG_Scroll_Of_Holiness,12642,1000,1,1,0,0,0 // 1x Fruit_Of_Mastela_Box2 +IG_Scroll_Of_Holiness,12914,965,1,1,0,0,0 // 1x Inc_Agi_10_Scroll_Box +IG_Scroll_Of_Holiness,12909,1100,1,1,0,0,0 // 1x Kafra_Card_Box +IG_Scroll_Of_Holiness,12710,1000,10,1,0,0,0 // 10x Guyak_Pudding +IG_Scroll_Of_Holiness,13744,1100,1,1,0,0,0 // 1x Holy_Armor_S_Box10 +IG_Scroll_Of_Holiness,12411,1100,3,1,0,0,0 // 3x HE_Battle_Manual +IG_Scroll_Of_Holiness,12928,1100,5,1,0,0,0 // 5x J_Aspersio_5_Scroll +IG_Scroll_Of_Holiness,12370,1100,1,1,0,0,0 // 1x Gril's_Naivety -IG_Horned_Scroll,Orc_Load_Card,1,1,1,1,0,0 -IG_Horned_Scroll,Sealed_Atroce_Card,5,1,1,1,0,0 -IG_Horned_Scroll,Sealed_Kiel_Card,3,1,1,1,0,0 -IG_Horned_Scroll,Sealed_D_Lord_Card,30,1,1,1,0,0 -IG_Horned_Scroll,Black_Devil_Mask_,2,1,1,1,0,0 -IG_Horned_Scroll,Horn_Of_Ancient,10,1,1,1,0,0 -IG_Horned_Scroll,Love_Rabbit_Hood,130,1,1,1,0,0 -IG_Horned_Scroll,Remover_Hat,150,1,1,1,0,0 -IG_Horned_Scroll,Inccubus_Horn,50,1,1,1,0,0 -IG_Horned_Scroll,Horn_Of_Succubus,50,1,1,1,0,0 -IG_Horned_Scroll,Majestic_Evil_Horn,50,1,1,1,0,0 -IG_Horned_Scroll,Bloody_Dead_Branch,100,1,1,1,0,0 -IG_Horned_Scroll,F_Clover_Box_Mouth4,950,1,1,0,0,0 -IG_Horned_Scroll,All_In_One_Ring_Box,169,1,1,0,0,0 -IG_Horned_Scroll,Max_Weight_Up_Box,250,1,1,0,0,0 -IG_Horned_Scroll,Boarding_Halter_Box,550,1,1,0,0,0 -IG_Horned_Scroll,Convex_Mirror_Box5,800,1,1,0,0,0 -IG_Horned_Scroll,Yggdrasilberry_Box_,1200,1,1,0,0,0 -IG_Horned_Scroll,Underripe_Yggseed,1250,10,1,0,0,0 -IG_Horned_Scroll,Psychic_ArmorS,1250,5,1,0,0,0 -IG_Horned_Scroll,White_Slim_Pot_Box2,1500,1,1,0,0,0 -IG_Horned_Scroll,Dead_Tree_Branch_Box2,1500,1,1,0,0,0 +IG_Horned_Scroll,4135,1,1,1,1,0,0 // 1x Orc_Load_Card +IG_Horned_Scroll,4536,5,1,1,1,0,0 // 1x Sealed_Atroce_Card +IG_Horned_Scroll,4480,3,1,1,1,0,0 // 1x Sealed_Kiel_Card +IG_Horned_Scroll,4488,30,1,1,1,0,0 // 1x Sealed_D_Lord_Card +IG_Horned_Scroll,18603,2,1,1,1,0,0 // 1x Black_Devil_Mask_ +IG_Horned_Scroll,18595,10,1,1,1,0,0 // 1x Horn_Of_Ancient +IG_Horned_Scroll,5764,130,1,1,1,0,0 // 1x Love_Rabbit_Hood +IG_Horned_Scroll,5777,150,1,1,1,0,0 // 1x Remover_Hat +IG_Horned_Scroll,5072,50,1,1,1,0,0 // 1x Inccubus_Horn +IG_Horned_Scroll,5066,50,1,1,1,0,0 // 1x Horn_Of_Succubus +IG_Horned_Scroll,5584,50,1,1,1,0,0 // 1x Majestic_Evil_Horn +IG_Horned_Scroll,12103,100,1,1,1,0,0 // 1x Bloody_Dead_Branch +IG_Horned_Scroll,16386,950,1,1,0,0,0 // 1x F_Clover_Box_Mouth4 +IG_Horned_Scroll,13953,169,1,1,0,0,0 // 1x All_In_One_Ring_Box +IG_Horned_Scroll,13710,250,1,1,0,0,0 // 1x Max_Weight_Up_Box +IG_Horned_Scroll,16682,550,1,1,0,0,0 // 1x Boarding_Halter_Box +IG_Horned_Scroll,13582,800,1,1,0,0,0 // 1x Convex_Mirror_Box5 +IG_Horned_Scroll,14232,1200,1,1,0,0,0 // 1x Yggdrasilberry_Box_ +IG_Horned_Scroll,12405,1250,10,1,0,0,0 // 10x Underripe_Yggseed +IG_Horned_Scroll,12406,1250,5,1,0,0,0 // 5x Psychic_ArmorS +IG_Horned_Scroll,12549,1500,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_Horned_Scroll,14234,1500,1,1,0,0,0 // 1x Dead_Tree_Branch_Box2 -IG_Mercury_Scroll,Gloom_Under_Night_Card,1,1,1,1,0,0 -IG_Mercury_Scroll,Maya_Puple_Card,2,1,1,1,0,0 -IG_Mercury_Scroll,Sealed_Samurai_Card,5,1,1,1,0,0 -IG_Mercury_Scroll,Sealed_Pharaoh_Card,10,1,1,1,0,0 -IG_Mercury_Scroll,Sunglasses_,2,1,1,1,0,0 -IG_Mercury_Scroll,18597,10,1,1,1,0,0 -IG_Mercury_Scroll,Sakura_Coronet,50,1,1,1,0,0 -IG_Mercury_Scroll,King_Prawn_Hat,200,1,1,1,0,0 -IG_Mercury_Scroll,Lucky_Clover,100,1,1,1,0,0 -IG_Mercury_Scroll,Prison_Uniform,150,1,1,1,0,0 -IG_Mercury_Scroll,Little_Feather_Hat,100,1,1,1,0,0 -IG_Mercury_Scroll,Buffalo_Horn,250,1,1,1,0,0 -IG_Mercury_Scroll,Superb_Fish_Box50,100,1,1,0,0,0 -IG_Mercury_Scroll,Abrasive_Box5,800,1,1,0,0,0 -IG_Mercury_Scroll,Blue_Herb_Box2,1000,1,1,0,0,0 -IG_Mercury_Scroll,6024,1500,1,1,0,0,0 -IG_Mercury_Scroll,Guyak_Pudding,800,10,1,0,0,0 -IG_Mercury_Scroll,Diabolic_Scroll,800,10,1,0,0,0 -IG_Mercury_Scroll,HE_Battle_Manual,1250,5,1,0,0,0 -IG_Mercury_Scroll,Siegfried_Box5,1370,1,1,0,0,0 -IG_Mercury_Scroll,Fruit_Of_Mastela_Box2,1500,1,1,0,0,0 +IG_Mercury_Scroll,4408,1,1,1,1,0,0 // 1x Gloom_Under_Night_Card +IG_Mercury_Scroll,4198,2,1,1,1,0,0 // 1x Maya_Puple_Card +IG_Mercury_Scroll,4499,5,1,1,1,0,0 // 1x Sealed_Samurai_Card +IG_Mercury_Scroll,4489,10,1,1,1,0,0 // 1x Sealed_Pharaoh_Card +IG_Mercury_Scroll,2202,2,1,1,1,0,0 // 1x Sunglasses_ +IG_Mercury_Scroll,18597,10,1,1,1,0,0 // 1x Mercury_Riser +IG_Mercury_Scroll,5768,50,1,1,1,0,0 // 1x Sakura_Coronet +IG_Mercury_Scroll,18554,200,1,1,1,0,0 // 1x King_Prawn_Hat +IG_Mercury_Scroll,18521,100,1,1,1,0,0 // 1x Lucky_Clover +IG_Mercury_Scroll,15040,150,1,1,1,0,0 // 1x Prison_Uniform +IG_Mercury_Scroll,18541,100,1,1,1,0,0 // 1x Little_Feather_Hat +IG_Mercury_Scroll,2874,250,1,1,1,0,0 // 1x Buffalo_Horn +IG_Mercury_Scroll,17071,100,1,1,0,0,0 // 1x Superb_Fish_Box50 +IG_Mercury_Scroll,13717,800,1,1,0,0,0 // 1x Abrasive_Box5 +IG_Mercury_Scroll,12533,1000,1,1,0,0,0 // 1x Blue_Herb_Box2 +IG_Mercury_Scroll,6024,1500,1,1,0,0,0 // 1x 17Carat_Dia +IG_Mercury_Scroll,12710,800,10,1,0,0,0 // 10x Guyak_Pudding +IG_Mercury_Scroll,12787,800,10,1,0,0,0 // 10x Diabolic_Scroll +IG_Mercury_Scroll,12411,1250,5,1,0,0,0 // 5x HE_Battle_Manual +IG_Mercury_Scroll,13600,1370,1,1,0,0,0 // 1x Siegfried_Box5 +IG_Mercury_Scroll,12642,1500,1,1,0,0,0 // 1x Fruit_Of_Mastela_Box2 -IG_Challenge_Kit,Blessing_10_Scroll,0,20,0,0,0,1 -IG_Challenge_Kit,Inc_Agi_10_Scroll,0,20,0,0,0,1 +IG_Challenge_Kit,12215,0,20,0,0,0,1 // 20x Blessing_10_Scroll +IG_Challenge_Kit,12216,0,20,0,0,0,1 // 20x Inc_Agi_10_Scroll -IG_Tw_April_Scroll,Str_Dish_Box,1500,1,1,0,0,0 -IG_Tw_April_Scroll,Luk_Dish_Box,1500,1,1,0,0,0 -IG_Tw_April_Scroll,Vit_Dish_Box,1500,1,1,0,0,0 -IG_Tw_April_Scroll,S_Mdef_Potion_Box30,1300,1,1,0,0,0 -IG_Tw_April_Scroll,S_Def_Potion_Box30,1300,1,1,0,0,0 -IG_Tw_April_Scroll,Holy_Armor_S_Box10,1300,1,1,0,0,0 -IG_Tw_April_Scroll,Shadow_Armor_S_Box10,1300,1,1,0,0,0 -IG_Tw_April_Scroll,Turtle_General_Card,1,1,1,1,0,0 -IG_Tw_April_Scroll,RWC2010_Indonesia,6,1,1,1,0,0 -IG_Tw_April_Scroll,Neuralizer_Box,3,1,1,1,0,0 -IG_Tw_April_Scroll,Fallen_Angel_Wing,10,1,1,1,0,0 -IG_Tw_April_Scroll,Spiked_Scarf_Box,50,1,1,1,0,0 -IG_Tw_April_Scroll,Rainbow_Scarf_Box,50,1,1,1,0,0 -IG_Tw_April_Scroll,Fish_Head_Hat_Box,180,1,1,1,0,0 +IG_Tw_April_Scroll,12903,1500,1,1,0,0,0 // 1x Str_Dish_Box +IG_Tw_April_Scroll,12907,1500,1,1,0,0,0 // 1x Luk_Dish_Box +IG_Tw_April_Scroll,12908,1500,1,1,0,0,0 // 1x Vit_Dish_Box +IG_Tw_April_Scroll,13753,1300,1,1,0,0,0 // 1x S_Mdef_Potion_Box30 +IG_Tw_April_Scroll,13747,1300,1,1,0,0,0 // 1x S_Def_Potion_Box30 +IG_Tw_April_Scroll,13744,1300,1,1,0,0,0 // 1x Holy_Armor_S_Box10 +IG_Tw_April_Scroll,13741,1300,1,1,0,0,0 // 1x Shadow_Armor_S_Box10 +IG_Tw_April_Scroll,4305,1,1,1,1,0,0 // 1x Turtle_General_Card +IG_Tw_April_Scroll,18509,6,1,1,1,0,0 // 1x RWC2010_Indonesia +IG_Tw_April_Scroll,12911,3,1,1,1,0,0 // 1x Neuralizer_Box +IG_Tw_April_Scroll,2589,10,1,1,1,0,0 // 1x Fallen_Angel_Wing +IG_Tw_April_Scroll,14343,50,1,1,1,0,0 // 1x Spiked_Scarf_Box +IG_Tw_April_Scroll,14344,50,1,1,1,0,0 // 1x Rainbow_Scarf_Box +IG_Tw_April_Scroll,13902,180,1,1,1,0,0 // 1x Fish_Head_Hat_Box //Duplicated? //IG_Tw_October_Scroll,Max_Weight_Up_Box,432,1,1,0,0,1 @@ -2713,668 +2712,1330 @@ IG_Tw_April_Scroll,Fish_Head_Hat_Box,180,1,1,1,0,0 //IG_Tw_October_Scroll,Guarantee_Weapon_7Up,100,1,1,1,0,1 //IG_Tw_October_Scroll,Comin_Actor_Box,120,1,1,1,0,1 -IG_Summer_Scroll3,Underripe_Yggseed,1500,10,1,0,0,0 -IG_Summer_Scroll3,Megaphone_Box,1500,1,1,0,0,0 -IG_Summer_Scroll3,Vit_Dish_Box,1500,1,1,0,0,0 -IG_Summer_Scroll3,Holy_Armor_S_Box10,1500,1,1,0,0,0 -IG_Summer_Scroll3,Token_Of_Siegfried_Box,1300,1,1,0,0,0 -IG_Summer_Scroll3,Int_Dish_Box,1500,1,1,0,0,0 -IG_Summer_Scroll3,Unbreak_Weap_Box,150,1,1,1,0,0 -IG_Summer_Scroll3,Unbreak_Def_Box,150,1,1,1,0,0 -IG_Summer_Scroll3,Scuba_Mask,275,1,1,1,0,0 -IG_Summer_Scroll3,Sugared_Fruit_Stick,275,1,1,1,0,0 -IG_Summer_Scroll3,Dress_Hat,275,1,1,1,0,0 -IG_Summer_Scroll3,Asgard_Blessing,10,1,1,1,0,0 -IG_Summer_Scroll3,Guarantee_Armor_9Up,5,1,1,1,0,0 -IG_Summer_Scroll3,Guarantee_Armor_7Up,45,1,1,1,0,0 -IG_Summer_Scroll3,Guarantee_Weapon_9Up,10,1,1,1,0,0 -IG_Summer_Scroll3,Maya_Puple_Card,3,1,1,1,0,0 -IG_Summer_Scroll3,Sealed_Tao_Card,1,1,1,1,0,0 -IG_Summer_Scroll3,B_Eremes_Card,1,1,1,1,0,0 +IG_Summer_Scroll3,12405,1500,10,1,0,0,0 // 10x Underripe_Yggseed +IG_Summer_Scroll3,12919,1500,1,1,0,0,0 // 1x Megaphone_Box +IG_Summer_Scroll3,12908,1500,1,1,0,0,0 // 1x Vit_Dish_Box +IG_Summer_Scroll3,13744,1500,1,1,0,0,0 // 1x Holy_Armor_S_Box10 +IG_Summer_Scroll3,12922,1300,1,1,0,0,0 // 1x Token_Of_Siegfried_Box +IG_Summer_Scroll3,12905,1500,1,1,0,0,0 // 1x Int_Dish_Box +IG_Summer_Scroll3,16753,150,1,1,1,0,0 // 1x Unbreak_Weap_Box +IG_Summer_Scroll3,16755,150,1,1,1,0,0 // 1x Unbreak_Def_Box +IG_Summer_Scroll3,5397,275,1,1,1,0,0 // 1x Scuba_Mask +IG_Summer_Scroll3,18710,275,1,1,1,0,0 // 1x Sugared_Fruit_Stick +IG_Summer_Scroll3,5211,275,1,1,1,0,0 // 1x Dress_Hat +IG_Summer_Scroll3,18550,10,1,1,1,0,0 // 1x Asgard_Blessing +IG_Summer_Scroll3,6232,5,1,1,1,0,0 // 1x Guarantee_Armor_9Up +IG_Summer_Scroll3,6234,45,1,1,1,0,0 // 1x Guarantee_Armor_7Up +IG_Summer_Scroll3,6228,10,1,1,1,0,0 // 1x Guarantee_Weapon_9Up +IG_Summer_Scroll3,4198,3,1,1,1,0,0 // 1x Maya_Puple_Card +IG_Summer_Scroll3,4493,1,1,1,1,0,0 // 1x Sealed_Tao_Card +IG_Summer_Scroll3,4359,1,1,1,1,0,0 // 1x B_Eremes_Card -IG_C_Wing_Of_Fly_3Day_Box,C_Wing_Of_Fly,0,1,0,0,4320,1 +IG_C_Wing_Of_Fly_3Day_Box,12887,0,1,0,0,4320,1 // 1x C_Wing_Of_Fly -IG_RWC_2012_Set_Box,RWC_2012_Ring,0,1,0,0,0,1 -IG_RWC_2012_Set_Box,RWC_2012_Pendant,0,1,0,0,0,1 -IG_RWC_2012_Set_Box,C_Wing_Of_Fly_3Day_Box,0,1,0,0,0,1 +IG_RWC_2012_Set_Box,2966,0,1,0,0,0,1 // 1x RWC_2012_Ring +IG_RWC_2012_Set_Box,2968,0,1,0,0,0,1 // 1x RWC_2012_Pendant +IG_RWC_2012_Set_Box,17251,0,1,0,0,0,1 // 1x C_Wing_Of_Fly_3Day_Box -IG_Ex_Def_Potion_Box,Ex_Def_Potion,0,5,0,0,0,1 -IG_Ex_Def_Potion_Box,RWC_Scroll_2012,0,1,0,0,0,1 +IG_Ex_Def_Potion_Box,14614,0,5,0,0,0,1 // 5x Ex_Def_Potion +IG_Ex_Def_Potion_Box,14613,0,1,0,0,0,1 // 1x RWC_Scroll_2012 -IG_RWC_Scroll_2012,RWC_Inicializer,1000,1,1,0,0,0 -IG_RWC_Scroll_2012,Guarantee_Armor_7Up,90,1,1,1,0,0 -IG_RWC_Scroll_2012,Guarantee_Weapon_7Up,90,1,1,1,0,0 -IG_RWC_Scroll_2012,Guarantee_Armor_9Up,5,1,1,1,0,0 -IG_RWC_Scroll_2012,Guarantee_Weapon_9Up,5,1,1,1,0,0 -IG_RWC_Scroll_2012,White_Slim_Pot_Box2,1000,1,1,0,0,0 -IG_RWC_Scroll_2012,Poison_Bottle_Box2,1000,1,1,0,0,0 -IG_RWC_Scroll_2012,Bubble_Gum_Box5,1500,1,1,0,0,0 -IG_RWC_Scroll_2012,6024,1000,1,1,0,0,0 -IG_RWC_Scroll_2012,Battle_Manual_Box5,1500,1,1,0,0,0 -IG_RWC_Scroll_2012,Old_C_Album_Weapon,500,1,1,0,0,0 -IG_RWC_Scroll_2012,Old_C_Album_Acc,500,1,1,0,0,0 -IG_RWC_Scroll_2012,Branch_Of_Dead_Tree,1000,3,1,0,0,0 -IG_RWC_Scroll_2012,Magic_Card_Album,100,1,1,1,0,0 -IG_RWC_Scroll_2012,RWC_Memory_Staff,150,1,1,1,0,0 -IG_RWC_Scroll_2012,RWC_Memory_Mace,150,1,1,1,0,0 -IG_RWC_Scroll_2012,RWC_Memory_Knife,150,1,1,1,0,0 -IG_RWC_Scroll_2012,Rainbow_Feather_Deco,150,1,1,1,0,0 -IG_RWC_Scroll_2012,C_Rainbow_Feather_Deco,110,1,1,1,0,0 +IG_RWC_Scroll_2012,6665,1000,1,1,0,0,0 // 1x RWC_Inicializer +IG_RWC_Scroll_2012,6234,90,1,1,1,0,0 // 1x Guarantee_Armor_7Up +IG_RWC_Scroll_2012,6230,90,1,1,1,0,0 // 1x Guarantee_Weapon_7Up +IG_RWC_Scroll_2012,6232,5,1,1,1,0,0 // 1x Guarantee_Armor_9Up +IG_RWC_Scroll_2012,6228,5,1,1,1,0,0 // 1x Guarantee_Weapon_9Up +IG_RWC_Scroll_2012,12549,1000,1,1,0,0,0 // 1x White_Slim_Pot_Box2 +IG_RWC_Scroll_2012,12550,1000,1,1,0,0,0 // 1x Poison_Bottle_Box2 +IG_RWC_Scroll_2012,13607,1500,1,1,0,0,0 // 1x Bubble_Gum_Box5 +IG_RWC_Scroll_2012,6024,1000,1,1,0,0,0 // 1x 17Carat_Dia +IG_RWC_Scroll_2012,13599,1500,1,1,0,0,0 // 1x Battle_Manual_Box5 +IG_RWC_Scroll_2012,12698,500,1,1,0,0,0 // 1x Old_C_Album_Weapon +IG_RWC_Scroll_2012,12695,500,1,1,0,0,0 // 1x Old_C_Album_Acc +IG_RWC_Scroll_2012,604,1000,3,1,0,0,0 // 3x Branch_Of_Dead_Tree +IG_RWC_Scroll_2012,12246,100,1,1,1,0,0 // 1x Magic_Card_Album +IG_RWC_Scroll_2012,1670,150,1,1,1,0,0 // 1x RWC_Memory_Staff +IG_RWC_Scroll_2012,16026,150,1,1,1,0,0 // 1x RWC_Memory_Mace +IG_RWC_Scroll_2012,13092,150,1,1,1,0,0 // 1x RWC_Memory_Knife +IG_RWC_Scroll_2012,18821,150,1,1,1,0,0 // 1x Rainbow_Feather_Deco +IG_RWC_Scroll_2012,19650,110,1,1,1,0,0 // 1x C_Rainbow_Feather_Deco -IG_Old_Coin_Pocket,Malang_Sp_Can,400,1,1,0,0,0 -IG_Old_Coin_Pocket,Splendide_Coin,200,1,1,0,0,0 -IG_Old_Coin_Pocket,Manuk_Coin,100,1,1,0,0,0 -IG_Old_Coin_Pocket,Sapa_Feat_Cert,80,1,1,0,0,0 -IG_Old_Coin_Pocket,Mora_Coin,50,1,1,0,0,0 -IG_Old_Coin_Pocket,Anger_Seagod,1,1,1,0,0,0 -IG_Old_Coin_Pocket,Cgrade_Coin,74,1,1,0,0,0 -IG_Old_Coin_Pocket,Dgrade_Coin,95,1,1,0,0,0 -IG_Old_Coin_Pocket,Malang_Sp_Can,400,1,2,0,0,0 -IG_Old_Coin_Pocket,Splendide_Coin,250,1,2,0,0,0 -IG_Old_Coin_Pocket,Manuk_Coin,100,1,2,0,0,0 -IG_Old_Coin_Pocket,Sapa_Feat_Cert,100,1,2,0,0,0 -IG_Old_Coin_Pocket,Mora_Coin,40,1,2,0,0,0 -IG_Old_Coin_Pocket,Agrade_Coin,15,1,2,0,0,0 -IG_Old_Coin_Pocket,Egrade_Coin,40,1,2,0,0,0 -IG_Old_Coin_Pocket,Malang_Sp_Can,300,1,3,0,0,0 -IG_Old_Coin_Pocket,Splendide_Coin,230,1,3,0,0,0 -IG_Old_Coin_Pocket,Manuk_Coin,180,1,3,0,0,0 -IG_Old_Coin_Pocket,Sapa_Feat_Cert,100,1,3,0,0,0 -IG_Old_Coin_Pocket,Mora_Coin,75,1,3,0,0,0 -IG_Old_Coin_Pocket,Bgrade_Coin,60,1,3,0,0,0 +IG_Old_Coin_Pocket,12636,400,1,1,0,0,0 // 1x Malang_Sp_Can +IG_Old_Coin_Pocket,6081,200,1,1,0,0,0 // 1x Splendide_Coin +IG_Old_Coin_Pocket,6080,100,1,1,0,0,0 // 1x Manuk_Coin +IG_Old_Coin_Pocket,6304,80,1,1,0,0,0 // 1x Sapa_Feat_Cert +IG_Old_Coin_Pocket,6380,50,1,1,0,0,0 // 1x Mora_Coin +IG_Old_Coin_Pocket,6423,1,1,1,0,0,0 // 1x Anger_Seagod +IG_Old_Coin_Pocket,6420,74,1,1,0,0,0 // 1x Cgrade_Coin +IG_Old_Coin_Pocket,6421,95,1,1,0,0,0 // 1x Dgrade_Coin +IG_Old_Coin_Pocket,12636,400,1,2,0,0,0 // 1x Malang_Sp_Can +IG_Old_Coin_Pocket,6081,250,1,2,0,0,0 // 1x Splendide_Coin +IG_Old_Coin_Pocket,6080,100,1,2,0,0,0 // 1x Manuk_Coin +IG_Old_Coin_Pocket,6304,100,1,2,0,0,0 // 1x Sapa_Feat_Cert +IG_Old_Coin_Pocket,6380,40,1,2,0,0,0 // 1x Mora_Coin +IG_Old_Coin_Pocket,6418,15,1,2,0,0,0 // 1x Agrade_Coin +IG_Old_Coin_Pocket,6422,40,1,2,0,0,0 // 1x Egrade_Coin +IG_Old_Coin_Pocket,12636,300,1,3,0,0,0 // 1x Malang_Sp_Can +IG_Old_Coin_Pocket,6081,230,1,3,0,0,0 // 1x Splendide_Coin +IG_Old_Coin_Pocket,6080,180,1,3,0,0,0 // 1x Manuk_Coin +IG_Old_Coin_Pocket,6304,100,1,3,0,0,0 // 1x Sapa_Feat_Cert +IG_Old_Coin_Pocket,6380,75,1,3,0,0,0 // 1x Mora_Coin +IG_Old_Coin_Pocket,6419,60,1,3,0,0,0 // 1x Bgrade_Coin -IG_High_Coin_Pocket,Malang_Sp_Can,600,1,1,0,0,0 -IG_High_Coin_Pocket,Sapa_Feat_Cert,300,1,1,0,0,0 -IG_High_Coin_Pocket,Agrade_Coin,100,1,1,0,0,0 -IG_High_Coin_Pocket,Malang_Sp_Can,600,1,2,0,0,0 -IG_High_Coin_Pocket,Mora_Coin,200,1,2,0,0,0 -IG_High_Coin_Pocket,Bgrade_Coin,200,1,2,0,0,0 -IG_High_Coin_Pocket,Malang_Sp_Can,500,1,3,0,0,0 -IG_High_Coin_Pocket,Sapa_Feat_Cert,300,1,3,0,0,0 -IG_High_Coin_Pocket,Cgrade_Coin,200,1,3,0,0,0 -IG_High_Coin_Pocket,Malang_Sp_Can,500,1,4,0,0,0 -IG_High_Coin_Pocket,Mora_Coin,300,1,4,0,0,0 -IG_High_Coin_Pocket,Dgrade_Coin,200,1,4,0,0,0 +IG_High_Coin_Pocket,12636,600,1,1,0,0,0 // 1x Malang_Sp_Can +IG_High_Coin_Pocket,6304,300,1,1,0,0,0 // 1x Sapa_Feat_Cert +IG_High_Coin_Pocket,6418,100,1,1,0,0,0 // 1x Agrade_Coin +IG_High_Coin_Pocket,12636,600,1,2,0,0,0 // 1x Malang_Sp_Can +IG_High_Coin_Pocket,6380,200,1,2,0,0,0 // 1x Mora_Coin +IG_High_Coin_Pocket,6419,200,1,2,0,0,0 // 1x Bgrade_Coin +IG_High_Coin_Pocket,12636,500,1,3,0,0,0 // 1x Malang_Sp_Can +IG_High_Coin_Pocket,6304,300,1,3,0,0,0 // 1x Sapa_Feat_Cert +IG_High_Coin_Pocket,6420,200,1,3,0,0,0 // 1x Cgrade_Coin +IG_High_Coin_Pocket,12636,500,1,4,0,0,0 // 1x Malang_Sp_Can +IG_High_Coin_Pocket,6380,300,1,4,0,0,0 // 1x Mora_Coin +IG_High_Coin_Pocket,6421,200,1,4,0,0,0 // 1x Dgrade_Coin -IG_Mid_Coin_Pocket,Malang_Sp_Can,600,1,1,0,0,0 -IG_Mid_Coin_Pocket,Sapa_Feat_Cert,300,1,1,0,0,0 -IG_Mid_Coin_Pocket,Bgrade_Coin,100,1,1,0,0,0 -IG_Mid_Coin_Pocket,Malang_Sp_Can,600,1,2,0,0,0 -IG_Mid_Coin_Pocket,Mora_Coin,200,1,2,0,0,0 -IG_Mid_Coin_Pocket,Cgrade_Coin,200,1,2,0,0,0 -IG_Mid_Coin_Pocket,Malang_Sp_Can,500,1,3,0,0,0 -IG_Mid_Coin_Pocket,Manuk_Coin,300,1,3,0,0,0 -IG_Mid_Coin_Pocket,Dgrade_Coin,200,1,3,0,0,0 -IG_Mid_Coin_Pocket,Malang_Sp_Can,500,1,4,0,0,0 -IG_Mid_Coin_Pocket,Splendide_Coin,300,1,4,0,0,0 -IG_Mid_Coin_Pocket,Egrade_Coin,200,1,4,0,0,0 +IG_Mid_Coin_Pocket,12636,600,1,1,0,0,0 // 1x Malang_Sp_Can +IG_Mid_Coin_Pocket,6304,300,1,1,0,0,0 // 1x Sapa_Feat_Cert +IG_Mid_Coin_Pocket,6419,100,1,1,0,0,0 // 1x Bgrade_Coin +IG_Mid_Coin_Pocket,12636,600,1,2,0,0,0 // 1x Malang_Sp_Can +IG_Mid_Coin_Pocket,6380,200,1,2,0,0,0 // 1x Mora_Coin +IG_Mid_Coin_Pocket,6420,200,1,2,0,0,0 // 1x Cgrade_Coin +IG_Mid_Coin_Pocket,12636,500,1,3,0,0,0 // 1x Malang_Sp_Can +IG_Mid_Coin_Pocket,6080,300,1,3,0,0,0 // 1x Manuk_Coin +IG_Mid_Coin_Pocket,6421,200,1,3,0,0,0 // 1x Dgrade_Coin +IG_Mid_Coin_Pocket,12636,500,1,4,0,0,0 // 1x Malang_Sp_Can +IG_Mid_Coin_Pocket,6081,300,1,4,0,0,0 // 1x Splendide_Coin +IG_Mid_Coin_Pocket,6422,200,1,4,0,0,0 // 1x Egrade_Coin -IG_Low_Coin_Pocket,Malang_Sp_Can,600,1,1,0,0,0 -IG_Low_Coin_Pocket,Sapa_Feat_Cert,300,1,1,0,0,0 -IG_Low_Coin_Pocket,Cgrade_Coin,100,1,1,0,0,0 -IG_Low_Coin_Pocket,Malang_Sp_Can,600,1,2,0,0,0 -IG_Low_Coin_Pocket,Mora_Coin,200,1,2,0,0,0 -IG_Low_Coin_Pocket,Dgrade_Coin,200,1,2,0,0,0 -IG_Low_Coin_Pocket,Malang_Sp_Can,500,1,3,0,0,0 -IG_Low_Coin_Pocket,Manuk_Coin,300,1,3,0,0,0 -IG_Low_Coin_Pocket,Egrade_Coin,200,1,3,0,0,0 -IG_Low_Coin_Pocket,Malang_Sp_Can,500,1,4,0,0,0 -IG_Low_Coin_Pocket,Splendide_Coin,300,1,4,0,0,0 -IG_Low_Coin_Pocket,Egrade_Coin,200,1,4,0,0,0 +IG_Low_Coin_Pocket,12636,600,1,1,0,0,0 // 1x Malang_Sp_Can +IG_Low_Coin_Pocket,6304,300,1,1,0,0,0 // 1x Sapa_Feat_Cert +IG_Low_Coin_Pocket,6420,100,1,1,0,0,0 // 1x Cgrade_Coin +IG_Low_Coin_Pocket,12636,600,1,2,0,0,0 // 1x Malang_Sp_Can +IG_Low_Coin_Pocket,6380,200,1,2,0,0,0 // 1x Mora_Coin +IG_Low_Coin_Pocket,6421,200,1,2,0,0,0 // 1x Dgrade_Coin +IG_Low_Coin_Pocket,12636,500,1,3,0,0,0 // 1x Malang_Sp_Can +IG_Low_Coin_Pocket,6080,300,1,3,0,0,0 // 1x Manuk_Coin +IG_Low_Coin_Pocket,6422,200,1,3,0,0,0 // 1x Egrade_Coin +IG_Low_Coin_Pocket,12636,500,1,4,0,0,0 // 1x Malang_Sp_Can +IG_Low_Coin_Pocket,6081,300,1,4,0,0,0 // 1x Splendide_Coin +IG_Low_Coin_Pocket,6422,200,1,4,0,0,0 // 1x Egrade_Coin -IG_Sgrade_Pocket,Agrade_Coin,0,1,0,0,0,0 -IG_Sgrade_Pocket,Bgrade_Coin,0,1,0,0,0,0 -IG_Sgrade_Pocket,Malang_Sp_Can,800,1,2,0,0,0 -IG_Sgrade_Pocket,Agrade_Coin,200,1,2,0,0,0 -IG_Sgrade_Pocket,Malang_Sp_Can,700,1,3,0,0,0 -IG_Sgrade_Pocket,Bgrade_Coin,200,1,3,0,0,0 -IG_Sgrade_Pocket,Anger_Seagod,100,1,3,0,0,0 +IG_Sgrade_Pocket,6418,0,1,0,0,0,0 // 1x Agrade_Coin +IG_Sgrade_Pocket,6419,0,1,0,0,0,0 // 1x Bgrade_Coin +IG_Sgrade_Pocket,12636,800,1,2,0,0,0 // 1x Malang_Sp_Can +IG_Sgrade_Pocket,6418,200,1,2,0,0,0 // 1x Agrade_Coin +IG_Sgrade_Pocket,12636,700,1,3,0,0,0 // 1x Malang_Sp_Can +IG_Sgrade_Pocket,6419,200,1,3,0,0,0 // 1x Bgrade_Coin +IG_Sgrade_Pocket,6423,100,1,3,0,0,0 // 1x Anger_Seagod -IG_Agrade_Pocket,Agrade_Coin,0,1,0,0,0,0 -IG_Agrade_Pocket,Bgrade_Coin,0,1,0,0,0,0 -IG_Agrade_Pocket,Cgrade_Coin,0,1,0,0,0,0 -IG_Agrade_Pocket,Malang_Sp_Can,800,1,2,0,0,0 -IG_Agrade_Pocket,Cgrade_Coin,50,1,2,0,0,0 -IG_Agrade_Pocket,Bgrade_Coin,150,1,2,0,0,0 -IG_Agrade_Pocket,Malang_Sp_Can,800,1,3,0,0,0 -IG_Agrade_Pocket,Cgrade_Coin,200,1,3,0,0,0 +IG_Agrade_Pocket,6418,0,1,0,0,0,0 // 1x Agrade_Coin +IG_Agrade_Pocket,6419,0,1,0,0,0,0 // 1x Bgrade_Coin +IG_Agrade_Pocket,6420,0,1,0,0,0,0 // 1x Cgrade_Coin +IG_Agrade_Pocket,12636,800,1,2,0,0,0 // 1x Malang_Sp_Can +IG_Agrade_Pocket,6420,50,1,2,0,0,0 // 1x Cgrade_Coin +IG_Agrade_Pocket,6419,150,1,2,0,0,0 // 1x Bgrade_Coin +IG_Agrade_Pocket,12636,800,1,3,0,0,0 // 1x Malang_Sp_Can +IG_Agrade_Pocket,6420,200,1,3,0,0,0 // 1x Cgrade_Coin -IG_Bgrade_Pocket,Bgrade_Coin,0,1,0,0,0,0 -IG_Bgrade_Pocket,Cgrade_Coin,0,1,0,0,0,0 -IG_Bgrade_Pocket,Dgrade_Coin,0,1,0,0,0,0 -IG_Bgrade_Pocket,Malang_Sp_Can,800,1,2,0,0,0 -IG_Bgrade_Pocket,Dgrade_Coin,50,1,2,0,0,0 -IG_Bgrade_Pocket,Cgrade_Coin,150,1,2,0,0,0 -IG_Bgrade_Pocket,Malang_Sp_Can,800,1,3,0,0,0 -IG_Bgrade_Pocket,Dgrade_Coin,200,1,3,0,0,0 +IG_Bgrade_Pocket,6419,0,1,0,0,0,0 // 1x Bgrade_Coin +IG_Bgrade_Pocket,6420,0,1,0,0,0,0 // 1x Cgrade_Coin +IG_Bgrade_Pocket,6421,0,1,0,0,0,0 // 1x Dgrade_Coin +IG_Bgrade_Pocket,12636,800,1,2,0,0,0 // 1x Malang_Sp_Can +IG_Bgrade_Pocket,6421,50,1,2,0,0,0 // 1x Dgrade_Coin +IG_Bgrade_Pocket,6420,150,1,2,0,0,0 // 1x Cgrade_Coin +IG_Bgrade_Pocket,12636,800,1,3,0,0,0 // 1x Malang_Sp_Can +IG_Bgrade_Pocket,6421,200,1,3,0,0,0 // 1x Dgrade_Coin -IG_Cgrade_Pocket,Cgrade_Coin,0,1,0,0,0,0 -IG_Cgrade_Pocket,Dgrade_Coin,0,1,0,0,0,0 -IG_Cgrade_Pocket,Egrade_Coin,0,1,0,0,0,0 -IG_Cgrade_Pocket,Malang_Sp_Can,800,1,2,0,0,0 -IG_Cgrade_Pocket,Egrade_Coin,50,1,2,0,0,0 -IG_Cgrade_Pocket,Egrade_Coin,150,1,2,0,0,0 -IG_Cgrade_Pocket,Malang_Sp_Can,800,1,3,0,0,0 -IG_Cgrade_Pocket,Dgrade_Coin,200,1,3,0,0,0 +IG_Cgrade_Pocket,6420,0,1,0,0,0,0 // 1x Cgrade_Coin +IG_Cgrade_Pocket,6421,0,1,0,0,0,0 // 1x Dgrade_Coin +IG_Cgrade_Pocket,6422,0,1,0,0,0,0 // 1x Egrade_Coin +IG_Cgrade_Pocket,12636,800,1,2,0,0,0 // 1x Malang_Sp_Can +IG_Cgrade_Pocket,6422,50,1,2,0,0,0 // 1x Egrade_Coin +IG_Cgrade_Pocket,6422,150,1,2,0,0,0 // 1x Egrade_Coin +IG_Cgrade_Pocket,12636,800,1,3,0,0,0 // 1x Malang_Sp_Can +IG_Cgrade_Pocket,6421,200,1,3,0,0,0 // 1x Dgrade_Coin -IG_Dgrade_Pocket,Dgrade_Coin,0,1,0,0,0,0 -IG_Dgrade_Pocket,Egrade_Coin,0,1,0,0,0,0 -IG_Dgrade_Pocket,Malang_Sp_Can,800,2,2,0,0,0 -IG_Dgrade_Pocket,Egrade_Coin,200,2,2,0,0,0 -IG_Dgrade_Pocket,Malang_Sp_Can,800,1,3,0,0,0 -IG_Dgrade_Pocket,Dgrade_Coin,200,1,3,0,0,0 +IG_Dgrade_Pocket,6421,0,1,0,0,0,0 // 1x Dgrade_Coin +IG_Dgrade_Pocket,6422,0,1,0,0,0,0 // 1x Egrade_Coin +IG_Dgrade_Pocket,12636,800,2,2,0,0,0 // 2x Malang_Sp_Can +IG_Dgrade_Pocket,6422,200,2,2,0,0,0 // 2x Egrade_Coin +IG_Dgrade_Pocket,12636,800,1,3,0,0,0 // 1x Malang_Sp_Can +IG_Dgrade_Pocket,6421,200,1,3,0,0,0 // 1x Dgrade_Coin -IG_Egrade_Pocket,Egrade_Coin,0,1,0,0,0,0 -IG_Egrade_Pocket,Malang_Sp_Can,800,2,2,0,0,0 -IG_Egrade_Pocket,Egrade_Coin,200,2,2,0,0,0 -IG_Egrade_Pocket,Malang_Sp_Can,800,1,3,0,0,0 -IG_Egrade_Pocket,Egrade_Coin,200,1,3,0,0,0 +IG_Egrade_Pocket,6422,0,1,0,0,0,0 // 1x Egrade_Coin +IG_Egrade_Pocket,12636,800,2,2,0,0,0 // 2x Malang_Sp_Can +IG_Egrade_Pocket,6422,200,2,2,0,0,0 // 2x Egrade_Coin +IG_Egrade_Pocket,12636,800,1,3,0,0,0 // 1x Malang_Sp_Can +IG_Egrade_Pocket,6422,200,1,3,0,0,0 // 1x Egrade_Coin -IG_Ptotection_Seagod_Box,Ptotection_Seagod,0,1,0,0,1380,0 +IG_Ptotection_Seagod_Box,6436,0,1,0,0,1380,0 // 1x Ptotection_Seagod -IG_Hairtail_Box1,Hairtail,0,1,0,0,60,0 +IG_Hairtail_Box1,1198,0,1,0,0,60,0 // 1x Hairtail -IG_Hairtail_Box2,Hairtail,0,1,0,0,10080,0 +IG_Hairtail_Box2,1198,0,1,0,0,10080,0 // 1x Hairtail -IG_Spearfish_Box1,Spearfish_,0,1,0,0,60,0 +IG_Spearfish_Box1,1489,0,1,0,0,60,0 // 1x Spearfish_ -IG_Spearfish_Box2,Spearfish_,0,1,0,0,10080,0 +IG_Spearfish_Box2,1489,0,1,0,0,10080,0 // 1x Spearfish_ -IG_Saurel_Box1,Saurel,0,1,0,0,60,0 +IG_Saurel_Box1,13068,0,1,0,0,60,0 // 1x Saurel -IG_Saurel_Box2,Saurel,0,1,0,0,10080,0 +IG_Saurel_Box2,13068,0,1,0,0,10080,0 // 1x Saurel -IG_Tuna_Box1,Tuna,0,1,0,0,60,0 +IG_Tuna_Box1,16016,0,1,0,0,60,0 // 1x Tuna -IG_Tuna_Box2,Tuna,0,1,0,0,10080,0 +IG_Tuna_Box2,16016,0,1,0,0,10080,0 // 1x Tuna -IG_Malang_Crab_Box1,Malang_Snow_Crab,0,1,0,0,60,0 +IG_Malang_Crab_Box1,18107,0,1,0,0,60,0 // 1x Malang_Snow_Crab -IG_Malang_Crab_Box2,Malang_Snow_Crab,0,1,0,0,10080,0 +IG_Malang_Crab_Box2,18107,0,1,0,0,10080,0 // 1x Malang_Snow_Crab -IG_Brindle_Eel_Box1,Brindle_Eel,0,1,0,0,60,0 +IG_Brindle_Eel_Box1,18108,0,1,0,0,60,0 // 1x Brindle_Eel -IG_Brindle_Eel_Box2,Brindle_Eel,0,1,0,0,10080,0 +IG_Brindle_Eel_Box2,18108,0,1,0,0,10080,0 // 1x Brindle_Eel -IG_Ptotection_Seagod_Box2,Ptotection_Seagod,0,1,0,0,10080,0 +IG_Ptotection_Seagod_Box2,6436,0,1,0,0,10080,0 // 1x Ptotection_Seagod -IG_Ptotection_Seagod_Box3,Ptotection_Seagod,0,1,0,0,21600,0 +IG_Ptotection_Seagod_Box3,6436,0,1,0,0,21600,0 // 1x Ptotection_Seagod -IG_Octo_Hstick_Box,Octopus_Hunt_Stick,0,1,0,0,1380,0 +IG_Octo_Hstick_Box,6442,0,1,0,0,1380,0 // 1x Octopus_Hunt_Stick -IG_Octo_Hstick_Box2,Octopus_Hunt_Stick,0,1,0,0,4320,0 +IG_Octo_Hstick_Box2,6442,0,1,0,0,4320,0 // 1x Octopus_Hunt_Stick -IG_Octo_Hstick_Box3,Octopus_Hunt_Stick,0,1,0,0,10080,0 +IG_Octo_Hstick_Box3,6442,0,1,0,0,10080,0 // 1x Octopus_Hunt_Stick -IG_Silvervine_Fruit_Box10,Silvervine,0,10,0,0,0,0 -IG_Silvervine_Fruit_Box10,Malang_Sp_Can,0,30,0,0,0,0 +IG_Silvervine_Fruit_Box10,6417,0,10,0,0,0,0 // 10x Silvervine +IG_Silvervine_Fruit_Box10,12636,0,30,0,0,0,0 // 30x Malang_Sp_Can -IG_Silvervine_Fruit_Box40,Silvervine,0,40,0,0,0,0 -IG_Silvervine_Fruit_Box40,Malang_Sp_Can,0,120,0,0,0,0 +IG_Silvervine_Fruit_Box40,6417,0,40,0,0,0,0 // 40x Silvervine +IG_Silvervine_Fruit_Box40,12636,0,120,0,0,0,0 // 120x Malang_Sp_Can -IG_Silvervine_Fruit_Box4,Silvervine,0,4,0,0,0,0 -IG_Silvervine_Fruit_Box4,Malang_Sp_Can,0,12,0,0,0,0 +IG_Silvervine_Fruit_Box4,6417,0,4,0,0,0,0 // 4x Silvervine +IG_Silvervine_Fruit_Box4,12636,0,12,0,0,0,0 // 12x Malang_Sp_Can -IG_Malang_Woe_Encard_Box,Protection_Seagod_Box,0,1,0,0,0,0 -IG_Malang_Woe_Encard_Box,Octo_Hstick_Box,0,1,0,0,0,0 +IG_Malang_Woe_Encard_Box,16740,0,1,0,0,0,0 // 1x Protection_Seagod_Box +IG_Malang_Woe_Encard_Box,16765,0,1,0,0,0,0 // 1x Octo_Hstick_Box -IG_Xmas_Bless,Fire_Cracker_Xmas,0,10,0,0,0,1 -IG_Xmas_Bless,Red_Bag,0,3,0,0,0,1 -IG_Xmas_Bless,Antonio_Card,3,1,1,1,0,1 -IG_Xmas_Bless,Sealed_F_Bishop_Card,1,1,1,1,0,1 -IG_Xmas_Bless,Ribbon_Of_Bride,10,1,1,1,0,1 -IG_Xmas_Bless,Santa_Hat_1,25,1,1,1,0,1 -IG_Xmas_Bless,Snowman_Hat_Box,20,1,1,1,0,1 -IG_Xmas_Bless,Spiked_Scarf,15,1,1,1,0,1 -IG_Xmas_Bless,Rainbow_Scarf,15,1,1,1,0,1 -IG_Xmas_Bless,Blue_Herb_Box2,200,1,1,0,0,1 -IG_Xmas_Bless,12424,186,30,1,0,0,1 -IG_Xmas_Bless,Job_Manual50_Box,250,1,1,0,0,1 -IG_Xmas_Bless,Angeling_Potion,125,10,1,0,0,1 -IG_Xmas_Bless,Spark_Candy_Box10,150,1,1,0,0,1 +IG_Xmas_Bless,14550,0,10,0,0,0,1 // 10x Fire_Cracker_Xmas +IG_Xmas_Bless,12132,0,3,0,0,0,1 // 3x Red_Bag +IG_Xmas_Bless,4243,3,1,1,1,0,1 // 1x Antonio_Card +IG_Xmas_Bless,4539,1,1,1,1,0,1 // 1x Sealed_F_Bishop_Card +IG_Xmas_Bless,5801,10,1,1,1,0,1 // 1x Ribbon_Of_Bride +IG_Xmas_Bless,5384,25,1,1,1,0,1 // 1x Santa_Hat_1 +IG_Xmas_Bless,16543,20,1,1,1,0,1 // 1x Snowman_Hat_Box +IG_Xmas_Bless,5462,15,1,1,1,0,1 // 1x Spiked_Scarf +IG_Xmas_Bless,5463,15,1,1,1,0,1 // 1x Rainbow_Scarf +IG_Xmas_Bless,12533,200,1,1,0,0,1 // 1x Blue_Herb_Box2 +IG_Xmas_Bless,12424,186,30,1,0,0,1 // 30x HP_Increase_Potion_(Large) +IG_Xmas_Bless,13990,250,1,1,0,0,1 // 1x Job_Manual50_Box +IG_Xmas_Bless,12350,125,10,1,0,0,1 // 10x Angeling_Potion +IG_Xmas_Bless,13858,150,1,1,0,0,1 // 1x Spark_Candy_Box10 -IG_Fire_Type_Scroll,Leo_Diadem,120,1,1,1,0,0 -IG_Fire_Type_Scroll,Leo_Crown,150,1,1,1,0,0 -IG_Fire_Type_Scroll,Aries_Diadem,100,1,1,1,0,0 -IG_Fire_Type_Scroll,Aries_Crown,100,1,1,1,0,0 -IG_Fire_Type_Scroll,Sagittarius_Diadem,100,1,1,1,0,0 -IG_Fire_Type_Scroll,Sagittarius_Crown,100,1,1,1,0,0 -IG_Fire_Type_Scroll,Battle_Manual_Box,1500,1,1,0,0,0 -IG_Fire_Type_Scroll,Bubble_Gum_Box,1500,1,1,0,0,0 -IG_Fire_Type_Scroll,Kafra_Card_Box,1650,1,1,0,0,0 -IG_Fire_Type_Scroll,Convex_Mirror_Box,1000,1,1,0,0,0 -IG_Fire_Type_Scroll,Miracle_Medicine,200,1,1,0,0,0 -IG_Fire_Type_Scroll,Token_Of_Siegfried_Box,1500,1,1,0,0,0 -IG_Fire_Type_Scroll,Bloody_Dead_Branch,120,1,1,0,0,0 -IG_Fire_Type_Scroll,Max_Weight_Up_Box,200,1,1,1,0,0 -IG_Fire_Type_Scroll,Songpyun_Box50,1500,1,1,0,0,0 -IG_Fire_Type_Scroll,Ant_Buyanne_Card,1,1,1,1,0,0 -IG_Fire_Type_Scroll,Celestial_Hat,150,1,1,1,0,0 -IG_Fire_Type_Scroll,Parade_Cap,5,1,1,1,0,0 -IG_Fire_Type_Scroll,Asgard_Blessing,3,1,1,1,0,0 -IG_Fire_Type_Scroll,Sealed_Tao_Card,1,1,1,1,0,0 +IG_Fire_Type_Scroll,5589,120,1,1,1,0,0 // 1x Leo_Diadem +IG_Fire_Type_Scroll,5588,150,1,1,1,0,0 // 1x Leo_Crown +IG_Fire_Type_Scroll,5545,100,1,1,1,0,0 // 1x Aries_Diadem +IG_Fire_Type_Scroll,5546,100,1,1,1,0,0 // 1x Aries_Crown +IG_Fire_Type_Scroll,5740,100,1,1,1,0,0 // 1x Sagittarius_Diadem +IG_Fire_Type_Scroll,5739,100,1,1,1,0,0 // 1x Sagittarius_Crown +IG_Fire_Type_Scroll,12900,1500,1,1,0,0,0 // 1x Battle_Manual_Box +IG_Fire_Type_Scroll,12902,1500,1,1,0,0,0 // 1x Bubble_Gum_Box +IG_Fire_Type_Scroll,12909,1650,1,1,0,0,0 // 1x Kafra_Card_Box +IG_Fire_Type_Scroll,12912,1000,1,1,0,0,0 // 1x Convex_Mirror_Box +IG_Fire_Type_Scroll,12259,200,1,1,0,0,0 // 1x Miracle_Medicine +IG_Fire_Type_Scroll,12922,1500,1,1,0,0,0 // 1x Token_Of_Siegfried_Box +IG_Fire_Type_Scroll,12103,120,1,1,0,0,0 // 1x Bloody_Dead_Branch +IG_Fire_Type_Scroll,13710,200,1,1,1,0,0 // 1x Max_Weight_Up_Box +IG_Fire_Type_Scroll,12822,1500,1,1,0,0,0 // 1x Songpyun_Box50 +IG_Fire_Type_Scroll,4451,1,1,1,1,0,0 // 1x Ant_Buyanne_Card +IG_Fire_Type_Scroll,5465,150,1,1,1,0,0 // 1x Celestial_Hat +IG_Fire_Type_Scroll,5468,5,1,1,1,0,0 // 1x Parade_Cap +IG_Fire_Type_Scroll,18550,3,1,1,1,0,0 // 1x Asgard_Blessing +IG_Fire_Type_Scroll,4493,1,1,1,1,0,0 // 1x Sealed_Tao_Card -IG_Blue_Scroll,Dex_Dish_Box,1400,1,1,0,0,0 -IG_Blue_Scroll,Yggdrasilberry_Box_,1200,1,1,0,0,0 -IG_Blue_Scroll,Bubble_Gum_Box,1240,1,1,0,0,0 -IG_Blue_Scroll,Token_Of_Siegfried_Box,1250,1,1,0,0,0 -IG_Blue_Scroll,Aspersio_5_Scroll_Box,1250,1,1,0,0,0 -IG_Blue_Scroll,Shadow_Armor_S_Box10,1300,1,1,0,0,0 -IG_Blue_Scroll,Guarantee_Armor_7Up,77,1,1,1,0,0 -IG_Blue_Scroll,Ticket_Loli_Ruri,100,1,1,1,0,0 -IG_Blue_Scroll,Max_Weight_Up_Box,500,1,1,0,0,0 -IG_Blue_Scroll,Siroma_Icetea_To_Throw,1011,10,1,0,0,0 -IG_Blue_Scroll,Magic_Card_Album,400,1,1,0,0,0 -IG_Blue_Scroll,Maneater_Flower_Hat,130,1,1,1,0,0 -IG_Blue_Scroll,Sealed_Phreeoni_Card,11,1,1,1,0,0 -IG_Blue_Scroll,Sealed_Samurai_Card,5,1,1,1,0,0 -IG_Blue_Scroll,RWC_Memory_Knife,3,1,1,1,0,0 -IG_Blue_Scroll,Berzebub_Card,1,1,1,1,0,0 -IG_Blue_Scroll,Sugared_Fruit_Stick,80,1,1,1,0,0 -IG_Blue_Scroll,Neuralizer_Box,40,1,1,1,0,0 -IG_Blue_Scroll,Black_Devil_Mask_,2,1,1,1,0,0 +IG_Blue_Scroll,12906,1400,1,1,0,0,0 // 1x Dex_Dish_Box +IG_Blue_Scroll,14232,1200,1,1,0,0,0 // 1x Yggdrasilberry_Box_ +IG_Blue_Scroll,12902,1240,1,1,0,0,0 // 1x Bubble_Gum_Box +IG_Blue_Scroll,12922,1250,1,1,0,0,0 // 1x Token_Of_Siegfried_Box +IG_Blue_Scroll,12915,1250,1,1,0,0,0 // 1x Aspersio_5_Scroll_Box +IG_Blue_Scroll,13741,1300,1,1,0,0,0 // 1x Shadow_Armor_S_Box10 +IG_Blue_Scroll,6234,77,1,1,1,0,0 // 1x Guarantee_Armor_7Up +IG_Blue_Scroll,6130,100,1,1,1,0,0 // 1x Ticket_Loli_Ruri +IG_Blue_Scroll,13710,500,1,1,0,0,0 // 1x Max_Weight_Up_Box +IG_Blue_Scroll,13287,1011,10,1,0,0,0 // 10x Siroma_Icetea_To_Throw +IG_Blue_Scroll,12246,400,1,1,0,0,0 // 1x Magic_Card_Album +IG_Blue_Scroll,18707,130,1,1,1,0,0 // 1x Maneater_Flower_Hat +IG_Blue_Scroll,4537,11,1,1,1,0,0 // 1x Sealed_Phreeoni_Card +IG_Blue_Scroll,4499,5,1,1,1,0,0 // 1x Sealed_Samurai_Card +IG_Blue_Scroll,13092,3,1,1,1,0,0 // 1x RWC_Memory_Knife +IG_Blue_Scroll,4145,1,1,1,1,0,0 // 1x Berzebub_Card +IG_Blue_Scroll,18710,80,1,1,1,0,0 // 1x Sugared_Fruit_Stick +IG_Blue_Scroll,12911,40,1,1,1,0,0 // 1x Neuralizer_Box +IG_Blue_Scroll,18603,2,1,1,1,0,0 // 1x Black_Devil_Mask_ -IG_Good_Student_Gift_Box,Adv_Angel_School_Cap,0,1,0,0,0,0 -IG_Good_Student_Gift_Box,Red_Pencil_In_Mouth,0,1,0,0,0,0 -IG_Good_Student_Gift_Box,School_Uniform,0,1,0,0,0,0 -IG_Good_Student_Gift_Box,Songpyun_Box50,0,1,0,0,0,0 -IG_Good_Student_Gift_Box,Insurance,0,5,0,0,0,0 +IG_Good_Student_Gift_Box,18816,0,1,0,0,0,0 // 1x Adv_Angel_School_Cap +IG_Good_Student_Gift_Box,18818,0,1,0,0,0,0 // 1x Red_Pencil_In_Mouth +IG_Good_Student_Gift_Box,15088,0,1,0,0,0,0 // 1x School_Uniform +IG_Good_Student_Gift_Box,12822,0,1,0,0,0,0 // 1x Songpyun_Box50 +IG_Good_Student_Gift_Box,12209,0,5,0,0,0,0 // 5x Insurance -IG_Bad_Student_Gift_Box,Adv_Devil_School_Cap,0,1,0,0,0,0 -IG_Bad_Student_Gift_Box,Blue_Pencil_In_Mouth,0,1,0,0,0,0 -IG_Bad_Student_Gift_Box,School_Uniform,0,1,0,0,0,0 -IG_Bad_Student_Gift_Box,Songpyun_Box50,0,1,0,0,0,0 -IG_Bad_Student_Gift_Box,Insurance,0,5,0,0,0,0 +IG_Bad_Student_Gift_Box,18817,0,1,0,0,0,0 // 1x Adv_Devil_School_Cap +IG_Bad_Student_Gift_Box,18819,0,1,0,0,0,0 // 1x Blue_Pencil_In_Mouth +IG_Bad_Student_Gift_Box,15088,0,1,0,0,0,0 // 1x School_Uniform +IG_Bad_Student_Gift_Box,12822,0,1,0,0,0,0 // 1x Songpyun_Box50 +IG_Bad_Student_Gift_Box,12209,0,5,0,0,0,0 // 5x Insurance -IG_Indigo_Scroll,Silvervine_Fruit_Box10,1150,1,1,0,0,0 -IG_Indigo_Scroll,C_Wing_Of_Fly_3Day_Box,1150,1,1,0,0,0 -IG_Indigo_Scroll,Megaphone_Box,1250,1,1,0,0,0 -IG_Indigo_Scroll,Insurance_Package,1200,1,1,0,0,0 -IG_Indigo_Scroll,Job_Manual50_Box,1000,1,1,0,0,0 -IG_Indigo_Scroll,Spark_Candy_Box10,1300,1,1,0,0,0 -IG_Indigo_Scroll,Enriched_Elunium_Box,200,1,1,0,0,0 -IG_Indigo_Scroll,Enriched_Oridecon_Box,200,1,1,0,0,0 -IG_Indigo_Scroll,Cloth_Dye_Coupon_Box,600,1,1,0,0,0 -IG_Indigo_Scroll,Psychic_ArmorS,1138,10,1,0,0,0 -IG_Indigo_Scroll,Bloody_Dead_Branch,500,1,1,0,0,0 -IG_Indigo_Scroll,Fan_In_Mouth,150,1,1,1,0,0 -IG_Indigo_Scroll,Sealed_Kiel_Card,1,1,1,1,0,0 -IG_Indigo_Scroll,SLD_Dark_Snake_Card,15,1,1,1,0,0 -IG_Indigo_Scroll,Pharaoh_Card,1,1,1,1,0,0 -IG_Indigo_Scroll,RWC_Memory_Staff,3,1,1,1,0,0 -IG_Indigo_Scroll,Bird_Nest_Hat,100,1,1,1,0,0 -IG_Indigo_Scroll,Monkey_On_Fur_Hat,40,1,1,1,0,0 -IG_Indigo_Scroll,Deviling_Card,2,1,1,1,0,0 +IG_Indigo_Scroll,16770,1150,1,1,0,0,0 // 1x Silvervine_Fruit_Box10 +IG_Indigo_Scroll,17251,1150,1,1,0,0,0 // 1x C_Wing_Of_Fly_3Day_Box +IG_Indigo_Scroll,12919,1250,1,1,0,0,0 // 1x Megaphone_Box +IG_Indigo_Scroll,12901,1200,1,1,0,0,0 // 1x Insurance_Package +IG_Indigo_Scroll,13990,1000,1,1,0,0,0 // 1x Job_Manual50_Box +IG_Indigo_Scroll,13858,1300,1,1,0,0,0 // 1x Spark_Candy_Box10 +IG_Indigo_Scroll,12920,200,1,1,0,0,0 // 1x Enriched_Elunium_Box +IG_Indigo_Scroll,12921,200,1,1,0,0,0 // 1x Enriched_Oridecon_Box +IG_Indigo_Scroll,14289,600,1,1,0,0,0 // 1x Cloth_Dye_Coupon_Box +IG_Indigo_Scroll,12406,1138,10,1,0,0,0 // 10x Psychic_ArmorS +IG_Indigo_Scroll,12103,500,1,1,0,0,0 // 1x Bloody_Dead_Branch +IG_Indigo_Scroll,18712,150,1,1,1,0,0 // 1x Fan_In_Mouth +IG_Indigo_Scroll,4480,1,1,1,1,0,0 // 1x Sealed_Kiel_Card +IG_Indigo_Scroll,4544,15,1,1,1,0,0 // 1x SLD_Dark_Snake_Card +IG_Indigo_Scroll,4148,1,1,1,1,0,0 // 1x Pharaoh_Card +IG_Indigo_Scroll,1670,3,1,1,1,0,0 // 1x RWC_Memory_Staff +IG_Indigo_Scroll,5183,100,1,1,1,0,0 // 1x Bird_Nest_Hat +IG_Indigo_Scroll,18713,40,1,1,1,0,0 // 1x Monkey_On_Fur_Hat +IG_Indigo_Scroll,4174,2,1,1,1,0,0 // 1x Deviling_Card -IG_Violet_Scroll,Guyak_Pudding,1307,10,1,0,0,0 -IG_Violet_Scroll,Anger_Seagod,1300,2,1,0,0,0 -IG_Violet_Scroll,Insurance_Package,1300,1,1,0,0,0 -IG_Violet_Scroll,Bubble_Gum_Box,1300,1,1,0,0,0 -IG_Violet_Scroll,Holy_Armor_S_Box10,1300,1,1,0,0,0 -IG_Violet_Scroll,Angeling_Pot_Box,1300,1,1,0,0,0 -IG_Violet_Scroll,Pencil_In_Mouth,90,1,1,0,0,0 -IG_Violet_Scroll,King_Tiger_Doll_Hat_Box,90,1,1,0,0,0 -IG_Violet_Scroll,Cloth_Dye_Coupon2_Box,500,1,1,0,0,0 -IG_Violet_Scroll,Aspersio_5_Scroll_Box,859,1,1,0,0,0 -IG_Violet_Scroll,Job_Manual50_Box,400,1,1,0,0,0 -IG_Violet_Scroll,Helm_Of_Thoth,140,1,1,1,0,0 -IG_Violet_Scroll,Guarantee_Armor_9Up,5,1,1,1,0,0 -IG_Violet_Scroll,RWC_Memory_Mace,3,1,1,1,0,0 -IG_Violet_Scroll,SLD_Garm_Card,5,1,1,1,0,0 -IG_Violet_Scroll,Rsx_0806_Card,1,1,1,1,0,0 -IG_Violet_Scroll,Cherry_Twig_In_Mouth,90,1,1,0,0,0 -IG_Violet_Scroll,Guarantee_Weapon_9Up,5,1,1,1,0,0 -IG_Violet_Scroll,Maya_Puple_Card,5,1,1,1,0,0 +IG_Violet_Scroll,12710,1307,10,1,0,0,0 // 10x Guyak_Pudding +IG_Violet_Scroll,6423,1300,2,1,0,0,0 // 2x Anger_Seagod +IG_Violet_Scroll,12901,1300,1,1,0,0,0 // 1x Insurance_Package +IG_Violet_Scroll,12902,1300,1,1,0,0,0 // 1x Bubble_Gum_Box +IG_Violet_Scroll,13744,1300,1,1,0,0,0 // 1x Holy_Armor_S_Box10 +IG_Violet_Scroll,14376,1300,1,1,0,0,0 // 1x Angeling_Pot_Box +IG_Violet_Scroll,5574,90,1,1,0,0,0 // 1x Pencil_In_Mouth +IG_Violet_Scroll,14441,90,1,1,0,0,0 // 1x King_Tiger_Doll_Hat_Box +IG_Violet_Scroll,14290,500,1,1,0,0,0 // 1x Cloth_Dye_Coupon2_Box +IG_Violet_Scroll,12915,859,1,1,0,0,0 // 1x Aspersio_5_Scroll_Box +IG_Violet_Scroll,13990,400,1,1,0,0,0 // 1x Job_Manual50_Box +IG_Violet_Scroll,18715,140,1,1,1,0,0 // 1x Helm_Of_Thoth +IG_Violet_Scroll,6232,5,1,1,1,0,0 // 1x Guarantee_Armor_9Up +IG_Violet_Scroll,16026,3,1,1,1,0,0 // 1x RWC_Memory_Mace +IG_Violet_Scroll,4543,5,1,1,1,0,0 // 1x SLD_Garm_Card +IG_Violet_Scroll,4342,1,1,1,1,0,0 // 1x Rsx_0806_Card +IG_Violet_Scroll,18677,90,1,1,0,0,0 // 1x Cherry_Twig_In_Mouth +IG_Violet_Scroll,6228,5,1,1,1,0,0 // 1x Guarantee_Weapon_9Up +IG_Violet_Scroll,4198,5,1,1,1,0,0 // 1x Maya_Puple_Card -IG_Bi_Hwang_Scroll,Underripe_Yggseed,1450,10,1,0,0,0 -IG_Bi_Hwang_Scroll,Str_Dish_Box,1450,1,1,0,0,0 -IG_Bi_Hwang_Scroll,Bubble_Gum_Box,1450,1,1,0,0,0 -IG_Bi_Hwang_Scroll,Battle_Manual_Box,1450,1,1,0,0,0 -IG_Bi_Hwang_Scroll,Luk_Dish_Box,1450,1,1,0,0,0 -IG_Bi_Hwang_Scroll,Silvervine_Fruit_Box10,1000,1,1,0,0,0 -IG_Bi_Hwang_Scroll,Enriched_Oridecon_Box,500,1,1,0,0,0 -IG_Bi_Hwang_Scroll,Pr_Reset_Stone_Box,500,1,1,0,0,0 -IG_Bi_Hwang_Scroll,Sunglasses_Bball_Hat,179,1,1,1,0,0 -IG_Bi_Hwang_Scroll,Magic_Stole,150,1,1,1,0,0 -IG_Bi_Hwang_Scroll,C_Lord_of_Death,100,1,1,1,0,0 -IG_Bi_Hwang_Scroll,Monkey_On_Fur_Hat,150,1,1,1,0,0 -IG_Bi_Hwang_Scroll,Butterfly_Hairpin,75,1,1,1,0,0 -IG_Bi_Hwang_Scroll,Hair_Of_The_Strong,30,1,1,1,0,0 -IG_Bi_Hwang_Scroll,Sealed_Orc_Hero_Card,5,1,1,1,0,0 -IG_Bi_Hwang_Scroll,Asgard_Blessing,10,1,1,1,0,0 -IG_Bi_Hwang_Scroll,Black_Shiba_Inu_Hat,25,1,1,1,0,0 -IG_Bi_Hwang_Scroll,Fortier_Mask,25,1,1,1,0,0 -IG_Bi_Hwang_Scroll,Thanatos_Card,1,1,1,1,0,0 +IG_Bi_Hwang_Scroll,12405,1450,10,1,0,0,0 // 10x Underripe_Yggseed +IG_Bi_Hwang_Scroll,12903,1450,1,1,0,0,0 // 1x Str_Dish_Box +IG_Bi_Hwang_Scroll,12902,1450,1,1,0,0,0 // 1x Bubble_Gum_Box +IG_Bi_Hwang_Scroll,12900,1450,1,1,0,0,0 // 1x Battle_Manual_Box +IG_Bi_Hwang_Scroll,12907,1450,1,1,0,0,0 // 1x Luk_Dish_Box +IG_Bi_Hwang_Scroll,16770,1000,1,1,0,0,0 // 1x Silvervine_Fruit_Box10 +IG_Bi_Hwang_Scroll,12921,500,1,1,0,0,0 // 1x Enriched_Oridecon_Box +IG_Bi_Hwang_Scroll,16555,500,1,1,0,0,0 // 1x Pr_Reset_Stone_Box +IG_Bi_Hwang_Scroll,18663,179,1,1,1,0,0 // 1x Sunglasses_Bball_Hat +IG_Bi_Hwang_Scroll,2579,150,1,1,1,0,0 // 1x Magic_Stole +IG_Bi_Hwang_Scroll,19574,100,1,1,1,0,0 // 1x C_Lord_of_Death +IG_Bi_Hwang_Scroll,18713,150,1,1,1,0,0 // 1x Monkey_On_Fur_Hat +IG_Bi_Hwang_Scroll,18549,75,1,1,1,0,0 // 1x Butterfly_Hairpin +IG_Bi_Hwang_Scroll,18740,30,1,1,1,0,0 // 1x Hair_Of_The_Strong +IG_Bi_Hwang_Scroll,4492,5,1,1,1,0,0 // 1x Sealed_Orc_Hero_Card +IG_Bi_Hwang_Scroll,18550,10,1,1,1,0,0 // 1x Asgard_Blessing +IG_Bi_Hwang_Scroll,18756,25,1,1,1,0,0 // 1x Black_Shiba_Inu_Hat +IG_Bi_Hwang_Scroll,18737,25,1,1,1,0,0 // 1x Fortier_Mask +IG_Bi_Hwang_Scroll,4399,1,1,1,1,0,0 // 1x Thanatos_Card -IG_Jung_Bi_Scroll,Token_Of_Siegfried_Box,1300,1,1,0,0,0 -IG_Jung_Bi_Scroll,Int_Dish_Box,1300,1,1,0,0,0 -IG_Jung_Bi_Scroll,Bubble_Gum_Box,1300,1,1,0,0,0 -IG_Jung_Bi_Scroll,Spark_Candy_Box10,1300,1,1,0,0,0 -IG_Jung_Bi_Scroll,Guyak_Pudding,1300,10,1,0,0,0 -IG_Jung_Bi_Scroll,Agi_Dish_Box,1300,1,1,0,0,0 -IG_Jung_Bi_Scroll,Convex_Mirror_Box,1200,1,1,0,0,0 -IG_Jung_Bi_Scroll,Max_Weight_Up_Box,484,1,1,0,0,0 -IG_Jung_Bi_Scroll,Dark_Book,120,1,1,1,0,0 -IG_Jung_Bi_Scroll,Dep_Alice_Hat,50,1,1,1,0,0 -IG_Jung_Bi_Scroll,Candy_Hat,120,1,1,1,0,0 -IG_Jung_Bi_Scroll,Honeybee_Hat,100,1,1,1,0,0 -IG_Jung_Bi_Scroll,Rainbow,50,1,1,1,0,0 -IG_Jung_Bi_Scroll,Majestic_Evil_Horn,10,1,1,1,0,0 -IG_Jung_Bi_Scroll,Sealed_D_Lord_Card,5,1,1,1,0,0 -IG_Jung_Bi_Scroll,Anemos_Mask,30,1,1,1,0,0 -IG_Jung_Bi_Scroll,Fidelity_Necklace,30,1,1,1,0,0 -IG_Jung_Bi_Scroll,Mistress_Card,1,1,1,1,0,0 +IG_Jung_Bi_Scroll,12922,1300,1,1,0,0,0 // 1x Token_Of_Siegfried_Box +IG_Jung_Bi_Scroll,12905,1300,1,1,0,0,0 // 1x Int_Dish_Box +IG_Jung_Bi_Scroll,12902,1300,1,1,0,0,0 // 1x Bubble_Gum_Box +IG_Jung_Bi_Scroll,13858,1300,1,1,0,0,0 // 1x Spark_Candy_Box10 +IG_Jung_Bi_Scroll,12710,1300,10,1,0,0,0 // 10x Guyak_Pudding +IG_Jung_Bi_Scroll,12904,1300,1,1,0,0,0 // 1x Agi_Dish_Box +IG_Jung_Bi_Scroll,12912,1200,1,1,0,0,0 // 1x Convex_Mirror_Box +IG_Jung_Bi_Scroll,13710,484,1,1,0,0,0 // 1x Max_Weight_Up_Box +IG_Jung_Bi_Scroll,2176,120,1,1,1,0,0 // 1x Dark_Book +IG_Jung_Bi_Scroll,18630,50,1,1,1,0,0 // 1x Dep_Alice_Hat +IG_Jung_Bi_Scroll,18708,120,1,1,1,0,0 // 1x Candy_Hat +IG_Jung_Bi_Scroll,18533,100,1,1,1,0,0 // 1x Honeybee_Hat +IG_Jung_Bi_Scroll,19518,50,1,1,1,0,0 // 1x Rainbow +IG_Jung_Bi_Scroll,5584,10,1,1,1,0,0 // 1x Majestic_Evil_Horn +IG_Jung_Bi_Scroll,4488,5,1,1,1,0,0 // 1x Sealed_D_Lord_Card +IG_Jung_Bi_Scroll,18786,30,1,1,1,0,0 // 1x Anemos_Mask +IG_Jung_Bi_Scroll,2959,30,1,1,1,0,0 // 1x Fidelity_Necklace +IG_Jung_Bi_Scroll,4132,1,1,1,1,0,0 // 1x Mistress_Card -IG_Je_Un_Scroll,Bubble_Gum_Box,1500,1,1,0,0,0 -IG_Je_Un_Scroll,Vit_Dish_Box,1450,1,1,0,0,0 -IG_Je_Un_Scroll,Megaphone_Box,1500,1,1,0,0,0 -IG_Je_Un_Scroll,Battle_Manual_Box,1450,1,1,0,0,0 -IG_Je_Un_Scroll,Anger_Seagod,1450,3,1,0,0,0 -IG_Je_Un_Scroll,Dex_Dish_Box,1500,1,1,0,0,0 -IG_Je_Un_Scroll,Unbreak_Def_Box,144,1,1,0,0,0 -IG_Je_Un_Scroll,Bloody_Dead_Branch,500,1,1,0,0,0 -IG_Je_Un_Scroll,Ribbon_Chef_Hat,150,1,1,1,0,0 -IG_Je_Un_Scroll,Strawberry_In_Mouth,150,1,1,1,0,0 -IG_Je_Un_Scroll,Guarantee_Armor_7Up,30,1,1,1,0,0 -IG_Je_Un_Scroll,Guarantee_Weapon_7Up,30,1,1,1,0,0 -IG_Je_Un_Scroll,C_MoonStar_Accessory,50,1,1,1,0,0 -IG_Je_Un_Scroll,Rune_Hairband,30,1,1,1,0,0 -IG_Je_Un_Scroll,Sealed_Gloom_Card,5,1,1,1,0,0 -IG_Je_Un_Scroll,Stretched_Nose_M,30,1,1,1,0,0 -IG_Je_Un_Scroll,Galaxy_Circlet,30,1,1,1,0,0 -IG_Je_Un_Scroll,Drake_Card,1,1,1,1,0,0 +IG_Je_Un_Scroll,12902,1500,1,1,0,0,0 // 1x Bubble_Gum_Box +IG_Je_Un_Scroll,12908,1450,1,1,0,0,0 // 1x Vit_Dish_Box +IG_Je_Un_Scroll,12919,1500,1,1,0,0,0 // 1x Megaphone_Box +IG_Je_Un_Scroll,12900,1450,1,1,0,0,0 // 1x Battle_Manual_Box +IG_Je_Un_Scroll,6423,1450,3,1,0,0,0 // 3x Anger_Seagod +IG_Je_Un_Scroll,12906,1500,1,1,0,0,0 // 1x Dex_Dish_Box +IG_Je_Un_Scroll,16755,144,1,1,0,0,0 // 1x Unbreak_Def_Box +IG_Je_Un_Scroll,12103,500,1,1,0,0,0 // 1x Bloody_Dead_Branch +IG_Je_Un_Scroll,18631,150,1,1,1,0,0 // 1x Ribbon_Chef_Hat +IG_Je_Un_Scroll,18716,150,1,1,1,0,0 // 1x Strawberry_In_Mouth +IG_Je_Un_Scroll,6234,30,1,1,1,0,0 // 1x Guarantee_Armor_7Up +IG_Je_Un_Scroll,6230,30,1,1,1,0,0 // 1x Guarantee_Weapon_7Up +IG_Je_Un_Scroll,18742,50,1,1,1,0,0 // 1x C_MoonStar_Accessory +IG_Je_Un_Scroll,5585,30,1,1,1,0,0 // 1x Rune_Hairband +IG_Je_Un_Scroll,4485,5,1,1,1,0,0 // 1x Sealed_Gloom_Card +IG_Je_Un_Scroll,18759,30,1,1,1,0,0 // 1x Stretched_Nose_M +IG_Je_Un_Scroll,18551,30,1,1,1,0,0 // 1x Galaxy_Circlet +IG_Je_Un_Scroll,4137,1,1,1,1,0,0 // 1x Drake_Card -IG_Yong_Kwang_Scroll,Int_Dish_Box,1400,1,1,0,0,0 -IG_Yong_Kwang_Scroll,Dun_Tele_Scroll_Box10,1450,1,1,0,0,0 -IG_Yong_Kwang_Scroll,Kafra_Card_Box,1450,1,1,0,0,0 -IG_Yong_Kwang_Scroll,Holy_Armor_S_Box10,1450,1,1,0,0,0 -IG_Yong_Kwang_Scroll,Insurance_Package,1400,1,1,0,0,0 -IG_Yong_Kwang_Scroll,Str_Dish_Box,1450,1,1,0,0,0 -IG_Yong_Kwang_Scroll,Enriched_Elunium_Box,474,1,1,0,0,0 -IG_Yong_Kwang_Scroll,Job_Manual50_Box,500,1,1,0,0,0 -IG_Yong_Kwang_Scroll,Voyage_Hat,100,1,1,1,0,0 -IG_Yong_Kwang_Scroll,Side_Cap,100,1,1,1,0,0 -IG_Yong_Kwang_Scroll,Choco_Stick_In_Mouth,100,1,1,1,0,0 -IG_Yong_Kwang_Scroll,Upd_Bow_Guardian_Card,10,1,1,1,0,0 -IG_Yong_Kwang_Scroll,C_Rainbow_Feather_Deco,30,1,1,1,0,0 -IG_Yong_Kwang_Scroll,C_World_Star,30,1,1,1,0,0 -IG_Yong_Kwang_Scroll,SLD_Garm_Card,5,1,1,1,0,0 -IG_Yong_Kwang_Scroll,Drosera_Hairpin,25,1,1,1,0,0 -IG_Yong_Kwang_Scroll,Sinsuncho_Hat,25,1,1,1,0,0 -IG_Yong_Kwang_Scroll,Detale_Card,1,1,1,1,0,0 +IG_Yong_Kwang_Scroll,12905,1400,1,1,0,0,0 // 1x Int_Dish_Box +IG_Yong_Kwang_Scroll,13721,1450,1,1,0,0,0 // 1x Dun_Tele_Scroll_Box10 +IG_Yong_Kwang_Scroll,12909,1450,1,1,0,0,0 // 1x Kafra_Card_Box +IG_Yong_Kwang_Scroll,13744,1450,1,1,0,0,0 // 1x Holy_Armor_S_Box10 +IG_Yong_Kwang_Scroll,12901,1400,1,1,0,0,0 // 1x Insurance_Package +IG_Yong_Kwang_Scroll,12903,1450,1,1,0,0,0 // 1x Str_Dish_Box +IG_Yong_Kwang_Scroll,12920,474,1,1,0,0,0 // 1x Enriched_Elunium_Box +IG_Yong_Kwang_Scroll,13990,500,1,1,0,0,0 // 1x Job_Manual50_Box +IG_Yong_Kwang_Scroll,5578,100,1,1,1,0,0 // 1x Voyage_Hat +IG_Yong_Kwang_Scroll,5535,100,1,1,1,0,0 // 1x Side_Cap +IG_Yong_Kwang_Scroll,18745,100,1,1,1,0,0 // 1x Choco_Stick_In_Mouth +IG_Yong_Kwang_Scroll,4550,10,1,1,1,0,0 // 1x Upd_Bow_Guardian_Card +IG_Yong_Kwang_Scroll,19650,30,1,1,1,0,0 // 1x C_Rainbow_Feather_Deco +IG_Yong_Kwang_Scroll,18744,30,1,1,1,0,0 // 1x C_World_Star +IG_Yong_Kwang_Scroll,4543,5,1,1,1,0,0 // 1x SLD_Garm_Card +IG_Yong_Kwang_Scroll,18704,25,1,1,1,0,0 // 1x Drosera_Hairpin +IG_Yong_Kwang_Scroll,18558,25,1,1,1,0,0 // 1x Sinsuncho_Hat +IG_Yong_Kwang_Scroll,4386,1,1,1,1,0,0 // 1x Detale_Card // 2013 iRO Events - incomplete -IG_Solo_Christmas_Gift,C_Cat_Santa_Hat,1,1,1 -IG_Solo_Christmas_Gift,Old_Blue_Box,1,1,1 -IG_Solo_Christmas_Gift,Oh_Holy_Night,1,1,1 -IG_Solo_Christmas_Gift,Angeling_Potion,1,3,1 -IG_Solo_Christmas_Gift,Solo_Cookie,1,5,1 -IG_Solo_Christmas_Gift,Buche_De_Noel,1,5,1 -IG_Solo_Christmas_Gift,Event_Cake,1,5,1 -IG_Solo_Christmas_Gift,Vivid_Notation,1,5,1 -IG_HALLOWEEN_G_BOX,Immortal_Heart,1,30,1 -IG_HALLOWEEN_G_BOX,Starsand_Of_Witch,1,30,1 -IG_HALLOWEEN_G_BOX,Empty_Bottle,1,30,1 -IG_HALLOWEEN_G_BOX,Alchol,1,30,1 -IG_HALLOWEEN_G_BOX,Karvodailnirol,1,30,1 -IG_HALLOWEEN_G_BOX,Transparent_Cloth,1,30,1 -IG_HALLOWEEN_G_BOX,Stem,1,30,1 -IG_HALLOWEEN_G_BOX,Poison_Spore,1,30,1 -IG_HALLOWEEN_G_BOX,Speed_Up_Potion,1,5,1 -IG_HALLOWEEN_G_BOX,Chocolate,1,5,1 -IG_HALLOWEEN_G_BOX,Guarana_Candy,1,5,1 -IG_HALLOWEEN_G_BOX,Seed_Of_Yggdrasil,1,5,1 -IG_HALLOWEEN_G_BOX,Old_Blue_Box,1,1,1 -IG_HALLOWEEN_G_BOX,Old_Card_Album,1,1,1 -IG_HALLOWEEN_G_BOX,Old_Violet_Box,1,1,1 +IG_Solo_Christmas_Gift,19976,1,1,1 // 1x C_Cat_Santa_Hat +IG_Solo_Christmas_Gift,603,1,1,1 // 1x Old_Blue_Box +IG_Solo_Christmas_Gift,2784,1,1,1 // 1x Oh_Holy_Night +IG_Solo_Christmas_Gift,12350,1,3,1 // 3x Angeling_Potion +IG_Solo_Christmas_Gift,22686,1,5,1 // 5x Solo_Cookie +IG_Solo_Christmas_Gift,12354,1,5,1 // 5x Buche_De_Noel +IG_Solo_Christmas_Gift,12200,1,5,1 // 5x Event_Cake +IG_Solo_Christmas_Gift,12490,1,5,1 // 5x Vivid_Notation -IG_Sg_Weapon_Supply_Box,Velum_Arbalest,3,1,1 -IG_Sg_Weapon_Supply_Box,Velum_Arc_Wand,8,1,1 -IG_Sg_Weapon_Supply_Box,Velum_Bible,8,1,1 -IG_Sg_Weapon_Supply_Box,Velum_Buster,1,1,1 -IG_Sg_Weapon_Supply_Box,Velum_Claw,3,1,1 -IG_Sg_Weapon_Supply_Box,Velum_Claymore,8,1,1 -IG_Sg_Weapon_Supply_Box,Velum_CrossBow,8,1,1 -IG_Sg_Weapon_Supply_Box,Velum_Damascus,3,1,1 -IG_Sg_Weapon_Supply_Box,Velum_Encyclopedia,8,1,1 -IG_Sg_Weapon_Supply_Box,Velum_Flail,3,1,1 -IG_Sg_Weapon_Supply_Box,Velum_Glaive,8,1,1 -IG_Sg_Weapon_Supply_Box,Velum_Guillotine,8,1,1 -IG_Sg_Weapon_Supply_Box,Velum_Jamadhar,2,1,1 -IG_Sg_Weapon_Supply_Box,Velum_Katzbalger,8,1,1 -IG_Sg_Weapon_Supply_Box,Velum_Scare,1,1,1 -IG_Sg_Weapon_Supply_Box,Velum_Spear,8,1,1 -IG_Sg_Weapon_Supply_Box,Velum_Stunner,3,1,1 -IG_Sg_Weapon_Supply_Box,Siege_Arrow_Quiver_A,13,1,1 -IG_Sg_Weapon_Supply_Box,Siege_Arrow_Quiver_S,13,1,1 +IG_HALLOWEEN_G_BOX,929,1,30,1 // 30x Immortal_Heart +IG_HALLOWEEN_G_BOX,1061,1,30,1 // 30x Starsand_Of_Witch +IG_HALLOWEEN_G_BOX,713,1,30,1 // 30x Empty_Bottle +IG_HALLOWEEN_G_BOX,970,1,30,1 // 30x Alchol +IG_HALLOWEEN_G_BOX,972,1,30,1 // 30x Karvodailnirol +IG_HALLOWEEN_G_BOX,1059,1,30,1 // 30x Transparent_Cloth +IG_HALLOWEEN_G_BOX,905,1,30,1 // 30x Stem +IG_HALLOWEEN_G_BOX,7033,1,30,1 // 30x Poison_Spore +IG_HALLOWEEN_G_BOX,12016,1,5,1 // 5x Speed_Up_Potion +IG_HALLOWEEN_G_BOX,558,1,5,1 // 5x Chocolate +IG_HALLOWEEN_G_BOX,12414,1,5,1 // 5x Guarana_Candy +IG_HALLOWEEN_G_BOX,608,1,5,1 // 5x Seed_Of_Yggdrasil +IG_HALLOWEEN_G_BOX,603,1,1,1 // 1x Old_Blue_Box +IG_HALLOWEEN_G_BOX,616,1,1,1 // 1x Old_Card_Album +IG_HALLOWEEN_G_BOX,617,1,1,1 // 1x Old_Violet_Box + +IG_Sg_Weapon_Supply_Box,18113,3,1,1 // 1x Velum_Arbalest +IG_Sg_Weapon_Supply_Box,2016,8,1,1 // 1x Velum_Arc_Wand +IG_Sg_Weapon_Supply_Box,1586,8,1,1 // 1x Velum_Bible +IG_Sg_Weapon_Supply_Box,1395,1,1,1 // 1x Velum_Buster +IG_Sg_Weapon_Supply_Box,1832,3,1,1 // 1x Velum_Claw +IG_Sg_Weapon_Supply_Box,21001,8,1,1 // 1x Velum_Claymore +IG_Sg_Weapon_Supply_Box,18114,8,1,1 // 1x Velum_CrossBow +IG_Sg_Weapon_Supply_Box,13072,3,1,1 // 1x Velum_Damascus +IG_Sg_Weapon_Supply_Box,1587,8,1,1 // 1x Velum_Encyclopedia +IG_Sg_Weapon_Supply_Box,16021,3,1,1 // 1x Velum_Flail +IG_Sg_Weapon_Supply_Box,1492,8,1,1 // 1x Velum_Glaive +IG_Sg_Weapon_Supply_Box,1396,8,1,1 // 1x Velum_Guillotine +IG_Sg_Weapon_Supply_Box,1293,2,1,1 // 1x Velum_Jamadhar +IG_Sg_Weapon_Supply_Box,21002,8,1,1 // 1x Velum_Katzbalger +IG_Sg_Weapon_Supply_Box,1294,1,1,1 // 1x Velum_Scare +IG_Sg_Weapon_Supply_Box,1436,8,1,1 // 1x Velum_Spear +IG_Sg_Weapon_Supply_Box,16020,3,1,1 // 1x Velum_Stunner +IG_Sg_Weapon_Supply_Box,12678,13,1,1 // 1x Siege_Arrow_Quiver_A +IG_Sg_Weapon_Supply_Box,12677,13,1,1 // 1x Siege_Arrow_Quiver_S //TODO: Confirm the items & rates -IG_Adventurer_Returns_Support_Box,16505,1 -IG_Adventurer_Returns_Support_Box,16506,1 -IG_Adventurer_Returns_Support_Box,16507,1 -IG_Adventurer_Returns_Support_Box,16508,1 -IG_Adventurer_Returns_Support_Box,16509,1 -IG_Adventurer_Returns_Support_Box,16510,1 -IG_Adventurer_Returns_Support_Box,16514,1 -IG_Adventurer_Returns_Support_Box,16515,1 +IG_Adventurer_Returns_Support_Box,16505,1 // 1x Steamed_Tongue_Box_10 +IG_Adventurer_Returns_Support_Box,16506,1 // 1x Steamed_Desert_Scorpions_Box_10 +IG_Adventurer_Returns_Support_Box,16507,1 // 1x Dragon_Breath_Cocktail_Box_10 +IG_Adventurer_Returns_Support_Box,16508,1 // 1x Hwergelmir's_Tonic_Box_10 +IG_Adventurer_Returns_Support_Box,16509,1 // 1x Cooked_Nine_Tail_Box_10 +IG_Adventurer_Returns_Support_Box,16510,1 // 1x Immortal_Stew_Box_10 +IG_Adventurer_Returns_Support_Box,16514,1 // 1x Blessing_Scroll_Box_10 +IG_Adventurer_Returns_Support_Box,16515,1 // 1x Increase_Agility_Scroll_Box_10 //TODO: Confirm the items & rates -IG_Support_Package,Battle_Manual,1,2,1 -IG_Support_Package,Bubble_Gum,1,2,1 -IG_Support_Package,Almighty,1,2,1 -IG_Support_Package,Mental_Potion,1,2,1 -//IG_Support_Package,,1,6,1 //6x Mysterious Water of Life -IG_Support_Package,Scroll_Sealed_Dark_Lord,1,1,1 +IG_Support_Package,12208,1,2,1 // 2x Battle_Manual +IG_Support_Package,12210,1,2,1 // 2x Bubble_Gum +IG_Support_Package,12883,1,2,1 // 2x Almighty +IG_Support_Package,14600,1,2,1 // 2x Mental_Potion +//IG_Support_Package,,1,6,1 //6x Mysterious Water of Life +IG_Support_Package,14663,1,1,1 // 1x Scroll_Sealed_Dark_Lord //TODO: Confirm the items & rates -IG_Support_Package10,Battle_Manual,1,20,1 -IG_Support_Package10,Bubble_Gum,1,20,1 -IG_Support_Package10,Almighty,1,20,1 -IG_Support_Package10,Mental_Potion,1,20,1 -//IG_Support_Package10,,1,60,1 //60x Mysterious Water of Life -IG_Support_Package10,Scroll_Sealed_Dark_Lord,1,11,1 +IG_Support_Package10,12208,1,20,1 // 20x Battle_Manual +IG_Support_Package10,12210,1,20,1 // 20x Bubble_Gum +IG_Support_Package10,12883,1,20,1 // 20x Almighty +IG_Support_Package10,14600,1,20,1 // 20x Mental_Potion +//IG_Support_Package10,,1,60,1 //60x Mysterious Water of Life +IG_Support_Package10,14663,1,11,1 // 11x Scroll_Sealed_Dark_Lord //TODO: Confirm the items & rates -IG_Event_Almighty_Box,Almighty,1,10,1 -IG_Event_Almighty_Box,Sealed_Kiel-D-01_Scroll,1,1,1 +IG_Event_Almighty_Box,12883,1,10,1 // 10x Almighty +IG_Event_Almighty_Box,14689,1,1,1 // 1x Sealed_Kiel-D-01_Scroll //TODO: Confirm the items & rates -IG_Event_Almighty_Box10,Almighty,1,100,1 -IG_Event_Almighty_Box10,Sealed_Kiel-D-01_Scroll,1,11,1 +IG_Event_Almighty_Box10,12883,1,100,1 // 100x Almighty +IG_Event_Almighty_Box10,14689,1,11,1 // 11x Sealed_Kiel-D-01_Scroll -IG_LottoBox1,Lotto01,1,1,1 -IG_LottoBox1,Lotto02,1,1,1 -IG_LottoBox1,Lotto03,1,1,1 -IG_LottoBox1,Lotto04,1,1,1 -IG_LottoBox1,Lotto05,1,1,1 -IG_LottoBox1,Lotto06,1,1,1 -IG_LottoBox1,Lotto07,1,1,1 -IG_LottoBox1,Lotto08,1,1,1 -IG_LottoBox1,Lotto09,1,1,1 -IG_LottoBox1,Lotto10,1,1,1 -IG_LottoBox2,Lotto11,1,1,1 -IG_LottoBox2,Lotto12,1,1,1 -IG_LottoBox2,Lotto13,1,1,1 -IG_LottoBox2,Lotto14,1,1,1 -IG_LottoBox2,Lotto15,1,1,1 -IG_LottoBox2,Lotto16,1,1,1 -IG_LottoBox2,Lotto17,1,1,1 -IG_LottoBox2,Lotto18,1,1,1 -IG_LottoBox2,Lotto19,1,1,1 -IG_LottoBox2,Lotto20,1,1,1 -IG_LottoBox3,Lotto21,1,1,1 -IG_LottoBox3,Lotto22,1,1,1 -IG_LottoBox3,Lotto23,1,1,1 -IG_LottoBox3,Lotto24,1,1,1 -IG_LottoBox3,Lotto25,1,1,1 -IG_LottoBox3,Lotto26,1,1,1 -IG_LottoBox3,Lotto27,1,1,1 -IG_LottoBox3,Lotto28,1,1,1 -IG_LottoBox3,Lotto29,1,1,1 -IG_LottoBox3,Lotto30,1,1,1 -IG_LottoBox4,Lotto31,1,1,1 -IG_LottoBox4,Lotto32,1,1,1 -IG_LottoBox4,Lotto33,1,1,1 -IG_LottoBox4,Lotto34,1,1,1 -IG_LottoBox4,Lotto35,1,1,1 -IG_LottoBox4,Lotto36,1,1,1 -IG_LottoBox4,Lotto37,1,1,1 -IG_LottoBox4,Lotto38,1,1,1 -IG_LottoBox4,Lotto39,1,1,1 -IG_LottoBox4,Lotto40,1,1,1 -IG_LottoBox5,Lotto41,1,1,1 -IG_LottoBox5,Lotto42,1,1,1 -IG_LottoBox5,Lotto43,1,1,1 -IG_LottoBox5,Lotto44,1,1,1 -IG_LottoBox5,Lotto45,1,1,1 +IG_LottoBox1,7361,1,1,1 // 1x Lotto01 +IG_LottoBox1,7362,1,1,1 // 1x Lotto02 +IG_LottoBox1,7363,1,1,1 // 1x Lotto03 +IG_LottoBox1,7364,1,1,1 // 1x Lotto04 +IG_LottoBox1,7365,1,1,1 // 1x Lotto05 +IG_LottoBox1,7366,1,1,1 // 1x Lotto06 +IG_LottoBox1,7367,1,1,1 // 1x Lotto07 +IG_LottoBox1,7368,1,1,1 // 1x Lotto08 +IG_LottoBox1,7369,1,1,1 // 1x Lotto09 +IG_LottoBox1,7370,1,1,1 // 1x Lotto10 + +IG_LottoBox2,7371,1,1,1 // 1x Lotto11 +IG_LottoBox2,7372,1,1,1 // 1x Lotto12 +IG_LottoBox2,7373,1,1,1 // 1x Lotto13 +IG_LottoBox2,7374,1,1,1 // 1x Lotto14 +IG_LottoBox2,7375,1,1,1 // 1x Lotto15 +IG_LottoBox2,7376,1,1,1 // 1x Lotto16 +IG_LottoBox2,7377,1,1,1 // 1x Lotto17 +IG_LottoBox2,7378,1,1,1 // 1x Lotto18 +IG_LottoBox2,7379,1,1,1 // 1x Lotto19 +IG_LottoBox2,7380,1,1,1 // 1x Lotto20 + +IG_LottoBox3,7381,1,1,1 // 1x Lotto21 +IG_LottoBox3,7382,1,1,1 // 1x Lotto22 +IG_LottoBox3,7383,1,1,1 // 1x Lotto23 +IG_LottoBox3,7384,1,1,1 // 1x Lotto24 +IG_LottoBox3,7385,1,1,1 // 1x Lotto25 +IG_LottoBox3,7386,1,1,1 // 1x Lotto26 +IG_LottoBox3,7387,1,1,1 // 1x Lotto27 +IG_LottoBox3,7388,1,1,1 // 1x Lotto28 +IG_LottoBox3,7389,1,1,1 // 1x Lotto29 +IG_LottoBox3,7390,1,1,1 // 1x Lotto30 + +IG_LottoBox4,7391,1,1,1 // 1x Lotto31 +IG_LottoBox4,7392,1,1,1 // 1x Lotto32 +IG_LottoBox4,7393,1,1,1 // 1x Lotto33 +IG_LottoBox4,7394,1,1,1 // 1x Lotto34 +IG_LottoBox4,7395,1,1,1 // 1x Lotto35 +IG_LottoBox4,7396,1,1,1 // 1x Lotto36 +IG_LottoBox4,7397,1,1,1 // 1x Lotto37 +IG_LottoBox4,7398,1,1,1 // 1x Lotto38 +IG_LottoBox4,7540,1,1,1 // 1x Lotto39 +IG_LottoBox4,7541,1,1,1 // 1x Lotto40 + +IG_LottoBox5,7542,1,1,1 // 1x Lotto41 +IG_LottoBox5,7543,1,1,1 // 1x Lotto42 +IG_LottoBox5,7544,1,1,1 // 1x Lotto43 +IG_LottoBox5,7545,1,1,1 // 1x Lotto44 +IG_LottoBox5,7546,1,1,1 // 1x Lotto45 //TODO: Confirm the items & rates -IG_Support_Package_III,Battle_Manual,1,2,1 -IG_Support_Package_III,Bubble_Gum,1,2,1 -IG_Support_Package_III,Almighty,1,2,1 -IG_Support_Package_III,Mental_Potion,1,2,1 -//IG_Support_Package_III,,1,6,1 //6x Mysterious Water of Life -IG_Support_Package_III,Sealed_Bacsojin_Scroll,1,1,1 +IG_Support_Package_III,12208,1,2,1 // 2x Battle_Manual +IG_Support_Package_III,12210,1,2,1 // 2x Bubble_Gum +IG_Support_Package_III,12883,1,2,1 // 2x Almighty +IG_Support_Package_III,14600,1,2,1 // 2x Mental_Potion +//IG_Support_Package_III,,1,6,1 //6x Mysterious Water of Life +IG_Support_Package_III,14725,1,1,1 // 1x Sealed_Bacsojin_Scroll //TODO: Confirm the items & rates -IG_Support_Package_III10,Battle_Manual,1,20,1 -IG_Support_Package_III10,Bubble_Gum,1,20,1 -IG_Support_Package_III10,Almighty,1,20,1 -IG_Support_Package_III10,Mental_Potion,1,20,1 -//IG_Support_Package_III10,,1,60,1 //60x Mysterious Water of Life -IG_Support_Package_III10,Sealed_Bacsojin_Scroll,1,11,1 +IG_Support_Package_III10,12208,1,20,1 // 20x Battle_Manual +IG_Support_Package_III10,12210,1,20,1 // 20x Bubble_Gum +IG_Support_Package_III10,12883,1,20,1 // 20x Almighty +IG_Support_Package_III10,14600,1,20,1 // 20x Mental_Potion +//IG_Support_Package_III10,,1,60,1 //60x Mysterious Water of Life +IG_Support_Package_III10,14725,1,11,1 // 11x Sealed_Bacsojin_Scroll //TODO: Confirm the items & rates -//IG_Unlimited_Box,,0,5,0 //5 ASPD Enhanced Potion -//IG_Unlimited_Box,,0,10,0 //10 Red Boost -IG_Unlimited_Box,Golden_Treasure_Box,0,1,0 +//IG_Unlimited_Box,,0,5,0 //5 ASPD Enhanced Potion +//IG_Unlimited_Box,,0,10,0 //10 Red Boost +IG_Unlimited_Box,12841,0,1,0 // 1x Golden_Treasure_Box //TODO: Confirm the items & rates -//IG_Unlimited_Box_II,,0,5,0 //50 ASPD Enhanced Potion -//IG_Unlimited_Box_II,,0,10,0 //100 Red Boost -IG_Unlimited_Box_II,Golden_Treasure_Box,0,11,0 +//IG_Unlimited_Box_II,,0,5,0 //50 ASPD Enhanced Potion +//IG_Unlimited_Box_II,,0,10,0 //100 Red Boost +IG_Unlimited_Box_II,12841,0,11,0 // 11x Golden_Treasure_Box //TODO: Confirm the items & rates -//IG_Unlimited_Box_II,,0,5,0 //5 ASPD Enhanced Potion -//IG_Unlimited_Box_II,,0,10,0 //10 Red Boost -IG_Unlimited_Box_II,Sealed_Pharaoh_Scroll,0,1,0 +//IG_Unlimited_Box_II,,0,5,0 //5 ASPD Enhanced Potion +//IG_Unlimited_Box_II,,0,10,0 //10 Red Boost +IG_Unlimited_Box_II,14733,0,1,0 // 1x Sealed_Pharaoh_Scroll //TODO: Confirm the items & rates -//IG_Unlimited_Box_II10,,0,5,0 //50 ASPD Enhanced Potion -//IG_Unlimited_Box_II10,,0,10,0 //100 Red Boost -IG_Unlimited_Box_II10,Sealed_Pharaoh_Scroll,0,11,0 +//IG_Unlimited_Box_II10,,0,5,0 //50 ASPD Enhanced Potion +//IG_Unlimited_Box_II10,,0,10,0 //100 Red Boost +IG_Unlimited_Box_II10,14733,0,11,0 // 11x Sealed_Pharaoh_Scroll //TODO: Confirm the items & rates -IG_Three_Master_Package_III,Small_Life_Potion,1,20,1 -IG_Three_Master_Package_III,Med_Life_Potion,1,20,1 -//IG_Three_Master_Package_III,,1,20,1 //60x Mysterious Water of Life -IG_Three_Master_Package_III,Sealed_Moonlight_Flower_Scroll,1,1,1 +IG_Three_Master_Package_III,14534,1,20,1 // 20x Small_Life_Potion +IG_Three_Master_Package_III,14535,1,20,1 // 20x Med_Life_Potion +//IG_Three_Master_Package_III,,1,20,1 //60x Mysterious Water of Life +IG_Three_Master_Package_III,22735,1,1,1 // 1x Sealed_Moonlight_Flower_Scroll //TODO: Confirm the items & rates -IG_Three_Master_Package_III10,Small_Life_Potion,1,200,1 -IG_Three_Master_Package_III10,Med_Life_Potion,1,200,1 -//IG_Three_Master_Package_III10,,1,200,1 //200x Mysterious Water of Life -IG_Three_Master_Package_III10,Sealed_Moonlight_Flower_Scroll,1,11,1 +IG_Three_Master_Package_III10,14534,1,200,1 // 200x Small_Life_Potion +IG_Three_Master_Package_III10,14535,1,200,1 // 200x Med_Life_Potion +//IG_Three_Master_Package_III10,,1,200,1 //200x Mysterious Water of Life +IG_Three_Master_Package_III10,22735,1,11,1 // 11x Sealed_Moonlight_Flower_Scroll //TODO: Confirm the items & rates -IG_2013_RWC_Scroll,Neutral_Shadow_Weapon,0,1,0 -IG_2013_RWC_Scroll,Neutral_Shadow_Earring,0,1,0 -IG_2013_RWC_Scroll,Neutral_Shadow_Pendant,0,1,0 -IG_2013_RWC_Scroll,Frozen_Curse_Shadow_Earring,0,1,0 -IG_2013_RWC_Scroll,Frozen_Curse_Shadow_Pendant,0,1,0 -IG_2013_RWC_Scroll,Guarantee_Weapon_11Up,0,1,0 -IG_2013_RWC_Scroll,Guarantee_Armor_11Up,0,1,0 -IG_2013_RWC_Scroll,Guarantee_Weapon_9Up,0,1,0 -IG_2013_RWC_Scroll,Guarantee_Armor_9Up,0,1,0 -IG_2013_RWC_Scroll,C_Wings_Of_Victory,0,1,0 -IG_2013_RWC_Scroll,Succu_Pet_Coupon,0,1,0 +IG_2013_RWC_Scroll,24104,0,1,0 // 1x Neutral_Shadow_Weapon +IG_2013_RWC_Scroll,24105,0,1,0 // 1x Neutral_Shadow_Earring +IG_2013_RWC_Scroll,24106,0,1,0 // 1x Neutral_Shadow_Pendant +IG_2013_RWC_Scroll,24107,0,1,0 // 1x Frozen_Curse_Shadow_Earring +IG_2013_RWC_Scroll,24108,0,1,0 // 1x Frozen_Curse_Shadow_Pendant +IG_2013_RWC_Scroll,6238,0,1,0 // 1x Guarantee_Weapon_11Up +IG_2013_RWC_Scroll,6239,0,1,0 // 1x Guarantee_Armor_11Up +IG_2013_RWC_Scroll,6228,0,1,0 // 1x Guarantee_Weapon_9Up +IG_2013_RWC_Scroll,6232,0,1,0 // 1x Guarantee_Armor_9Up +IG_2013_RWC_Scroll,19710,0,1,0 // 1x C_Wings_Of_Victory +IG_2013_RWC_Scroll,6116,0,1,0 // 1x Succu_Pet_Coupon //TODO: Confirm the items & rates -IG_Support_Package_II,Battle_Manual,1,2,1 -IG_Support_Package_II,Bubble_Gum,1,2,1 -IG_Support_Package_II,Almighty,1,2,1 -IG_Support_Package_II,Mental_Potion,1,2,1 -//IG_Support_Package_II,,1,6,1 //6x Mysterious Water of Life -IG_Support_Package_II,14717,1,1,1 //1x 2013_RWC_Scroll +IG_Support_Package_II,12208,1,2,1 // 2x Battle_Manual +IG_Support_Package_II,12210,1,2,1 // 2x Bubble_Gum +IG_Support_Package_II,12883,1,2,1 // 2x Almighty +IG_Support_Package_II,14600,1,2,1 // 2x Mental_Potion +//IG_Support_Package_II,,1,6,1 //6x Mysterious Water of Life +IG_Support_Package_II,14725,1,1,1 //1x Sealed_Bacsojin_Scroll //TODO: Confirm the items & rates -IG_Support_Package_II10,Battle_Manual,1,20,1 -IG_Support_Package_II10,Bubble_Gum,1,20,1 -IG_Support_Package_II10,Almighty,1,20,1 -IG_Support_Package_II10,Mental_Potion,1,20,1 -//IG_Support_Package_II10,,1,60,1 //60x Mysterious Water of Life -IG_Support_Package_II10,14717,1,1,1 //1x 2013_RWC_Scroll +IG_Support_Package_II10,12208,1,20,1 // 20x Battle_Manual +IG_Support_Package_II10,12210,1,20,1 // 20x Bubble_Gum +IG_Support_Package_II10,12883,1,20,1 // 20x Almighty +IG_Support_Package_II10,14600,1,20,1 // 20x Mental_Potion +//IG_Support_Package_II10,,1,60,1 //60x Mysterious Water of Life +IG_Support_Package_II10,14725,1,1,1 //1x Sealed_Bacsojin_Scroll -IG_Level_Up_Box100,Guarantee_Weapon_6Up,0,1,0 -IG_Level_Up_Box100,Level_Up_Box120,0,1,0 +IG_Level_Up_Box100,6231,0,1,0 // 1x Guarantee_Weapon_6Up +IG_Level_Up_Box100,22523,0,1,0 // 1x Level_Up_Box120 -IG_Level_Up_Box120,Battle_Manual,0,5,0 -IG_Level_Up_Box120,Bubble_Gum,0,5,0 -IG_Level_Up_Box120,Insurance,0,5,0 -IG_Level_Up_Box120,Job_Manual50,0,5,0 -IG_Level_Up_Box120,Guarantee_Armor_6Up,0,1,0 -IG_Level_Up_Box120,Level_Up_Box130,0,1,0 +IG_Level_Up_Box120,12208,0,5,0 // 5x Battle_Manual +IG_Level_Up_Box120,12210,0,5,0 // 5x Bubble_Gum +IG_Level_Up_Box120,12209,0,5,0 // 5x Insurance +IG_Level_Up_Box120,14592,0,5,0 // 5x Job_Manual50 +IG_Level_Up_Box120,6235,0,1,0 // 1x Guarantee_Armor_6Up +IG_Level_Up_Box120,22524,0,1,0 // 1x Level_Up_Box130 -IG_Level_Up_Box130,Battle_Manual,0,5,0 -IG_Level_Up_Box130,Bubble_Gum,0,5,0 -IG_Level_Up_Box130,Insurance,0,5,0 -IG_Level_Up_Box130,Job_Manual50,0,5,0 -IG_Level_Up_Box130,Guarantee_Weapon_7Up,0,1,0 -IG_Level_Up_Box130,Level_Up_Box140,0,1,0 +IG_Level_Up_Box130,12208,0,5,0 // 5x Battle_Manual +IG_Level_Up_Box130,12210,0,5,0 // 5x Bubble_Gum +IG_Level_Up_Box130,12209,0,5,0 // 5x Insurance +IG_Level_Up_Box130,14592,0,5,0 // 5x Job_Manual50 +IG_Level_Up_Box130,6230,0,1,0 // 1x Guarantee_Weapon_7Up +IG_Level_Up_Box130,22525,0,1,0 // 1x Level_Up_Box140 -IG_Level_Up_Box140,Battle_Manual,0,5,0 -IG_Level_Up_Box140,Bubble_Gum,0,5,0 -IG_Level_Up_Box140,Insurance,0,5,0 -IG_Level_Up_Box140,Job_Manual50,0,5,0 -IG_Level_Up_Box140,Guarantee_Armor_7Up,0,1,0 -IG_Level_Up_Box140,Level_Up_Box150,0,1,0 +IG_Level_Up_Box140,12208,0,5,0 // 5x Battle_Manual +IG_Level_Up_Box140,12210,0,5,0 // 5x Bubble_Gum +IG_Level_Up_Box140,12209,0,5,0 // 5x Insurance +IG_Level_Up_Box140,14592,0,5,0 // 5x Job_Manual50 +IG_Level_Up_Box140,6234,0,1,0 // 1x Guarantee_Armor_7Up +IG_Level_Up_Box140,22526,0,1,0 // 1x Level_Up_Box150 -IG_Level_Up_Box150,Battle_Manual,0,5,0 -IG_Level_Up_Box150,Bubble_Gum,0,5,0 -IG_Level_Up_Box150,Insurance,0,5,0 -IG_Level_Up_Box150,Job_Manual50,0,5,0 -IG_Level_Up_Box150,Guarantee_Weapon_8Up,0,1,0 -IG_Level_Up_Box150,Level_Up_Box160,0,1,0 +IG_Level_Up_Box150,12208,0,5,0 // 5x Battle_Manual +IG_Level_Up_Box150,12210,0,5,0 // 5x Bubble_Gum +IG_Level_Up_Box150,12209,0,5,0 // 5x Insurance +IG_Level_Up_Box150,14592,0,5,0 // 5x Job_Manual50 +IG_Level_Up_Box150,6229,0,1,0 // 1x Guarantee_Weapon_8Up +IG_Level_Up_Box150,22527,0,1,0 // 1x Level_Up_Box160 -IG_Level_Up_Box160,Battle_Manual,0,5,0 -IG_Level_Up_Box160,Bubble_Gum,0,5,0 -IG_Level_Up_Box160,Insurance,0,5,0 -IG_Level_Up_Box160,Job_Manual50,0,5,0 -IG_Level_Up_Box160,Guarantee_Armor_8Up,0,2,0 +IG_Level_Up_Box160,12208,0,5,0 // 5x Battle_Manual +IG_Level_Up_Box160,12210,0,5,0 // 5x Bubble_Gum +IG_Level_Up_Box160,12209,0,5,0 // 5x Insurance +IG_Level_Up_Box160,14592,0,5,0 // 5x Job_Manual50 +IG_Level_Up_Box160,6233,0,2,0 // 2x Guarantee_Armor_8Up -IG_Gift_Buff_Set,14534,0,5,0 -IG_Gift_Buff_Set,12215,0,5,0 -IG_Gift_Buff_Set,12216,0,5,0 -IG_Gift_Buff_Set,12075,0,2,0 -IG_Gift_Buff_Set,12080,0,2,0 -IG_Gift_Buff_Set,12085,0,2,0 -IG_Gift_Buff_Set,12090,0,2,0 -IG_Gift_Buff_Set,12095,0,2,0 -IG_Gift_Buff_Set,12100,0,2,0 +IG_Gift_Buff_Set,14534,0,5,0 // 5x Small_Life_Potion +IG_Gift_Buff_Set,12215,0,5,0 // 5x Blessing_10_Scroll +IG_Gift_Buff_Set,12216,0,5,0 // 5x Inc_Agi_10_Scroll +IG_Gift_Buff_Set,12075,0,2,0 // 2x Str_Dish10 +IG_Gift_Buff_Set,12080,0,2,0 // 2x Int_Dish10 +IG_Gift_Buff_Set,12085,0,2,0 // 2x Vit_Dish10 +IG_Gift_Buff_Set,12090,0,2,0 // 2x Agi_Dish10 +IG_Gift_Buff_Set,12095,0,2,0 // 2x Dex_Dish10 +IG_Gift_Buff_Set,12100,0,2,0 // 2x Luk_Dish10 -IG_Lucky_Silvervine_Fruit_Box_III10,Silvervine,0,10,0,0,0,0 -IG_Lucky_Silvervine_Fruit_Box_III10,Sealed_Vesper_Scroll,0,1,0,0,0,0 +IG_Lucky_Silvervine_Fruit_Box_III10,6417,0,10,0,0,0,0 // 10x Silvervine +IG_Lucky_Silvervine_Fruit_Box_III10,14740,0,1,0,0,0,0 // 1x Sealed_Vesper_Scroll -IG_Lucky_Silvervine_Fruit_Box_III110,Silvervine,0,110,0,0,0,0 -IG_Lucky_Silvervine_Fruit_Box_III110,Sealed_Vesper_Scroll,0,11,0,0,0,0 +IG_Lucky_Silvervine_Fruit_Box_III110,6417,0,110,0,0,0,0 // 110x Silvervine +IG_Lucky_Silvervine_Fruit_Box_III110,14740,0,11,0,0,0,0 // 11x Sealed_Vesper_Scroll -IG_Old_Ore_Box,714,50,1,1,0,0,0,0,0 -IG_Old_Ore_Box,756,80,1,1,0,0,0,0,0 -IG_Old_Ore_Box,757,70,1,1,0,0,0,0,0 -IG_Old_Ore_Box,969,10,1,1,0,0,0,0,0 -IG_Old_Ore_Box,984,20,1,1,0,0,0,0,0 -IG_Old_Ore_Box,985,20,1,1,0,0,0,0,0 -IG_Old_Ore_Box,990,100,1,1,0,0,0,0,0 -IG_Old_Ore_Box,991,100,1,1,0,0,0,0,0 -IG_Old_Ore_Box,992,100,1,1,0,0,0,0,0 -IG_Old_Ore_Box,993,100,1,1,0,0,0,0,0 -IG_Old_Ore_Box,994,40,1,1,0,0,0,0,0 -IG_Old_Ore_Box,995,40,1,1,0,0,0,0,0 -IG_Old_Ore_Box,996,40,1,1,0,0,0,0,0 -IG_Old_Ore_Box,997,40,1,1,0,0,0,0,0 -IG_Old_Ore_Box,998,380,1,1,0,0,0,0,0 -IG_Old_Ore_Box,999,50,1,1,0,0,0,0,0 -IG_Old_Ore_Box,1002,600,1,1,0,0,0,0,0 -IG_Old_Ore_Box,1003,80,1,1,0,0,0,0,0 -IG_Old_Ore_Box,1010,600,1,1,0,0,0,0,0 -IG_Old_Ore_Box,1011,380,1,1,0,0,0,0,0 +IG_Old_Ore_Box,714,50,1,1,0,0,0,0,0 // 1x Emperium +IG_Old_Ore_Box,756,80,1,1,0,0,0,0,0 // 1x Oridecon_Stone +IG_Old_Ore_Box,757,70,1,1,0,0,0,0,0 // 1x Elunium_Stone +IG_Old_Ore_Box,969,10,1,1,0,0,0,0,0 // 1x Gold +IG_Old_Ore_Box,984,20,1,1,0,0,0,0,0 // 1x Oridecon +IG_Old_Ore_Box,985,20,1,1,0,0,0,0,0 // 1x Elunium +IG_Old_Ore_Box,990,100,1,1,0,0,0,0,0 // 1x Boody_Red +IG_Old_Ore_Box,991,100,1,1,0,0,0,0,0 // 1x Crystal_Blue +IG_Old_Ore_Box,992,100,1,1,0,0,0,0,0 // 1x Wind_Of_Verdure +IG_Old_Ore_Box,993,100,1,1,0,0,0,0,0 // 1x Yellow_Live +IG_Old_Ore_Box,994,40,1,1,0,0,0,0,0 // 1x Flame_Heart +IG_Old_Ore_Box,995,40,1,1,0,0,0,0,0 // 1x Mistic_Frozen +IG_Old_Ore_Box,996,40,1,1,0,0,0,0,0 // 1x Rough_Wind +IG_Old_Ore_Box,997,40,1,1,0,0,0,0,0 // 1x Great_Nature +IG_Old_Ore_Box,998,380,1,1,0,0,0,0,0 // 1x Iron +IG_Old_Ore_Box,999,50,1,1,0,0,0,0,0 // 1x Steel +IG_Old_Ore_Box,1002,600,1,1,0,0,0,0,0 // 1x Iron_Ore +IG_Old_Ore_Box,1003,80,1,1,0,0,0,0,0 // 1x Coal +IG_Old_Ore_Box,1010,600,1,1,0,0,0,0,0 // 1x Phracon +IG_Old_Ore_Box,1011,380,1,1,0,0,0,0,0 // 1x Emveretarcon + +//! TODO: Confirm the rates +IG_Blessing_Lucky_Egg,4263,1,1 // 1x Incantation Samurai Card +IG_Blessing_Lucky_Egg,4047,1,1 // 1x Ghosting Card +IG_Blessing_Lucky_Egg,4480,1,1 // 1x Sealed Kiel Card +IG_Blessing_Lucky_Egg,4498,1,1 // 1x Sealed Lady Tanee Card +IG_Blessing_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Blessing_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Blessing_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Blessing_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Blessing_Lucky_Egg,20724,1,1 // 1x Love Dad Wings 2012 +IG_Blessing_Lucky_Egg,2196,1,1 // 1x White Gold Shield +IG_Blessing_Lucky_Egg,18937,1,1 // 1x Memories of Lovers +IG_Blessing_Lucky_Egg,18925,1,1 // 1x God of Winds Fan +IG_Blessing_Lucky_Egg,18938,1,1 // 1x Astro Circle +IG_Blessing_Lucky_Egg,19752,1,1 // 1x C Shelter Wing Ears +IG_Blessing_Lucky_Egg,19685,1,1 // 1x C Shine Santa Poring +IG_Blessing_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore (Unbreakable_Weap) +IG_Blessing_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore (Unbreakable_Def) +IG_Blessing_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Blessing_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Blessing_Lucky_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Blessing_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Blessing_Lucky_Egg,12411,1,1 // HE Battle Manual +IG_Blessing_Lucky_Egg,12901,1,1 // Insurance Package +IG_Blessing_Lucky_Egg,12221,1,1 // Megaphone + +//! TODO: Confirm the rates +IG_Sograt_Lucky_Egg,4503,1,1 // 1x Sealed Vesper Card +IG_Sograt_Lucky_Egg,4174,1,1 // 1x Deviling Card +IG_Sograt_Lucky_Egg,4147,1,1 // 1x Baphomet Card +IG_Sograt_Lucky_Egg,4145,1,1 // 1x Berzebub Card +IG_Sograt_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Sograt_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Sograt_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Sograt_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Sograt_Lucky_Egg,6233,1,1 // 1x Guarantee_Armor_8Up +IG_Sograt_Lucky_Egg,6229,1,1 // 1x Guarantee_Weapon_8Up +IG_Sograt_Lucky_Egg,20099,1,1 // 1x Flying Ljosalfar +IG_Sograt_Lucky_Egg,19024,1,1 // 1x Protect Feathers +IG_Sograt_Lucky_Egg,19910,1,1 // 1x C Halloween Hat +IG_Sograt_Lucky_Egg,2899,1,1 // 1x Sound Amplifier +IG_Sograt_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Sograt_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Sograt_Lucky_Egg,17126,1,1 // 1x ASPD Intensifying Potion Box +IG_Sograt_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Sograt_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Sograt_Lucky_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Sograt_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Sograt_Lucky_Egg,14619,1,20 // 20x INT Biscuit Stick +IG_Sograt_Lucky_Egg,14618,1,20 // 20x AGI Biscuit Stick + +//! TODO: Confirm the rates +IG_Garnet_Lucky_Egg,4302,1,1 // 1x Tao Gunka Card +IG_Garnet_Lucky_Egg,4198,1,1 // 1x Maya Purple Card +IG_Garnet_Lucky_Egg,4495,1,1 // 1x Sealed Amon Ra Card +IG_Garnet_Lucky_Egg,4493,1,1 // 1x Sealed Tao Gunka Card +IG_Garnet_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Garnet_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Garnet_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Garnet_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Garnet_Lucky_Egg,6233,1,1 // 1x Guarantee_Armor_8Up +IG_Garnet_Lucky_Egg,6229,1,1 // 1x Guarantee_Weapon_8Up +IG_Garnet_Lucky_Egg,6234,1,1 // 1x Guarantee_Armor_7Up +IG_Garnet_Lucky_Egg,6230,1,1 // 1x Guarantee_Weapon_7Up +IG_Garnet_Lucky_Egg,6235,1,1 // 1x Guarantee_Armor_6Up +IG_Garnet_Lucky_Egg,6231,1,1 // 1x Guarantee_Weapon_6Up +IG_Garnet_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Garnet_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Garnet_Lucky_Egg,17126,1,1 // 1x ASPD Intensifying Potion Box +IG_Garnet_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Garnet_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Garnet_Lucky_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Garnet_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Garnet_Lucky_Egg,14619,1,20 // 20x INT Biscuit Stick +IG_Garnet_Lucky_Egg,14618,1,20 // 20x AGI Biscuit Stick + +//! TODO: Confirm the rates +IG_Amora_Lucky_Egg,4263,1,1 // 1x Incantation Samurai Card +IG_Amora_Lucky_Egg,4135,1,1 // 1x Orc Lord Card +IG_Amora_Lucky_Egg,4480,1,1 // 1x Sealed Kiel Card +IG_Amora_Lucky_Egg,4493,1,1 // 1x Sealed Tao Gunka Card +IG_Amora_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Amora_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Amora_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Amora_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Amora_Lucky_Egg,6233,1,1 // 1x Guarantee_Armor_8Up +IG_Amora_Lucky_Egg,6229,1,1 // 1x Guarantee_Weapon_8Up +IG_Amora_Lucky_Egg,18563,1,1 // 1x Heart Wing Hairband +IG_Amora_Lucky_Egg,28342,1,1 // 1x Critical Anklet +IG_Amora_Lucky_Egg,20171,1,1 // 1x C Sepia Cap +IG_Amora_Lucky_Egg,18564,1,1 // 1x Love Piece +IG_Amora_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Amora_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Amora_Lucky_Egg,17126,1,1 // 1x ASPD Intensifying Potion Box +IG_Amora_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Amora_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Amora_Lucky_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Amora_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Amora_Lucky_Egg,14619,1,20 // 20x INT Biscuit Stick +IG_Amora_Lucky_Egg,14618,1,20 // 20x AGI Biscuit Stick + +//! TODO: Confirm the rates +IG_Venus_Lucky_Egg,4403,1,1 // 1x Kiel Card +IG_Venus_Lucky_Egg,4430,1,1 // 1x Ifrit Card +IG_Venus_Lucky_Egg,4485,1,1 // 1x Sealed Gloom Card +IG_Venus_Lucky_Egg,4493,1,1 // 1x Sealed Tao Gunka Card +IG_Venus_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Venus_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Venus_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Venus_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Venus_Lucky_Egg,18560,1,1 // 1x Fafnir Mask +IG_Venus_Lucky_Egg,5562,1,1 // 1x Good Wedding Veil +IG_Venus_Lucky_Egg,18559,1,1 // 1x Fafnir Skin +IG_Venus_Lucky_Egg,20131,1,1 // 1x C Tower Manager Incom +IG_Venus_Lucky_Egg,6235,1,1 // 1x Guarantee_Armor_6Up +IG_Venus_Lucky_Egg,6231,1,1 // 1x Guarantee_Weapon_6Up +IG_Venus_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Venus_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Venus_Lucky_Egg,17126,1,1 // 1x ASPD Intensifying Potion Box +IG_Venus_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Venus_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Venus_Lucky_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Venus_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Venus_Lucky_Egg,14619,1,20 // 20x INT Biscuit Stick +IG_Venus_Lucky_Egg,14618,1,20 // 20x AGI Biscuit Stick + +//! TODO: Confirm the rates +IG_Erzulie_Lucky_Egg,4137,1,1 // 1x Drake Card +IG_Erzulie_Lucky_Egg,4276,1,1 // 1x Lord of Death Card +IG_Erzulie_Lucky_Egg,4488,1,1 // 1x Sealed Dark Lord Card +IG_Erzulie_Lucky_Egg,4480,1,1 // 1x Sealed Kiel Card +IG_Erzulie_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Erzulie_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Erzulie_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Erzulie_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Erzulie_Lucky_Egg,19048,1,1 // 1x Elemental Clothe +IG_Erzulie_Lucky_Egg,19047,1,1 // 1x Angeling KnitCap +IG_Erzulie_Lucky_Egg,2198,1,1 // 1x Lapine Shield +IG_Erzulie_Lucky_Egg,20155,1,1 // 1x C Ladys Feather Hat +IG_Erzulie_Lucky_Egg,6235,1,1 // 1x Guarantee_Armor_6Up +IG_Erzulie_Lucky_Egg,6231,1,1 // 1x Guarantee_Weapon_6Up +IG_Erzulie_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Erzulie_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Erzulie_Lucky_Egg,17126,1,1 // 1x ASPD Intensifying Potion Box +IG_Erzulie_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Erzulie_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Erzulie_Lucky_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Erzulie_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Erzulie_Lucky_Egg,14619,1,20 // 20x INT Biscuit Stick +IG_Erzulie_Lucky_Egg,14618,1,20 // 20x AGI Biscuit Stick + +//! TODO: Confirm the rates +IG_Majestic_Lucky_Egg,4403,1,1 // 1x Kiel Card +IG_Majestic_Lucky_Egg,4374,1,1 // 1x Vesper Card +IG_Majestic_Lucky_Egg,4485,1,1 // 1x Sealed Gloom Card +IG_Majestic_Lucky_Egg,4499,1,1 // 1x Sealed Incantation Samurai Card +IG_Majestic_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Majestic_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Majestic_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Majestic_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Majestic_Lucky_Egg,5920,1,1 // 1x Medical Boots +IG_Majestic_Lucky_Egg,15145,1,1 // 1x Evil Dragon Armor +IG_Majestic_Lucky_Egg,19031,1,1 // 1x Fallen Angel Blessing +IG_Majestic_Lucky_Egg,22064,1,1 // 1x Thorny Shoes +IG_Majestic_Lucky_Egg,5409,1,1 // 1x New Cowboy Hat +IG_Majestic_Lucky_Egg,19709,1,1 // 1x Outfit Yellow Ribbon +IG_Majestic_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Majestic_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Majestic_Lucky_Egg,17126,1,1 // 1x ASPD Intensifying Potion Box +IG_Majestic_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Majestic_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Majestic_Lucky_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Majestic_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Majestic_Lucky_Egg,12411,1,1 // HE Battle Manual +IG_Majestic_Lucky_Egg,12901,1,1 // Insurance Package +IG_Majestic_Lucky_Egg,12221,1,1 // Megaphone + +//! TODO: Confirm the rates +IG_Epic_Heroes_Lucky_Egg,4399,1,1 // 1x Memory of Thanatos Card +IG_Epic_Heroes_Lucky_Egg,4357,1,1 // 1x Lord Knight Card +IG_Epic_Heroes_Lucky_Egg,4500,1,1 // 1x Sealed Orc Lord Card +IG_Epic_Heroes_Lucky_Egg,4497,1,1 // 1x Sealed Knight of Windstorm Card +IG_Epic_Heroes_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Epic_Heroes_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Epic_Heroes_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Epic_Heroes_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Epic_Heroes_Lucky_Egg,19021,1,1 // 1x Gigant Helm +IG_Epic_Heroes_Lucky_Egg,19020,1,1 // 1x Survive Circlet +IG_Epic_Heroes_Lucky_Egg,19019,1,1 // 1x Elemental Crown +IG_Epic_Heroes_Lucky_Egg,5596,1,1 // 1x Four Leaf Clover in Mouth +IG_Epic_Heroes_Lucky_Egg,5366,1,1 // 1x Hat of King +IG_Epic_Heroes_Lucky_Egg,19538,1,1 // 1x Full Moon +IG_Epic_Heroes_Lucky_Egg,19729,1,1 // 1x Outfit Neko Mimi Kafra +IG_Epic_Heroes_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Epic_Heroes_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Epic_Heroes_Lucky_Egg,17126,1,1 // 1x ASPD Intensifying Potion Box +IG_Epic_Heroes_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Epic_Heroes_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Epic_Heroes_Lucky_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Epic_Heroes_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Epic_Heroes_Lucky_Egg,12411,1,1 // HE Battle Manual +IG_Epic_Heroes_Lucky_Egg,12901,1,1 // Insurance Package +IG_Epic_Heroes_Lucky_Egg,12221,1,1 // Megaphone + +//! TODO: Confirm the rates +IG_Hero_Midgard_Egg,4263,1,1 // 1x Incantation Samurai Card +IG_Hero_Midgard_Egg,4407,1,1 // 1x Randgris Card +IG_Hero_Midgard_Egg,4539,1,1 // 1x Sealed Fallen Bishop Card +IG_Hero_Midgard_Egg,4486,1,1 // 1x Sealed Berzebub Card +IG_Hero_Midgard_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Hero_Midgard_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Hero_Midgard_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Hero_Midgard_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Hero_Midgard_Egg,18827,1,1 // 1x Valkyrie Circlet +IG_Hero_Midgard_Egg,18803,1,1 // 1x Rose Cascade +IG_Hero_Midgard_Egg,5664,1,1 // 1x Filir Wing +IG_Hero_Midgard_Egg,18792,1,1 // 1x Indonesian Independence Sakkat +IG_Hero_Midgard_Egg,5597,1,1 // 1x Bubble Gum in Mouth +IG_Hero_Midgard_Egg,5422,1,1 // 1x Linguistic Book Cap +IG_Hero_Midgard_Egg,18508,1,1 // 1x Garuda Hat +IG_Hero_Midgard_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Hero_Midgard_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Hero_Midgard_Egg,17126,1,1 // 1x ASPD Intensifying Potion Box +IG_Hero_Midgard_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Hero_Midgard_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Hero_Midgard_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Hero_Midgard_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Hero_Midgard_Egg,12411,1,1 // HE Battle Manual +IG_Hero_Midgard_Egg,12901,1,1 // Insurance Package +IG_Hero_Midgard_Egg,12221,1,1 // Megaphone + +//! TODO: Confirm the rates +IG_Midgard_Celebration_Lucky_Egg,4145,1,1 // 1x Berzebub Card +IG_Midgard_Celebration_Lucky_Egg,4263,1,1 // 1x Incantation Samurai Card +IG_Midgard_Celebration_Lucky_Egg,4493,1,1 // 1x Sealed Tao Gunka Card +IG_Midgard_Celebration_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Midgard_Celebration_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Midgard_Celebration_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Midgard_Celebration_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Midgard_Celebration_Lucky_Egg,2168,1,1 // 1x Immune Shield +IG_Midgard_Celebration_Lucky_Egg,18673,1,1 // 1x Tare_Pope_ +IG_Midgard_Celebration_Lucky_Egg,18744,1,1 // 1x C World Star +IG_Midgard_Celebration_Lucky_Egg,5547,1,1 // 1x RJC Katusa Flower +IG_Midgard_Celebration_Lucky_Egg,5857,1,1 // 1x Cool FB Hat +IG_Midgard_Celebration_Lucky_Egg,5859,1,1 // 1x Glory FB Hat +IG_Midgard_Celebration_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Midgard_Celebration_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Midgard_Celebration_Lucky_Egg,17126,1,1 // 1x ASPD Intensifying Potion Box +IG_Midgard_Celebration_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Midgard_Celebration_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Midgard_Celebration_Lucky_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Midgard_Celebration_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Midgard_Celebration_Lucky_Egg,12411,1,1 // HE Battle Manual +IG_Midgard_Celebration_Lucky_Egg,12901,1,1 // Insurance Package +IG_Midgard_Celebration_Lucky_Egg,12221,1,1 // Megaphone + +//! TODO: Confirm the rates +IG_Rune_Midgard_Imortal_Lucky_Egg,4302,1,1 // 1x Tao Gunka Card +IG_Rune_Midgard_Imortal_Lucky_Egg,4497,1,1 // 1x Sealed Knight of Windstorm Card +IG_Rune_Midgard_Imortal_Lucky_Egg,18729,1,1 // MVP Basketball +IG_Rune_Midgard_Imortal_Lucky_Egg,14488,1,1 // Blue Pajamas Hat +IG_Rune_Midgard_Imortal_Lucky_Egg,18613,1,1 // Black Musang Hat +IG_Rune_Midgard_Imortal_Lucky_Egg,2979,1,1 // Strawberry Decoration +IG_Rune_Midgard_Imortal_Lucky_Egg,18930,1,1 // Gorilla Model Hat +IG_Rune_Midgard_Imortal_Lucky_Egg,2181,1,1 // Hervor +IG_Rune_Midgard_Imortal_Lucky_Egg,17262,1,1 // Ex Def Potion Box +IG_Rune_Midgard_Imortal_Lucky_Egg,6423,1,1 // Anger Seagod +IG_Rune_Midgard_Imortal_Lucky_Egg,12905,1,1 // Int Dish Box +IG_Rune_Midgard_Imortal_Lucky_Egg,13990,1,1 // Job Manual50 Box +IG_Rune_Midgard_Imortal_Lucky_Egg,12405,1,1 // Underripe Yggdrasil +IG_Rune_Midgard_Imortal_Lucky_Egg,12922,1,1 // Token of Siegfried Box +IG_Rune_Midgard_Imortal_Lucky_Egg,12221,1,1 // Megaphone Box +IG_Rune_Midgard_Imortal_Lucky_Egg,12900,1,1 // Battle Manual Box + +//! TODO: Confirm the rates +IG_Rise_Midgard_Lucky_Egg,4407,1,1 // 1x Randgris Card +IG_Rise_Midgard_Lucky_Egg,4480,1,1 // 1x Sealed Kiel Card +IG_Rise_Midgard_Lucky_Egg,4495,1,1 // 1x Sealed Amon Ra Card +IG_Rise_Midgard_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Rise_Midgard_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Rise_Midgard_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Rise_Midgard_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Rise_Midgard_Lucky_Egg,5315,1,1 // 1x Observer +IG_Rise_Midgard_Lucky_Egg,15041,1,1 // 1x Boitata Armor +IG_Rise_Midgard_Lucky_Egg,18630,1,1 // 1x Dep Alice Hat +IG_Rise_Midgard_Lucky_Egg,2573,1,1 // 1x Archangel Wing +IG_Rise_Midgard_Lucky_Egg,2589,1,1 // 1x Fallen Angel Wing +IG_Rise_Midgard_Lucky_Egg,18516,1,1 // 1x RTC 2nd Helm +IG_Rise_Midgard_Lucky_Egg,2910,1,1 // 1x Bakunawa Agimat Tattoo +IG_Rise_Midgard_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Rise_Midgard_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Rise_Midgard_Lucky_Egg,12209,1,1 // 1x Life Insurance +IG_Rise_Midgard_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Rise_Midgard_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Rise_Midgard_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick + +//! TODO: Confirm the rates +IG_Time_Travel_Lucky_Egg,4145,1,1 // 1x Berzebub Card +IG_Time_Travel_Lucky_Egg,4488,1,1 // 1x Sealed Dark Lord Card +IG_Time_Travel_Lucky_Egg,4498,1,1 // 1x Sealed Lady Tanee Card +IG_Time_Travel_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Time_Travel_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Time_Travel_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Time_Travel_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Time_Travel_Lucky_Egg,2190,1,1 // 1x Ancient Shield of Aeon +IG_Time_Travel_Lucky_Egg,18832,1,1 // 1x Rolf Von Gigue the 666 +IG_Time_Travel_Lucky_Egg,19649,1,1 // 1x Costume White Baby Cat Ears +IG_Time_Travel_Lucky_Egg,19607,1,1 // 1x Costume Love Chick Hat +IG_Time_Travel_Lucky_Egg,19589,1,1 // 1x Costume Fallen Angel Lost +IG_Time_Travel_Lucky_Egg,19661,1,1 // 1x Costume Sweet Bonnet +IG_Time_Travel_Lucky_Egg,18754,1,1 // 1x Blood Sucker +IG_Time_Travel_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Time_Travel_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Time_Travel_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Time_Travel_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Time_Travel_Lucky_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Time_Travel_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Time_Travel_Lucky_Egg,12221,1,1 // Megaphone + +//! TODO: Confirm the rates +IG_Solaris_Festival_Scroll,4403,1,1 // 1x Kiel Card +IG_Solaris_Festival_Scroll,4487,1,1 // 1x Sealed Ifrit Card +IG_Solaris_Festival_Scroll,4539,1,1 // 1x Sealed Fallen Bishop Card +IG_Solaris_Festival_Scroll,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Solaris_Festival_Scroll,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Solaris_Festival_Scroll,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Solaris_Festival_Scroll,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Solaris_Festival_Scroll,2565,1,1 // 1x Beach Towel [1] +IG_Solaris_Festival_Scroll,18863,1,1 // 1x Exorcist Robe [1] +IG_Solaris_Festival_Scroll,18891,1,1 // 1x Husky Hat [1] +IG_Solaris_Festival_Scroll,19729,1,1 // 1x Costume Neko Mimi Kafra +IG_Solaris_Festival_Scroll,5464,1,1 // 1x Japan White Lady Doll (Zaha_Doll_Hat) +IG_Solaris_Festival_Scroll,13444,1,1 // 1x Pala +IG_Solaris_Festival_Scroll,2188,1,1 // 1x Svalin +IG_Solaris_Festival_Scroll,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Solaris_Festival_Scroll,6439,1,3 // 3x Blessed_Armor_Ore +IG_Solaris_Festival_Scroll,14620,1,20 // 20x DEX Biscuit Stick +IG_Solaris_Festival_Scroll,14621,1,20 // 20x LUK Biscuit Stick +IG_Solaris_Festival_Scroll,14616,1,20 // 20x STR Biscuit Stick +IG_Solaris_Festival_Scroll,14617,1,20 // 20x VIT Biscuit Stick +IG_Solaris_Festival_Scroll,12221,1,1 // Megaphone +IG_Solaris_Festival_Scroll,12411,1,1 // HE Battle Manual +IG_Solaris_Festival_Scroll,12901,1,1 // Insurance Package + +//! TODO: Confirm the rates +IG_Midgard_Festival_Egg,4145,1,1 // 1x Berzebub Card +IG_Midgard_Festival_Egg,4499,1,1 // 1x Sealed Incantation Samurai Card +IG_Midgard_Festival_Egg,4493,1,1 // 1x Sealed Tao Gunka Card +IG_Midgard_Festival_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Midgard_Festival_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Midgard_Festival_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Midgard_Festival_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Midgard_Festival_Egg,19728,1,1 // 1x Outfit Tare Zonda +IG_Midgard_Festival_Egg,5873,1,1 // 1x Headgear of Siegfried +IG_Midgard_Festival_Egg,18908,1,1 // 1x Isabella Red Ear +IG_Midgard_Festival_Egg,18932,1,1 // 1x Rhino Model Hat +IG_Midgard_Festival_Egg,2181,1,1 // 1x Hervor +IG_Midgard_Festival_Egg,18878,1,1 // 1x Palace Guard Cap +IG_Midgard_Festival_Egg,19721,1,1 // 1x Outfit Darkness Helm +IG_Midgard_Festival_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Midgard_Festival_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Midgard_Festival_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Midgard_Festival_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Midgard_Festival_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Midgard_Festival_Egg,12221,1,1 // Megaphone +IG_Midgard_Festival_Egg,12411,1,1 // HE Battle Manual +IG_Midgard_Festival_Egg,12901,1,1 // Insurance Package +IG_Midgard_Festival_Egg,6423,1,1 // Seagod Anger + +//! TODO: Confirm the rates +IG_Midgard_Egg,4441,1,1 // 1x Fallen Bishop Hibram Card +IG_Midgard_Egg,4352,1,1 // 1x General Egnigem Cenia Card +IG_Midgard_Egg,4497,1,1 // 1x Sealed Knight of Windstorm Card +IG_Midgard_Egg,4498,1,1 // 1x Sealed Lady Tanee Card +IG_Midgard_Egg,18508,1,1 // 1x Garuda Hat +IG_Midgard_Egg,1549,1,1 // 1x Pilebunker +IG_Midgard_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Midgard_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Midgard_Egg,6234,1,1 // 1x Guarantee_Armor_7Up +IG_Midgard_Egg,6230,1,1 // 1x Guarantee_Weapon_7Up +IG_Midgard_Egg,12246,1,1 // Magic Card Album + +//! TODO: Confirm the rates +IG_Sweet_Midgard_Egg,4302,1,1 // 1x Tao Gunka Card +IG_Sweet_Midgard_Egg,4047,1,1 // 1x Ghosting Card +IG_Sweet_Midgard_Egg,4169,1,1 // 1x Dark Illusion Card +IG_Sweet_Midgard_Egg,4485,1,1 // 1x Sealed Gloom Card +IG_Sweet_Midgard_Egg,18670,1,1 // 1x Hankie In Mouth +IG_Sweet_Midgard_Egg,18516,1,1 // 1x RTC 2nd Helm +IG_Sweet_Midgard_Egg,18536,1,1 // 1x Foxtail +IG_Sweet_Midgard_Egg,6233,1,1 // 1x Guarantee_Armor_8Up +IG_Sweet_Midgard_Egg,6229,1,1 // 1x Guarantee_Weapon_8Up +IG_Sweet_Midgard_Egg,6234,1,1 // 1x Guarantee_Armor_7Up +IG_Sweet_Midgard_Egg,6230,1,1 // 1x Guarantee_Weapon_7Up +IG_Sweet_Midgard_Egg,6130,1,1 // 1x Loli Ruri Exchange Ticket +IG_Sweet_Midgard_Egg,12246,1,1 // Magic Card Album +IG_Sweet_Midgard_Egg,12259,1,1 // Miracle Tonic + +//! TODO: Confirm the rates +IG_Winter_Midgard_Egg,4441,1,1 // 1x Fallen Bishop Hibram Card +IG_Winter_Midgard_Egg,4482,1,1 // 1x Sealed_B_Ygnizem_Card +IG_Winter_Midgard_Egg,4493,1,1 // 1x Sealed Tao Gunka Card +IG_Winter_Midgard_Egg,19750,1,1 // 1x C Saint Frill Ribbon +IG_Winter_Midgard_Egg,19751,1,1 // 1x C Light Darkness Crown +IG_Winter_Midgard_Egg,20730,1,1 // 1x Loyalists Hood +IG_Winter_Midgard_Egg,22018,1,1 // 1x Shoes of Wise Man +IG_Winter_Midgard_Egg,5466,1,1 // 1x Wind Milestone +IG_Winter_Midgard_Egg,5778,1,1 // 1x Blue Arara +IG_Winter_Midgard_Egg,5414,1,1 // 1x Campfire Hat +IG_Winter_Midgard_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Winter_Midgard_Egg,6439,1,3 // 3x Blessed_Armor_Ore + +//! TODO: Confirm the rates +IG_Spring_Festival_Lucky_Egg,4263,1,1 // 1x Incantation Samurai Card +IG_Spring_Festival_Lucky_Egg,4487,1,1 // 1x Sealed Ifrit Card +IG_Spring_Festival_Lucky_Egg,4539,1,1 // 1x Sealed Fallen Bishop Card +IG_Spring_Festival_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Spring_Festival_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Spring_Festival_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Spring_Festival_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Spring_Festival_Lucky_Egg,18865,1,1 // 1x Sword Master Crown +IG_Spring_Festival_Lucky_Egg,18918,1,1 // 1x Long Octopus Balloon +IG_Spring_Festival_Lucky_Egg,1228,1,1 // 1x Combat Knife +IG_Spring_Festival_Lucky_Egg,18856,1,1 // 1x W King Tiger Doll Hat +IG_Spring_Festival_Lucky_Egg,22042,1,1 // 1x Talaria Shoes +IG_Spring_Festival_Lucky_Egg,15041,1,1 // 1x Boitata Armor +IG_Spring_Festival_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Spring_Festival_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Spring_Festival_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Spring_Festival_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Spring_Festival_Lucky_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Spring_Festival_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Spring_Festival_Lucky_Egg,12901,1,1 // Insurance Package +IG_Spring_Festival_Lucky_Egg,12221,1,1 // Megaphone +IG_Spring_Festival_Lucky_Egg,12411,1,1 // HE Battle Manual + +//! TODO: Confirm the rates +IG_Birthday_IdRO10th_Scroll,4305,1,1 // 1x Turtle General Card +IG_Birthday_IdRO10th_Scroll,4492,1,1 // 1x Sealed_Orc_Hero_Card +IG_Birthday_IdRO10th_Scroll,4488,1,1 // 1x Sealed_D_Lord_Card +IG_Birthday_IdRO10th_Scroll,18551,1,1 // 1x Costume Galaxy Circlet +IG_Birthday_IdRO10th_Scroll,18744,1,1 // 1x Costume World Star +IG_Birthday_IdRO10th_Scroll,18742,1,1 // 1x Costume Moon Star +IG_Birthday_IdRO10th_Scroll,18756,1,1 // 1x Black Shiba Inu Hat +IG_Birthday_IdRO10th_Scroll,2176,1,1 // 1x Dark Book +IG_Birthday_IdRO10th_Scroll,2959,1,1 // 1x Fidelity Necklace +IG_Birthday_IdRO10th_Scroll,18745,1,1 // 1x Choco Stick in Mouth +IG_Birthday_IdRO10th_Scroll,19574,1,1 // 1x Costume Lord of Death +IG_Birthday_IdRO10th_Scroll,18567,1,1 // 1x Stretched Nose + +//! TODO: Confirm the rates +IG_Requiem_Egg,4145,1,1 // 1x Berzebub Card +IG_Requiem_Egg,4384,1,1 // 1x Hydrolancer Card +IG_Requiem_Egg,4480,1,1 // 1x Sealed Kiel Card +IG_Requiem_Egg,18845,1,1 // 1x Banshee Master Kiss +IG_Requiem_Egg,18743,1,1 // 1x Costume Spirit of Chung E +IG_Requiem_Egg,2720,1,1 // 1x Medal of Honor Swordman +IG_Requiem_Egg,2721,1,1 // 1x Medal of Honor Thief +IG_Requiem_Egg,2722,1,1 // 1x Medal of Honor Acolyte +IG_Requiem_Egg,18530,1,1 // 1x The Desperado Mask +IG_Requiem_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Requiem_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Requiem_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Requiem_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up + +//! TODO: Confirm the rates +IG_Holy_Spirit_Egg,4549,1,1 // 1x Upgrade Maya Purple Card +IG_Holy_Spirit_Egg,4441,1,1 // 1x Fallen Bishop Hibram Card +IG_Holy_Spirit_Egg,2160,1,1 // 1x Giant Shield +IG_Holy_Spirit_Egg,18682,1,1 // 1x Teardrop +IG_Holy_Spirit_Egg,18702,1,1 // 1x Shaving Cream +IG_Holy_Spirit_Egg,19538,1,1 // 1x Full Moon +IG_Holy_Spirit_Egg,1586,1,1 // 1x Velum_Bible +IG_Holy_Spirit_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Holy_Spirit_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Holy_Spirit_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Holy_Spirit_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Holy_Spirit_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Holy_Spirit_Egg,6439,1,3 // 3x Blessed_Armor_Ore + +//! TODO: Confirm the rates +IG_Memorial_Garuda_Lucky_Egg,4145,1,1 // 1x Berzebub Card +IG_Memorial_Garuda_Lucky_Egg,4499,1,1 // 1x Sealed Incantation Samurai Card +IG_Memorial_Garuda_Lucky_Egg,4480,1,1 // 1x Sealed Kiel Card +IG_Memorial_Garuda_Lucky_Egg,15041,1,1 // 1x Boitata Armor +IG_Memorial_Garuda_Lucky_Egg,5579,1,1 // 1x Wanderer's Sakkat +IG_Memorial_Garuda_Lucky_Egg,20706,1,1 // 1x Amistr Bag +IG_Memorial_Garuda_Lucky_Egg,2579,1,1 // 1x Magic Stole +IG_Memorial_Garuda_Lucky_Egg,2985,1,1 // 1x Gyges Ring +IG_Memorial_Garuda_Lucky_Egg,18508,1,1 // 1x Garuda Hat +IG_Memorial_Garuda_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Memorial_Garuda_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Memorial_Garuda_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Memorial_Garuda_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Memorial_Garuda_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Memorial_Garuda_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore + +//! TODO: Confirm the rates +IG_Miracle_Lucky_Egg,4263,1,1 // 1x Incantation Samurai Card +IG_Miracle_Lucky_Egg,4486,1,1 // 1x Sealed Berzebub Card +IG_Miracle_Lucky_Egg,4497,1,1 // 1x Sealed Knight of Windstorm Card +IG_Miracle_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Miracle_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Miracle_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Miracle_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Miracle_Lucky_Egg,18673,1,1 // 1x Tare Pope +IG_Miracle_Lucky_Egg,5379,1,1 // 1x Balloon Hat +IG_Miracle_Lucky_Egg,18625,1,1 // 1x Rocket Helm +IG_Miracle_Lucky_Egg,15088,1,1 // 1x School Uniform +IG_Miracle_Lucky_Egg,18748,1,1 // 1x Gold Ingot Poring Hat +IG_Miracle_Lucky_Egg,18742,1,1 // 1x MoonStar +IG_Miracle_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Miracle_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Miracle_Lucky_Egg,12902,1,1 // 1x Bubble Gum Box +//IG_Miracle_Lucky_Egg,,1,1 // ?? Yggdrasil Berry + +//! TODO: Confirm the rates +IG_Legend_Hero_Lucky_Egg,4145,1,1 // 1x Berzebub Card +IG_Legend_Hero_Lucky_Egg,4499,1,1 // 1x Sealed Incantation Samurai Card +IG_Legend_Hero_Lucky_Egg,4498,1,1 // 1x Sealed Lady Tanee Card +IG_Legend_Hero_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Legend_Hero_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Legend_Hero_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Legend_Hero_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Legend_Hero_Lucky_Egg,13085,1,1 // 1x Volcano Knife +IG_Legend_Hero_Lucky_Egg,18813,1,1 // 1x New Wave Sunglasses +IG_Legend_Hero_Lucky_Egg,2949,1,1 // 1x Silversmith Bracelet +IG_Legend_Hero_Lucky_Egg,2181,1,1 // 1x Hervor +IG_Legend_Hero_Lucky_Egg,2020,1,1 // 1x Jormungand +IG_Legend_Hero_Lucky_Egg,18570,1,1 // 1x Ancient Old Deco +IG_Legend_Hero_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Legend_Hero_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Legend_Hero_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Legend_Hero_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Legend_Hero_Lucky_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Legend_Hero_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Legend_Hero_Lucky_Egg,12901,1,1 // Insurance Package +IG_Legend_Hero_Lucky_Egg,12902,1,1 // 1x Bubble Gum Box + +//! TODO: Confirm the rates +IG_Blessing_Midgard_Lucky_Egg,4407,1,1 // 1x Randgris Card +IG_Blessing_Midgard_Lucky_Egg,4480,1,1 // 1x Sealed Kiel Card +IG_Blessing_Midgard_Lucky_Egg,4481,1,1 // 1x Sealed Ktullanux Card +IG_Blessing_Midgard_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Blessing_Midgard_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Blessing_Midgard_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Blessing_Midgard_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Blessing_Midgard_Lucky_Egg,19752,1,1 // 1x C Shelter Wing Ears +IG_Blessing_Midgard_Lucky_Egg,18664,1,1 // 1x Blind Glasses +IG_Blessing_Midgard_Lucky_Egg,20724,1,1 // 1x Love Dad Wings 2012 +IG_Blessing_Midgard_Lucky_Egg,5677,1,1 // 1x Scorpio Diadem +IG_Blessing_Midgard_Lucky_Egg,2168,1,1 // 1x Immuned Shield +IG_Blessing_Midgard_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Blessing_Midgard_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Blessing_Midgard_Lucky_Egg,12902,1,1 // 1x Bubble Gum Box +IG_Blessing_Midgard_Lucky_Egg,12901,1,1 // Insurance Package + +//! TODO: Confirm the rates +IG_Chronosian_Lucky_Egg,4481,1,1 // 1x Sealed Ktullanux Card +IG_Chronosian_Lucky_Egg,4374,1,1 // 1x Vesper Card +IG_Chronosian_Lucky_Egg,4302,1,1 // 1x Tao Gunka Card +IG_Chronosian_Lucky_Egg,4047,1,1 // 1x Ghosting Card +IG_Chronosian_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Chronosian_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Chronosian_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Chronosian_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Chronosian_Lucky_Egg,6233,1,1 // 1x Guarantee_Armor_8Up +IG_Chronosian_Lucky_Egg,6229,1,1 // 1x Guarantee_Weapon_8Up +IG_Chronosian_Lucky_Egg,1682,1,1 // 1x Shadow_Staff +IG_Chronosian_Lucky_Egg,20220,1,1 // 1x C_Dark_Night_Veil +IG_Chronosian_Lucky_Egg,5943,1,1 // 1x Owl_viscount_Silk_Hat +IG_Chronosian_Lucky_Egg,1940,1,1 // 1x Trumpet_Shell +IG_Chronosian_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Chronosian_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Chronosian_Lucky_Egg,17126,1,1 // 1x ASPD Intensifying Potion Box +IG_Chronosian_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Chronosian_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Chronosian_Lucky_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Chronosian_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Chronosian_Lucky_Egg,14619,1,20 // 20x INT Biscuit Stick +IG_Chronosian_Lucky_Egg,14618,1,20 // 20x AGI Biscuit Stick + +//! TODO: Confirm the rates +IG_Sanctuary_Lucky_Egg,4399,1,1 // 1x Memory of Thanatos Card +IG_Sanctuary_Lucky_Egg,4305,1,1 // 1x Turtle General Card +IG_Sanctuary_Lucky_Egg,4499,1,1 // 1x Sealed Incantation Samurai Card +IG_Sanctuary_Lucky_Egg,4054,1,1 // 1x Angeling_Card +IG_Sanctuary_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Sanctuary_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Sanctuary_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Sanctuary_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Sanctuary_Lucky_Egg,6233,1,1 // 1x Guarantee_Armor_8Up +IG_Sanctuary_Lucky_Egg,6229,1,1 // 1x Guarantee_Weapon_8Up +IG_Sanctuary_Lucky_Egg,22072,1,1 // 1x Hikingboots +IG_Sanctuary_Lucky_Egg,20218,1,1 // 1x C_Spell_Circuit +IG_Sanctuary_Lucky_Egg,21019,1,1 // 1x Onimaru +IG_Sanctuary_Lucky_Egg,16043,1,1 // 1x Meteor_Strike +IG_Sanctuary_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Sanctuary_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Sanctuary_Lucky_Egg,17126,1,1 // 1x ASPD Intensifying Potion Box +IG_Sanctuary_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Sanctuary_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Sanctuary_Lucky_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Sanctuary_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Sanctuary_Lucky_Egg,14619,1,20 // 20x INT Biscuit Stick +IG_Sanctuary_Lucky_Egg,14618,1,20 // 20x AGI Biscuit Stick + +//! TODO: Confirm the rates +IG_Cyborg_Lucky_Egg,4263,1,1 // 1x Incantation Samurai Card +IG_Cyborg_Lucky_Egg,4403,1,1 // 1x Kiel Card +IG_Cyborg_Lucky_Egg,4486,1,1 // 1x Sealed Berzebub Card +IG_Cyborg_Lucky_Egg,4488,1,1 // 1x Sealed Dark Lord Card +IG_Cyborg_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Cyborg_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Cyborg_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Cyborg_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Cyborg_Lucky_Egg,6233,1,1 // 1x Guarantee_Armor_8Up +IG_Cyborg_Lucky_Egg,6229,1,1 // 1x Guarantee_Weapon_8Up +IG_Cyborg_Lucky_Egg,20315,1,1 // 1x C_Analyze_Eye +IG_Cyborg_Lucky_Egg,20316,1,1 // 1x C_Seraph_Wing_Helm +IG_Cyborg_Lucky_Egg,22082,1,1 // 1x Polyhedron_Shoes +IG_Cyborg_Lucky_Egg,28372,1,1 // 1x Imperial_Ring +IG_Cyborg_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Cyborg_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Cyborg_Lucky_Egg,17126,1,1 // 1x ASPD Intensifying Potion Box +IG_Cyborg_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Cyborg_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Cyborg_Lucky_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Cyborg_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Cyborg_Lucky_Egg,14619,1,20 // 20x INT Biscuit Stick +IG_Cyborg_Lucky_Egg,14618,1,20 // 20x AGI Biscuit Stick + +//! TODO: Confirm the rates +IG_Undine_Lucky_Egg,4399,1,1 // 1x Memory of Thanatos Card +IG_Undine_Lucky_Egg,4503,1,1 // 1x Sealed Vesper Card +IG_Undine_Lucky_Egg,4361,1,1 // 1x MasterSmith Card +IG_Undine_Lucky_Egg,4497,1,1 // 1x Sealed Knight of Windstorm Card +IG_Undine_Lucky_Egg,6239,1,1 // 1x Guarantee_Armor_11Up +IG_Undine_Lucky_Egg,6238,1,1 // 1x Guarantee_Weapon_11Up +IG_Undine_Lucky_Egg,6232,1,1 // 1x Guarantee_Armor_9Up +IG_Undine_Lucky_Egg,6228,1,1 // 1x Guarantee_Weapon_9Up +IG_Undine_Lucky_Egg,6233,1,1 // 1x Guarantee_Armor_8Up +IG_Undine_Lucky_Egg,6229,1,1 // 1x Guarantee_Weapon_8Up +IG_Undine_Lucky_Egg,19082,1,1 // 1x Bio_Protector +IG_Undine_Lucky_Egg,28903,1,1 // 1x Scutum +IG_Undine_Lucky_Egg,20325,1,1 // 1x C_Little_Aquarium +IG_Undine_Lucky_Egg,20324,1,1 // 1x C_Pigeon_Hat +IG_Undine_Lucky_Egg,6438,1,3 // 3x Blessed_Weapon_Ore +IG_Undine_Lucky_Egg,6439,1,3 // 3x Blessed_Armor_Ore +IG_Undine_Lucky_Egg,17315,1,1 // 1x Lucky Silvervine Fruit Box(10) +IG_Undine_Lucky_Egg,14620,1,20 // 20x DEX Biscuit Stick +IG_Undine_Lucky_Egg,14621,1,20 // 20x LUK Biscuit Stick +IG_Undine_Lucky_Egg,14616,1,20 // 20x STR Biscuit Stick +IG_Undine_Lucky_Egg,14617,1,20 // 20x VIT Biscuit Stick +IG_Undine_Lucky_Egg,14619,1,20 // 20x INT Biscuit Stick +IG_Undine_Lucky_Egg,14618,1,20 // 20x AGI Biscuit Stick diff --git a/db/re/item_trade.txt b/db/re/item_trade.txt index cd13c697a8..3f68ee95ca 100644 --- a/db/re/item_trade.txt +++ b/db/re/item_trade.txt @@ -20,3251 +20,3824 @@ // Balmung cannot be dropped, traded, or placed in Guild Storage (1+2+64). // Only groups of group-level 50 and up can override this setting. -547,499,100 // White_Slim_Potion -598,32,100 // Light_Red_Pot -599,32,100 // Light_Orange_Pot -603,499,100 // Old_Blue_Box -617,499,100 // Old_Violet_Box -744,506,100 // Bunch_Of_Flowers -745,506,100 // Wedding_Bouquet -1177,32,100 // Muramash -1183,8,100 // BF_Two_Handed_Sword1 -1184,8,100 // BF_Two_Handed_Sword2 -1187,8,100 // Krieger_Twohand_Sword1 -1192,8,100 // P_Slayer1 -1193,8,100 // P_Slayer2 -1197,8,100 // P_Slayer3 -1243,8,100 // Novice_Knife -1272,32,100 // Scratcher -1279,8,100 // BF_Katar1 -1280,8,100 // BF_Katar2 -1281,8,100 // Krieger_Katar1 -1282,8,100 // Krieger_Katar2 -1289,8,100 // P_Katar1 -1296,8,100 // Metal_Katar -//1299,8,100 // -1310,8,100 // Krieger_Onehand_Axe1 -1313,8,100 // Tourist_Axe -//1319,8,100 // -1379,8,100 // BF_Two_Handed_Axe1 -1380,8,100 // BF_Two_Handed_Axe2 -1382,8,100 // Krieger_Twohand_Axe1 -1391,8,100 // P_Two_Handed_Axe1 -1398,8,100 // Metal_Two_Handed_Axe -//1399,8,100 // -1423,32,100 // Pole_XO -1425,8,100 // BF_Spear1 -1426,8,100 // Krieger_Onehand_Spear1 -1428,32,100 // Long_Horn_M -1429,32,100 // Hunting_Spear_M -1434,8,100 // P_Spear1 -//1437,8,100 // -1482,8,100 // BF_Lance1 -1486,8,100 // Krieger_Twohand_Spear1 -1493,8,100 // Metal_Lance -//1495,8,100 // -1536,32,100 // Good_Morning_Star -1542,8,100 // BF_Morning_Star1 -1543,8,100 // BF_Morning_Star2 -1546,8,100 // Krieger_Onehand_Mace1 -1566,32,100 // Diary_Of_Great_Basil -1574,8,100 // BF_Book1 -1575,8,100 // BF_Book2 -1576,8,100 // Krieger_Book1 -1577,8,100 // Krieger_Book2 -1579,32,100 // Death_Note_M -1583,8,100 // P_Book1 -1588,8,100 // Metal_Book -//1591,8,100 // -//1598,8,100 // -1627,32,100 // Staffy -1632,8,100 // BF_Staff1 -1633,8,100 // BF_Staff2 -1634,8,100 // BF_Staff3 -1635,8,100 // BF_Staff4 -1640,8,100 // Krieger_Onehand_Staff1 -1641,8,100 // Krieger_Onehand_Staff2 -1644,32,100 // Piercing_Staff_M -1645,32,100 // Lich_Bone_Wand_M -1650,8,100 // P_Staff1 -1651,8,100 // P_Staff2 -1652,8,100 // Tourist_Staff -1658,8,100 // P_Staff3 -//1667,8,100 // -1735,32,100 // Kkakkung -1738,8,100 // BF_Bow1 -1739,8,100 // BF_Bow2 -1743,8,100 // Krieger_Bow1 -1747,8,100 // P_Bow1 -1748,8,100 // P_Bow2 -1749,8,100 // Tourist_Bow -1823,8,100 // BF_Knuckle1 -1824,8,100 // BF_Knuckle2 -1826,8,100 // Krieger_Knuckle1 -1827,8,100 // Krieger_Knuckle2 -1831,8,100 // P_Knuckle1 -//1834,8,100 // -1921,32,100 // Guh_Moon_Gom -1923,8,100 // BF_Instrument1 -1924,8,100 // BF_Instrument2 -1927,8,100 // Krieger_Instrument1 -1931,8,100 // P_Guitar1 -//1932,8,100 // -1938,40,100 // Infinity_Violin -1975,32,100 // Queen_Is_Whip -1977,8,100 // BF_Whip1 -1978,8,100 // BF_Whip2 -1981,8,100 // Krieger_Whip1 -1986,8,100 // P_Tail1 -//1987,8,100 // -1994,40,100 // Infinity_Whip -2002,8,100 // Krieger_Twohand_Staff1 -2003,32,100 // Destruction_Rod_M -2018,8,100 // Metal_Staff -//2019,8,100 // -2024,40,100 // Infinity_Two-handed_Stick -2112,8,100 // Novice_Guard -2127,32,100 // Secular_Mission -2145,40,100 // Time_Keepr_Shield -//2178,8,100 // -//2179,8,100 // -//2180,8,100 // -2352,8,100 // Novice_Plate -2358,32,100 // Dress_Of_Angel -2368,40,100 // Golden_Armor -2370,32,100 // Used_Mage_Coat -2376,8,100 // Assaulter_Plate -2377,8,100 // Elite_Engineer_Armor -2378,8,100 // Assassin_Robe -2379,8,100 // Warlock_Battle_Robe -2380,8,100 // Medic_Robe -2381,8,100 // Elite_Archer_Suit -2382,8,100 // Elite_Shooter_Suit -2393,8,100 // N_Adventurer's_Suit -2394,8,100 // Krieger_Suit1 -2395,8,100 // Krieger_Suit2 -2396,8,100 // Krieger_Suit3 -2398,32,100 // Sniping_Suit_M -2414,8,100 // Novice_Boots -2427,40,100 // Golden_Shoes -2429,8,100 // Iron_Boots01 -2430,8,100 // Iron_Boots02 -2431,32,100 // Valley_Shoes -2435,8,100 // Battle_Greave -2436,8,100 // Combat_Boots -2437,8,100 // Battle_Boots -2438,40,100 // Paw_Of_Cat -2443,8,100 // Fish_Shoes -2444,8,100 // Krieger_Shoes1 -2445,8,100 // Krieger_Shoes2 -2446,8,100 // Krieger_Shoes3 -2449,32,100 // Variant_Shoes_M -2455,40,100 // Time_Keepr_Boots -2456,8,100 // Para_Team_Boots1 -2457,8,100 // Para_Team_Boots2 -2458,8,100 // Para_Team_Boots3 -2473,8,100 // Para_Team_Boots4 -//2496,8,100 // -//2497,8,100 // -//2498,8,100 // -2510,8,100 // Novice_Hood -2534,32,100 // Ruffler -2538,8,100 // Commander_Manteau -2539,8,100 // Commander_Manteau_ -2540,8,100 // Sheriff_Manteau -2549,8,100 // Krieger_Muffler1 -2551,32,100 // Rider_Insignia_M -2552,32,100 // Mithril_Magic_Cape_M -2559,40,100 // Time_Keepr_Manteau -2560,8,100 // Para_Team_Manteau1 -2568,40,100 // Muffler_Of_Roki -2571,8,100 // Para_Team_Manteau2 +547,8,100 // White_Slim_Potion +598,475,100 // Light_Red_Pot +599,475,100 // Light_Orange_Pot +603,8,100 // Old_Blue_Box +617,8,100 // Old_Violet_Box +671,507,100 // Gold_Coin +675,507,100 // Silver_Coin +744,1,100 // Bunch_Of_Flowers +745,1,100 // Wedding_Bouquet +1173,507,100 // Muramasa_C +1174,507,100 // Executioner_C +1177,475,100 // Muramash +1183,499,100 // BF_Two_Handed_Sword1 +1184,499,100 // BF_Two_Handed_Sword2 +1187,499,100 // Krieger_Twohand_Sword1 +1190,507,100 // Claymore_C +1192,499,100 // P_Slayer1 +1193,499,100 // P_Slayer2 +1197,499,100 // P_Slayer3 +1198,507,100 // Hairtail +1243,499,100 // Novice_Knife +1267,507,100 // Infiltrator_C +1272,475,100 // Scratcher +1273,507,100 // Bloody_Roar_C +1274,507,100 // Unholy_Touch_C +1279,499,100 // BF_Katar1 +1280,499,100 // BF_Katar2 +1281,499,100 // Krieger_Katar1 +1282,499,100 // Krieger_Katar2 +1283,507,100 // Katar_Of_Speed +1286,507,100 // Jamadhar_C +1288,507,100 // Bloody_Fear_C +1289,499,100 // P_Katar1 +1296,499,100 // Metal_Katar +//1299,499,100 // +1310,499,100 // Krieger_Onehand_Axe1 +1312,507,100 // Orcish_Axe_C +1313,499,100 // Tourist_Axe +//1319,499,100 // +1372,507,100 // Right_Epsilon_C +1373,507,100 // Brood_Axe_C +1374,507,100 // Tomahawk_C +1378,507,100 // Great_Axe_C +1379,499,100 // BF_Two_Handed_Axe1 +1380,499,100 // BF_Two_Handed_Axe2 +1382,499,100 // Krieger_Twohand_Axe1 +1386,507,100 // Doom_Slayer_I +1388,507,100 // Two_Handed_Axe_C +1391,499,100 // P_Two_Handed_Axe1 +1398,499,100 // Metal_Two_Handed_Axe +//1399,499,100 // +1419,507,100 // Pole_Axe_C +1423,475,100 // Pole_XO +1424,507,100 // Skewer_C +1425,499,100 // BF_Spear1 +1426,499,100 // Krieger_Onehand_Spear1 +1427,507,100 // Spear_Of_Excellent +1428,475,100 // Long_Horn_M +1429,475,100 // Hunting_Spear_M +1430,507,100 // Pike_C +1434,499,100 // P_Spear1 +//1437,499,100 // +1482,499,100 // BF_Lance1 +1486,499,100 // Krieger_Twohand_Spear1 +1487,507,100 // Lance_C +1488,507,100 // Ahlspiess_C +1489,507,100 // Spearfish_ +1493,499,100 // Metal_Lance +//1495,499,100 // +1533,507,100 // Warrior_Balmung +1534,507,100 // Spanner_C +1536,475,100 // Good_Morning_Star +1537,507,100 // Quadrille_C +1542,499,100 // BF_Morning_Star1 +1543,499,100 // BF_Morning_Star2 +1546,499,100 // Krieger_Onehand_Mace1 +1547,507,100 // Mace_Of_Madness +1563,507,100 // Diary_Of_Great_Sage_C +1566,475,100 // Diary_Of_Great_Basil +1567,507,100 // Hardback_C +1574,499,100 // BF_Book1 +1575,499,100 // BF_Book2 +1576,499,100 // Krieger_Book1 +1577,499,100 // Krieger_Book2 +1578,507,100 // Book_Of_Prayer +1579,475,100 // Death_Note_M +1580,507,100 // Encyclopedia_C +1583,499,100 // P_Book1 +1588,499,100 // Metal_Book +//1591,499,100 // +//1598,499,100 // +1623,507,100 // Mighty_Staff_C +1627,475,100 // Staffy +1628,507,100 // Survival_Rod_C +1632,499,100 // BF_Staff1 +1633,499,100 // BF_Staff2 +1634,499,100 // BF_Staff3 +1635,499,100 // BF_Staff4 +1638,507,100 // Healing_Staff_C +1640,499,100 // Krieger_Onehand_Staff1 +1641,499,100 // Krieger_Onehand_Staff2 +1642,507,100 // Staff_Of_Darkness +1644,475,100 // Piercing_Staff_M +1645,475,100 // Lich_Bone_Wand_M +1650,499,100 // P_Staff1 +1651,499,100 // P_Staff2 +1652,499,100 // Tourist_Staff +1653,507,100 // Staff_Of_Healing_C +1658,499,100 // P_Staff3 +//1667,499,100 // +1703,507,100 // Bow__ +1728,507,100 // Balistar_C +1729,507,100 // Bow_Of_Rudra_C +1735,475,100 // Kkakkung +1738,499,100 // BF_Bow1 +1739,499,100 // BF_Bow2 +1743,499,100 // Krieger_Bow1 +1744,507,100 // Bow_Of_Evil +1747,499,100 // P_Bow1 +1748,499,100 // P_Bow2 +1749,499,100 // Tourist_Bow +1817,507,100 // Kaiser_Knuckle_C +1823,499,100 // BF_Knuckle1 +1824,499,100 // BF_Knuckle2 +1826,499,100 // Krieger_Knuckle1 +1827,499,100 // Krieger_Knuckle2 +1828,507,100 // Monk_Knuckle +1829,507,100 // Fist_C +1831,499,100 // P_Knuckle1 +//1834,499,100 // +1921,475,100 // Guh_Moon_Gom +1923,499,100 // BF_Instrument1 +1924,499,100 // BF_Instrument2 +1927,499,100 // Krieger_Instrument1 +1928,507,100 // Berserk_Guitar_I +1929,507,100 // Guitar_C +1931,499,100 // P_Guitar1 +//1932,499,100 // +1938,467,100 // Infinity_Violin +1975,475,100 // Queen_Is_Whip +1977,499,100 // BF_Whip1 +1978,499,100 // BF_Whip2 +1981,499,100 // Krieger_Whip1 +1982,507,100 // Phenomena_Whip +1983,507,100 // Rante_C +1986,499,100 // P_Tail1 +//1987,499,100 // +1994,467,100 // Infinity_Whip +2002,499,100 // Krieger_Twohand_Staff1 +2003,475,100 // Destruction_Rod_M +2018,499,100 // Metal_Staff +//2019,499,100 // +2024,467,100 // Infinity_Two-handed_Stick +2112,499,100 // Novice_Guard +2127,475,100 // Secular_Mission +2132,507,100 // Shelter_Resistance +2136,507,100 // Cracked_Buckler +2137,507,100 // Valkyrja's_Shield_C +2140,507,100 // Energy_Rune_Guard +2145,467,100 // Time_Keepr_Shield +2152,507,100 // Anti_Demon_Shield_C +//2178,499,100 // +//2179,499,100 // +//2180,499,100 // +2352,499,100 // Novice_Plate +2358,475,100 // Dress_Of_Angel +2368,467,100 // Golden_Armor +2369,507,100 // Freyja_Overcoat +2370,475,100 // Used_Mage_Coat +2376,499,100 // Assaulter_Plate +2377,499,100 // Elite_Engineer_Armor +2378,499,100 // Assassin_Robe +2379,499,100 // Warlock_Battle_Robe +2380,499,100 // Medic_Robe +2381,499,100 // Elite_Archer_Suit +2382,499,100 // Elite_Shooter_Suit +2384,507,100 // Spritual_Tunic +2385,507,100 // Recuperative_Armor +2392,507,100 // Old_Pant +2393,499,100 // N_Adventurer's_Suit +2394,499,100 // Krieger_Suit1 +2395,499,100 // Krieger_Suit2 +2396,499,100 // Krieger_Suit3 +2398,475,100 // Sniping_Suit_M +2414,499,100 // Novice_Boots +2427,467,100 // Golden_Shoes +2428,507,100 // Freyja_Boots +2429,499,100 // Iron_Boots01 +2430,499,100 // Iron_Boots02 +2431,475,100 // Valley_Shoes +2435,499,100 // Battle_Greave +2436,499,100 // Combat_Boots +2437,499,100 // Battle_Boots +2438,467,100 // Paw_Of_Cat +2439,507,100 // Refresh_Shoes +2442,507,100 // Boots_Perforated +2443,499,100 // Fish_Shoes +2444,499,100 // Krieger_Shoes1 +2445,499,100 // Krieger_Shoes2 +2446,499,100 // Krieger_Shoes3 +2449,475,100 // Variant_Shoes_M +2455,467,100 // Time_Keepr_Boots +2456,499,100 // Para_Team_Boots1 +2457,499,100 // Para_Team_Boots2 +2458,499,100 // Para_Team_Boots3 +2463,507,100 // Feral_Boots +2473,499,100 // Para_Team_Boots4 +//2496,499,100 // +//2497,499,100 // +//2498,499,100 // +2510,499,100 // Novice_Hood +2533,507,100 // Freyja_Cape +2534,475,100 // Ruffler +2535,507,100 // Cloak_Of_Survival_C +2538,499,100 // Commander_Manteau +2539,499,100 // Commander_Manteau_ +2540,499,100 // Sheriff_Manteau +2543,507,100 // Sylphid_Manteau +2547,507,100 // Cheap_Running_Shirts +2548,507,100 // Muffler_C +2549,499,100 // Krieger_Muffler1 +2551,475,100 // Rider_Insignia_M +2552,475,100 // Mithril_Magic_Cape_M +2559,467,100 // Time_Keepr_Manteau +2560,499,100 // Para_Team_Manteau1 +2564,507,100 // Feral_Tail +2566,507,100 // Half_Asprika +2568,467,100 // Muffler_Of_Roki +2571,499,100 // Para_Team_Manteau2 2634,507,100 // Bridegroom_Ring 2635,507,100 // Bride_Ring -2668,8,100 // Women's_Glory -2670,32,100 // Ring_Of_Longing -2686,32,100 // Elven_Ears_C -2704,40,100 // Golden_Accessory -2705,40,100 // Golden_Accessory2 -2707,32,100 // GUSLI -2708,32,100 // Chinese_Handicraft -2720,8,100 // Medal_Swordman -2721,8,100 // Medal_Thief -2722,8,100 // Medal_Acolyte -2723,8,100 // Medal_Mage -2724,8,100 // Medal_Archer -2725,8,100 // Medal_Merchant -2730,40,100 // Morroc_Seal -2731,40,100 // Morroc_Charm_Stone -2732,40,100 // Morroc_Ring -2733,8,100 // Medal_Gunner -2751,40,100 // Academy_Badge -2766,8,100 // Swordman_Figure -2767,8,100 // Acolyte_Figure -2768,8,100 // Mage_Figure -2769,8,100 // Archer_Figure -2770,8,100 // Thief_Figure -2771,8,100 // Merchant_Figure -2772,8,100 // Krieger_Ring1 -2773,8,100 // Krieger_Ring2 -2774,8,100 // Krieger_Ring3 -2777,506,100 // Shaman_Ring -2778,506,100 // Shaman_Earing -2779,506,100 // Dark_Knight_Belt -2780,506,100 // Dark_Knight_Glove -2781,506,100 // Aumdura's_Grace -2782,32,100 // Ring_Of_Wise_King -2785,32,100 // Orleans_Glove_M -2795,8,100 // Green_Apple_Ring -2798,8,100 // Will_Of_Exhausted_Angel -2819,8,100 // Swordman_Manual -2820,8,100 // Thief_Manual -2821,8,100 // Acolyte_Manual -2822,8,100 // Archer_Manual -2823,8,100 // Merchant_Manual -2823,8,100 // Merchant_Manual -2824,8,100 // Mage_Manual -2825,506,100 // Shaman_EaringB -2826,506,100 // Dark_Knight_BeltB -2827,506,100 // Dark_Knight_GloveB -2844,32,100 // El_Dicastes_Light -2858,32,100 // Pendant_Of_Guardian -2864,8,100 // Light_Of_Cure -2865,8,100 // Seal_Of_Cathedral -2866,8,100 // Ring_Of_Archbishop -2872,32,100 // G_Honor_Certificate -2875,32,100 // RO_Appreciation_Ring -2885,8,100 // Mother_Heart -2897,32,100 // 2011RWC_Necklace_J -2915,40,100 // Ettlang_Keepsake -2916,32,100 // Fairy_Wing -2940,8,100 // Ninja_Manual -2941,8,100 // Gunslinger_Manual -2942,8,100 // Taekwon_Manual -//2944,8,100 // -//2945,8,100 // -//2946,8,100 // -2981,40,100 // Warrior's_Ring -2997,32,100 // RWC_Gold_Brooch -2999,32,100 // RWC_Brooch -5106,40,100 // Cone_Hat_INA -5132,32,100 // Angeling_Hat -5149,8,100 // Silver_Tiara -5154,32,100 // Sunglasses_F -5155,32,100 // Granpa_Beard_F -5156,32,100 // Flu_Mask_F -5179,8,100 // Gold_Tiara -5254,32,100 // Deviling_Hat -5295,40,100 // Golden_Bandana -5308,32,100 // Brazilian_Flag_Hat -5309,32,100 // Mahican -5318,40,100 // Poring_Party_Hat -5320,32,100 // Champion_Wreath -5322,32,100 // Scarf -5323,32,100 // Misstrance_Crown -5357,32,100 // Wings_Of_Victory -5368,32,100 // White_Wing -5369,32,100 // Dark_Wing -5406,40,100 // Academy_Freshman_Hat -5407,40,100 // Academy_Graduating_Cap -5410,8,100 // Bread_Bag2 -5412,40,100 // Sweet_Candy -5413,40,100 // Popcorn_Hat -5414,40,100 // Campfire_Hat -5423,498,100 // Lovecap_China -5428,32,100 // Bread_Bag1 -5430,506,100 // Sacred_Torch_Coronet -5450,32,100 // Sun_Cap -5451,32,100 // Dragonhelm_Gold -5451,32,100 // Dragonhelm_Gold -5452,32,100 // Dragonhelm_Silver -5452,32,100 // Dragonhelm_Silver -5453,32,100 // Dragonhelm_Copper -5453,32,100 // Dragonhelm_Copper -5460,8,100 // Adv_Dragon_Skull -5461,8,100 // Adv_Whisper_Mask -5479,506,100 // Shaman's_Hair_Ornament -5480,506,100 // Bizofnil_Wing_Deco -5481,506,100 // Hermose_Cap -5482,506,100 // Dark_Knight_Mask -5483,506,100 // Odin_Mask -5544,40,100 // Time_Keeper_Hat -5551,8,100 // Holy_Egg_Hat -5577,506,100 // Dark_Knight_MaskB -5583,8,100 // Para_Team_Hat1 -5587,8,100 // Mosquito_Coil_1Use -5592,32,100 // Sigrun's_Wings -5603,32,100 // RTC_Winner_Only -5604,32,100 // RTC_Second_Best -5605,32,100 // RTC_Third_Best -5668,8,100 // Weird_Pumpkin_Hat -5746,40,100 // Rune_Circlet -5747,40,100 // Mitra -5748,40,100 // Sniper_Goggle -5749,40,100 // Driver_Band -5750,40,100 // Shadow_Handicraft -5751,40,100 // Minstrel_Song_Hat -5752,40,100 // Midas_Whisper -5753,40,100 // Magic_Stone_Hat -5754,40,100 // Blazing_Soul -5755,40,100 // Silent_Executer -5756,40,100 // Wind_Whisper -5757,40,100 // Schmidt_Helm -5758,40,100 // Dying_Swan -5760,40,100 // Driver_Band_ -5786,32,100 // Ancient_Elven_Ear -5788,32,100 // 3D_Glasses -5796,8,100 // Cheer_Scarf -5805,32,100 // Victorious_Coronet -5806,32,100 // Poem_Natalia_Hat -5809,40,100 // Boom_Boom_Hat -5814,8,100 // Ati_Atihan_Hat3 -5820,40,100 // Black_Elven_Ears -5821,40,100 // Gold_Tulip_Hairpin -5822,8,100 // Love_Chick_Hat -5823,40,100 // Love_Arrow -5855,8,100 // Fishing_Rod -5864,32,100 // Shadow_Booster -6000,32,100 // Dark_Ashes -6005,40,100 // New_Year_Rice_Cake -6006,8,100 // Rice_Cake_Delivery_Box -6007,8,100 // New_Year_Rice_Cake_Soup -6009,8,100 // Large_Magical_Fan -6024,499,100 // 17Carat_Dia -6026,32,100 // Marriage_Covenant -6036,8,100 // Invite_To_Meeting -6038,8,100 // Neat_Report -6039,8,100 // Piece_Of_Fish -6040,8,100 // Some_Of_Report -6042,8,100 // Ordinary_Branch -6043,8,100 // Letter_From_Lugen -6044,8,100 // Letter_From_Otto -6045,8,100 // Supply_Box -6046,32,100 // Clothing_Dye_Coupon -6047,32,100 // Clothing_Dye_Coupon_II -6048,8,100 // Unidentified_Mineral -6049,8,100 // Marlin -6050,32,100 // Mercenary_Contract -6051,8,100 // Gray_Hollow -6060,8,100 // Moon_Admin_Ticket -6070,32,100 // Shaman's_Old_Paper -6071,32,100 // Broken_Sword -6072,32,100 // Wing_Of_Bizofnil -6074,8,100 // Bazett's_Order -6093,8,100 // Egg_Of_Draco -6101,8,100 // Attendance_Card -6129,32,100 // Ticket_Nightmare -6131,32,100 // Ticket_Goblin_Leader -6131,32,100 // Ticket_Goblin_Leader -6131,32,100 // Ticket_Goblin_Leader -6136,32,100 // Ticket_Medusa -6142,32,100 // Ticket_Golem -6143,32,100 // Ticket_Civil_Servant -6148,8,100 // Chocolate_Of_Eternity -6149,8,100 // Plain_Chocolate -6151,8,100 // Peice_Of_Great_Bradium -6152,8,100 // Glittering_Crystal -6154,8,100 // Broken_Horn_Pipe -6156,8,100 // Approval_Report -6157,32,100 // Poring_Ticket -6158,32,100 // Drops_Ticket -6159,32,100 // Poporing_Ticket -6160,32,100 // Lunatic_Ticket -6161,32,100 // Picky_Ticket -6162,32,100 // Pecopeco_Ticket -6163,32,100 // Savage_Baby_Ticket -6164,32,100 // Spore_Ticket -6165,32,100 // Poison_Spore_Ticket -6166,32,100 // Chonchon_Ticket -6167,32,100 // Steel_Chonchon_Ticket -6168,32,100 // Petit_Ticket -6169,32,100 // Deviruchi_Ticket -6170,32,100 // Isis_Ticket -6171,32,100 // Smokie_Ticket -6172,32,100 // Dokebi_Ticket -6173,32,100 // Desert_Wolf_B_Ticket -6174,32,100 // Yoyo_Ticket -6175,32,100 // Sohee_Ticket -6176,32,100 // Rocker_Ticket -6177,32,100 // Hunter_Fly_Ticket -6178,32,100 // Orc_Warrior_Ticket -6179,32,100 // Bapho_Jr_Ticket -6180,32,100 // Munak_Ticket -6181,32,100 // Bongun_Ticket -6182,32,100 // Goblin_Ticket -6183,32,100 // Hardtack_Ticket -6184,32,100 // Zherlthsh_Ticket -6184,32,100 // Zherlthsh_Ticket -6185,32,100 // Alice_Ticket -6206,8,100 // I_Love_You -6207,8,100 // Thank_You -6208,8,100 // I_Respect_You -6225,32,100 // HD_Carnium -6226,32,100 // HD_Bradium -6228,32,100 // Guarantee_Weapon_9Up -6229,32,100 // Guarantee_Weapon_8Up -6230,32,100 // Guarantee_Weapon_7Up -6231,32,100 // Guarantee_Weapon_6Up -6232,32,100 // Guarantee_Armor_9Up -6233,32,100 // Guarantee_Armor_8Up -6234,32,100 // Guarantee_Armor_7Up -6235,32,100 // Guarantee_Armor_6Up -6236,8,100 // Blue_Card_7 -6238,32,100 // Guarantee_Weapon_11Up -6239,32,100 // Guarantee_Armor_11Up -6240,32,100 // HD_Oridecon -6241,32,100 // HD_Elunium -6242,498,100 // Midgard_Coin -6270,8,100 // Mins_Picture -6271,8,100 // Mins_Receipt -6296,8,100 // RF_Taining_Notice -6298,8,100 // Pumpkin_Head_Crushed -6299,8,100 // Worn_Cloth_Piece -6304,32,100 // Sapa_Feat_Cert -6308,32,100 // Unidentified_Relic -6320,32,100 // Premium_Reset_Stone -//6327,32,100 // -6345,8,100 // Love_Ball -6347,8,100 // Bless_Word_Paper1 -6348,8,100 // Bless_Word_Paper2 -6349,8,100 // Bless_Word_Paper3 -6350,8,100 // Bless_Word_Paper4 -6351,8,100 // Bless_Word_Paper5 -6352,8,100 // Bless_Word_Paper6 -6353,8,100 // Bless_Word_Paper7 -6354,8,100 // Bless_Word_Paper8 -6355,8,100 // Bless_Word_Paper9 -6356,8,100 // Bless_Word_Paper10 -6357,8,100 // Fortune_Cookie_Fail -6377,40,100 // Buy_Market_Permit -6378,8,100 // Winning_Mark -6380,40,100 // Mora_Coin -6383,8,100 // Clue_Of_Lope -6386,8,100 // Bathtub_R_Sample -6387,8,100 // Teeth_Sample -6388,8,100 // Scale_Sample -6389,8,100 // Puddle_R_Sample -6390,8,100 // Small_Pocket -6391,8,100 // Splendid_Supply_Kit -6392,8,100 // Bradium_Box -6396,32,100 // Auger_Of_Spirit -6402,8,100 // Oil_Palm_F -6411,8,100 // Ripe_Watermelon -6416,8,100 // Pet_Exchange -6417,32,100 // Silvervine -6418,8,100 // Agrade_Coin -6419,8,100 // Bgrade_Coin -6420,8,100 // Cgrade_Coin -6421,8,100 // Dgrade_Coin -6422,8,100 // Egrade_Coin -6424,8,100 // Halloween_Fragment -6425,8,100 // Halloween_Certificate -6426,8,100 // Bad_Can -6430,8,100 // Picture_Piece -6431,8,100 // Bucket -6432,8,100 // Full_Bucket -6433,8,100 // Clean_Brush -6434,8,100 // Fix_Kit -6435,8,100 // Fresh_Fruit -6440,32,100 // General_Lubricant -6441,32,100 // High_RankLubricant -6443,32,100 // Sillit_Pong_Bottle -6444,32,100 // Emperium_G -6451,8,100 // Unknown_Fish -6456,32,100 // Guarantee_Weapon_5Up -6457,32,100 // Guarantee_Armor_5Up -6464,8,100 // Hate_Bundle -6465,40,100 // Guard_Coin -6484,32,100 // Enchant_Book -6488,40,100 // Thanks_Invest_Ticket -6489,40,100 // Cats_Invest_Certif -6500,8,100 // Sharp_Bamboo -6501,8,100 // Salt_Bag -6502,8,100 // Silver_Cross -6503,40,100 // Soul_Protection -6504,8,100 // Cast_Iron_Caldron -6505,8,100 // Purified_Bone -6506,8,100 // Memorial_Bouquet -6507,8,100 // Evil_Bone -6519,40,100 // Collected_Samples -6520,40,100 // Lost_Belongings -6536,40,100 // Star_Decor -6539,8,100 // Old_Left_Lapine -6540,8,100 // Golden_Leaf -6541,8,100 // Avant_Research_Data -6542,40,100 // Star_Shape_Mushroom -6543,8,100 // Lv110_Achieved_Coin -6544,8,100 // Lv120_Achieved_Coin -6545,8,100 // Firm_Hair -6546,8,100 // Younger_Bro_Letter -6547,8,100 // Stained_Research_Book -6548,8,100 // Piece_Of_Lapine_Wing -6549,8,100 // Courtesy_Ticket -6556,8,100 // Nespresso_Ticket -6566,8,100 // Cacao99_Recipe -6567,8,100 // Choco_Drink_Recipe -//6584,32,100 // -//6584,32,100 // -//6585,32,100 // -//6585,32,100 // -6593,8,100 // Cryptura_Hair_Coupon -6625,40,100 // High_Purity_Energy_Xtal -6654,8,100 // Needle_And_Thread -6655,8,100 // Firm_Pumpkin -6656,8,100 // Goast_Free_Charm -6657,8,100 // Memory_Of_Jack -6671,40,100 // Geffen_Coin_Magic_Tournament -6672,40,100 // Black_As_Night_Piece -6681,40,100 // XMAS_Cookie -6682,8,100 // Bag_Of_Selling_Goods -6684,40,100 // Proof_of_The_Heroic -6685,8,100 // Morocc_Certification -6689,40,100 // Fire_Beetle_Shell -6690,40,100 // Delicious_Stem -6698,8,100 // Wooden_Axe -6699,8,100 // Faith_Silence -6700,8,100 // White_Snake_Scale -6701,8,100 // Treasure_Dwarf -6702,8,100 // Sweat_Dwarf -6703,8,100 // Warrior_Tears -6704,8,100 // Warrior_Anger -6705,8,100 // Warrior_Certificate -6706,8,100 // Guardian_Flowers -6708,8,100 // Magic_Crystal -6709,8,100 // Crisp_Silk -6710,8,100 // Tied_Snake -6713,8,100 // Heart_of_Soul -6714,8,100 // Sheenas_Soul -6715,40,100 // Gods_Soul_Piece -6722,8,100 // Delicious_Clam_Flesh -6723,8,100 // Delicious_Canned_Food -6727,8,100 // Arranged_Photo_Album -6733,8,100 // Tingly_Feather -6746,8,100 // Iron_Artifacts -6747,8,100 // Steel_Workpiece -6752,40,100 // Charleston_Parts -6766,8,100 // Ice_World_Ticket -6767,8,100 // Summer_Fes_Coin -6768,8,100 // Red_Beans_Of_Ice -6769,8,100 // Sweet_Rice_Cake -6814,32,100 // Swordman_Soul -6815,32,100 // Merchant_Soul -6816,32,100 // Thief_Soul -6817,32,100 // Mage_Soul -6818,32,100 // Archer_Soul -6819,32,100 // Acolyte_Soul -6820,32,100 // Energy_Debris -6821,40,100 // Solo_Troops_Badge -6825,8,100 // Air_Cleaner_Box -6826,8,100 // Fresh_Grapes -6827,8,100 // Complete_Machine_Parts -6833,32,100 // (Limited)_Token_of_Ziegfried -6836,8,100 // Talisman_Of_Soul -6837,8,100 // Piece_Of_Soul_Mouse -6838,8,100 // Secret_Orders_Of_Prophet_K -6839,40,100 // Gold_Choco_Coin -6840,40,100 // Silver_Choco_Coin -6841,40,100 // Bronze_Choco_Coin -6842,8,100 // Huge_Jewery -6843,8,100 // Thin_Ring -6844,8,100 // Mild_Stone -6845,8,100 // That_Thing -6846,32,100 // (Limited)Gym_Membership_Card -6847,8,100 // Very_Small_Box -6848,8,100 // Light_Box -//6849,8,100 // -//6850,8,100 // -//6851,8,100 // -//6852,8,100 // -//6853,8,100 // -//6854,8,100 // -//6855,8,100 // -//6856,8,100 // -//6857,8,100 // -//6858,8,100 // -//6859,8,100 // -6860,8,100 // Piece_Of_Soul_Cow -6862,8,100 // Piece_Of_Soul_Tiger -6863,8,100 // Strong_Piece_Of_Soul_Tiger -6864,32,100 // Safe_to_19_Weapon_Certificate -6865,32,100 // Safe_to_19_Armor_Certificate -6866,8,100 // Piece_Of_Soul_Rabbit -6867,8,100 // Large_Insect_Barrel -6868,8,100 // Medium_Insect_Barrel -6869,8,100 // Dust -6870,32,100 // Safe_to_13_Weapon_Certificate -6871,32,100 // Safe_to_14_Weapon_Certificate -6872,32,100 // Safe_to_15_Weapon_Certificate -6873,32,100 // Safe_to_16_Weapon_Certificate -6874,32,100 // Safe_to_17_Weapon_Certificate -6875,32,100 // Safe_to_18_Weapon_Certificate -6876,32,100 // Safe_to_13_Armor_Certificate -6877,32,100 // Safe_to_14_Armor_Certificate -6878,32,100 // Safe_to_15_Armor_Certificate -6879,32,100 // Safe_to_16_Armor_Certificate -6880,32,100 // Safe_to_17_Armor_Certificate -6881,32,100 // Safe_to_18_Armor_Certificate -6883,32,100 // Pet_Snow_Bunny_Exchange_Ticket -6884,32,100 // Pet_Tikbalang_Exchange_Ticket -6885,8,100 // Piece_Of_Soul_Dragon -6886,8,100 // Strong_Piece_Of_Soul_Dragon -6904,8,100 // Piece_Of_Soul_Snake -//6906,32,100 // -6907,8,100 // Piece_Of_Soul_Horse -6909,32,100 // Actinidia_Cat_Fruit -6910,32,100 // (Limited)Purified_Oridecon -6911,32,100 // (Limited)Purified_Eluminium -6912,8,100 // Piece_Of_Soul_Sheep -6914,8,100 // Black_Horn -6915,8,100 // Captured_Soul -6916,8,100 // Piece_Of_Soul_Monkey -6917,8,100 // Piece_Of_Soul_Chicken -//6919,8,100 // -//6920,40,100 // -//6923,8,100 // -//6925,8,100 // -//6926,8,100 // -//6927,8,100 // -//6928,8,100 // -//6929,8,100 // -//6930,8,100 // -//6931,8,100 // -//6932,8,100 // -//6933,8,100 // -//6934,8,100 // -//6935,8,100 // -//6953,32,100 // -//6954,8,100 // -//6955,8,100 // -//6956,8,100 // -//6957,8,100 // -//6960,40,100 // -//6993,32,100 // -//6994,32,100 // -7025,32,100 // Lucifer's_Lament -7037,32,100 // Trade_Coupon -7059,8,100 // Cargo_Free_Ticket -7060,8,100 // Warp_Free_Ticket -7061,8,100 // Cart_Free_Ticket -7140,506,100 // Seed_Of_Life -7170,506,100 // Tuxedo -7368,8,100 // Lotto08 -7416,32,100 // Letter_Of_Recommend -7417,32,100 // Mission_ScrollA -7418,32,100 // Mission_ScrollB -7420,498,100 // Skull_ -7421,8,100 // Key_Red -7422,8,100 // Key_Yellow -7423,8,100 // Key_Blue -7424,8,100 // Key_Green -7425,8,100 // Key_Black -7426,8,100 // Magic_Gem_Red -7427,8,100 // Magic_Gem_Yellow -7428,8,100 // Magic_Gem_Blue -7429,8,100 // Magic_Gem_Green -7430,8,100 // Magic_Gem_Black -7431,8,100 // Several_Books -7506,8,100 // Black_Key_Card -7509,32,100 // Fancy_Key_Card +2642,507,100 // Serin's_Gold_Ring +2644,507,100 // The_Sign_ +2647,507,100 // Nile_Rose +2668,499,100 // Women's_Glory +2670,475,100 // Ring_Of_Longing +2673,507,100 // Shining_Ring +2674,507,100 // Honor_Ring +2676,507,100 // Hunter_Earring +2681,507,100 // Republic_Ring +2686,507,100 // Elven_Ears_C +2686,475,100 // Elven_Ears_C +2687,507,100 // Steel_Flower_C +2688,507,100 // Critical_Ring_C +2689,507,100 // Earring_C +2690,507,100 // Ring_C +2691,507,100 // Necklace_C +2692,507,100 // Glove_C +2693,507,100 // Brooch_C +2694,507,100 // Rosary_C +2695,507,100 // Safety_Ring_C +2696,507,100 // Vesper_Core01_C +2697,507,100 // Vesper_Core02_C +2698,507,100 // Vesper_Core03_C +2699,507,100 // Vesper_Core04_C +2704,467,100 // Golden_Accessory +2705,467,100 // Golden_Accessory2 +2706,507,100 // Handcuff +2707,475,100 // GUSLI +2708,475,100 // Chinese_Handicraft +2709,507,100 // 5_Anniversary_Coin +2710,507,100 // Bloody_Iron_Ball_C +2711,507,100 // Spiritual_Ring_C +2713,507,100 // Certificate_TW +2720,499,100 // Medal_Swordman +2721,499,100 // Medal_Thief +2722,499,100 // Medal_Acolyte +2723,499,100 // Medal_Mage +2724,499,100 // Medal_Archer +2725,499,100 // Medal_Merchant +2730,467,100 // Morroc_Seal +2731,467,100 // Morroc_Charm_Stone +2732,467,100 // Morroc_Ring +2733,499,100 // Medal_Gunner +2734,507,100 // Directive_A +2735,507,100 // Directive_B +2738,507,100 // Shiny_Coin +2739,507,100 // Ordinary_Coin +2740,507,100 // Rusty_Coin +2741,507,100 // All_In_One_Ring +2742,507,100 // Lucky_Clip +2750,507,100 // Summer_Night_Dream +2751,467,100 // Academy_Badge +2752,507,100 // Praxinus_C +2753,507,100 // Beholder_Ring +2754,507,100 // Hallow_Ring +2755,507,100 // Clamorous_Ring +2756,507,100 // Chemical_Ring +2757,507,100 // Insecticide_Ring +2758,507,100 // Fisher_Ring +2759,507,100 // Decussate_Ring +2760,507,100 // Bloody_Ring +2761,507,100 // Satanic_Ring +2762,507,100 // Dragoon_Ring +2763,507,100 // Skul_Ring_C +2766,499,100 // Swordman_Figure +2767,499,100 // Acolyte_Figure +2768,499,100 // Mage_Figure +2769,499,100 // Archer_Figure +2770,499,100 // Thief_Figure +2771,499,100 // Merchant_Figure +2772,499,100 // Krieger_Ring1 +2773,499,100 // Krieger_Ring2 +2774,499,100 // Krieger_Ring3 +2777,1,100 // Shaman_Ring +2778,1,100 // Shaman_Earing +2779,1,100 // Dark_Knight_Belt +2780,1,100 // Dark_Knight_Glove +2781,1,100 // Aumdura's_Grace +2782,475,100 // Ring_Of_Wise_King +2785,475,100 // Orleans_Glove_M +2792,507,100 // Ring_Of_Flame_Lord_I +2793,507,100 // Ring_Of_Resonance_I +2794,507,100 // Magic_Stone_Ring +2795,499,100 // Green_Apple_Ring +2796,507,100 // Magical_Stone +2797,507,100 // Magical_Stone_ +2798,499,100 // Will_Of_Exhausted_Angel +2816,507,100 // Radar_Ring1 +2817,507,100 // Radar_Ring2 +2818,507,100 // Radar_Ring3 +2819,499,100 // Swordman_Manual +2820,499,100 // Thief_Manual +2821,499,100 // Acolyte_Manual +2822,499,100 // Archer_Manual +2823,499,100 // Merchant_Manual +2823,499,100 // Merchant_Manual +2824,499,100 // Mage_Manual +2825,1,100 // Shaman_EaringB +2826,1,100 // Dark_Knight_BeltB +2827,1,100 // Dark_Knight_GloveB +2832,507,100 // Freyja_Ring +2841,507,100 // Caracas_Ring +2843,507,100 // Gold_Trickle +2844,475,100 // El_Dicastes_Light +2856,507,100 // Half_Megin +2857,507,100 // Half_Brysing +2858,475,100 // Pendant_Of_Guardian +2863,507,100 // Ring_Of_Valkyrie +2864,499,100 // Light_Of_Cure +2865,499,100 // Seal_Of_Cathedral +2866,499,100 // Ring_Of_Archbishop +2872,475,100 // G_Honor_Certificate +2875,475,100 // RO_Appreciation_Ring +2885,507,100 // Mother_Heart +2885,499,100 // Mother_Heart +2897,475,100 // 2011RWC_Necklace_J +2915,467,100 // Ettlang_Keepsake +2916,475,100 // Fairy_Wing +2940,499,100 // Ninja_Manual +2941,499,100 // Gunslinger_Manual +2942,499,100 // Taekwon_Manual +//2944,499,100 // +//2945,499,100 // +//2946,499,100 // +//2950,507,100 // +2981,467,100 // Warrior's_Ring +2997,475,100 // RWC_Gold_Brooch +2999,475,100 // RWC_Brooch +5106,467,100 // Cone_Hat_INA +5132,475,100 // Angeling_Hat +5147,507,100 // Baseball_Cap +5149,499,100 // Silver_Tiara +5154,475,100 // Sunglasses_F +5155,475,100 // Granpa_Beard_F +5156,475,100 // Flu_Mask_F +5179,499,100 // Gold_Tiara +5254,475,100 // Deviling_Hat +5265,507,100 // Apple_Of_Archer_C +5266,507,100 // Bunny_Band_C +5267,507,100 // Sahkkat_C +5268,507,100 // Lord_Circlet_C +5269,507,100 // Flying_Angel_ +5279,507,100 // Drooping_Kitty_C +5280,507,100 // Magestic_Goat_C +5281,507,100 // Deviruchi_Cap_C +5286,507,100 // Pecopeco_Hairband +5288,507,100 // Red_Glasses +5293,507,100 // Ramen_Hat +5294,507,100 // Whisper_Mask +5295,467,100 // Golden_Bandana +5306,507,100 // Freyja_Crown +5308,475,100 // Brazilian_Flag_Hat +5309,475,100 // Mahican +5314,507,100 // Hockey_Mask +5315,507,100 // Observer +5318,467,100 // Poring_Party_Hat +5320,475,100 // Champion_Wreath +5322,475,100 // Scarf +5323,475,100 // Misstrance_Crown +5326,507,100 // Masquerade_C +5327,507,100 // Orc_Hero_Helm_C +5328,507,100 // Evil_Wing_Ears_C +5329,507,100 // Dark_Blindfold_C +5330,507,100 // kRO_Drooping_Kitty_C +5331,507,100 // Corsair_C +5336,507,100 // Guildsman_Recruiter +5337,507,100 // Party_Recruiter_Hat +5338,507,100 // Bf_Recruiter_Hat +5339,507,100 // Friend_Recruiter_Hat +5346,507,100 // Gf_Recruiter_Hat +5357,475,100 // Wings_Of_Victory +5368,475,100 // White_Wing +5369,475,100 // Dark_Wing +5391,507,100 // Toast_C +5394,507,100 // Bubblegum_Lower +5406,467,100 // Academy_Freshman_Hat +5407,467,100 // Academy_Graduating_Cap +5408,507,100 // Old_Bandanna +5410,499,100 // Bread_Bag2 +5412,467,100 // Sweet_Candy +5413,467,100 // Popcorn_Hat +5414,467,100 // Campfire_Hat +5423,9,100 // Lovecap_China +5428,475,100 // Bread_Bag1 +5430,1,100 // Sacred_Torch_Coronet +5450,475,100 // Sun_Cap +5451,475,100 // Dragonhelm_Gold +5451,475,100 // Dragonhelm_Gold +5452,475,100 // Dragonhelm_Silver +5452,475,100 // Dragonhelm_Silver +5453,475,100 // Dragonhelm_Copper +5453,475,100 // Dragonhelm_Copper +5460,499,100 // Adv_Dragon_Skull +5461,499,100 // Adv_Whisper_Mask +5462,507,100 // Spiked_Scarf +5463,507,100 // Rainbow_Scarf +5479,1,100 // Shaman's_Hair_Ornament +5480,1,100 // Bizofnil_Wing_Deco +5481,1,100 // Hermose_Cap +5482,1,100 // Dark_Knight_Mask +5483,1,100 // Odin_Mask +5492,507,100 // Boy's_Cap_I +5493,507,100 // Ulle_Cap_I +5494,507,100 // Spinx_Helm_I +5521,507,100 // Angry_Mouth_C +5536,507,100 // Spare_Card +5544,467,100 // Time_Keeper_Hat +5551,499,100 // Holy_Egg_Hat +5577,1,100 // Dark_Knight_MaskB +5583,499,100 // Para_Team_Hat1 +5587,499,100 // Mosquito_Coil_1Use +5592,475,100 // Sigrun's_Wings +5596,507,100 // 4Leaf_Clover_In_Mouth +5597,507,100 // Bubble_Gum_In_Mouth +5603,475,100 // RTC_Winner_Only +5604,475,100 // RTC_Second_Best +5605,475,100 // RTC_Third_Best +5668,499,100 // Weird_Pumpkin_Hat +5746,467,100 // Rune_Circlet +5747,467,100 // Mitra +5748,467,100 // Sniper_Goggle +5749,467,100 // Driver_Band +5750,467,100 // Shadow_Handicraft +5751,467,100 // Minstrel_Song_Hat +5752,467,100 // Midas_Whisper +5753,467,100 // Magic_Stone_Hat +5754,467,100 // Blazing_Soul +5755,467,100 // Silent_Executer +5756,467,100 // Wind_Whisper +5757,467,100 // Schmidt_Helm +5758,467,100 // Dying_Swan +5760,467,100 // Driver_Band_ +5786,475,100 // Ancient_Elven_Ear +5788,475,100 // 3D_Glasses +5793,507,100 // Ribbon_Of_Life +5794,507,100 // 3D_Glasses_ +5796,499,100 // Cheer_Scarf +5797,507,100 // Cheer_Scarf2 +5798,507,100 // Cheer_Scarf3 +5799,507,100 // Cheer_Scarf4 +5805,475,100 // Victorious_Coronet +5806,475,100 // Poem_Natalia_Hat +5809,467,100 // Boom_Boom_Hat +5812,507,100 // Hat_Of_Expert +5814,499,100 // Ati_Atihan_Hat3 +5817,507,100 // Valentine_Pledge +5818,507,100 // Carnival_Hat +5819,507,100 // Carnival_Circlet +5820,467,100 // Black_Elven_Ears +5821,467,100 // Gold_Tulip_Hairpin +5822,499,100 // Love_Chick_Hat +5823,467,100 // Love_Arrow +5855,499,100 // Fishing_Rod +5864,475,100 // Shadow_Booster +6000,475,100 // Dark_Ashes +6005,467,100 // New_Year_Rice_Cake +6006,499,100 // Rice_Cake_Delivery_Box +6007,499,100 // New_Year_Rice_Cake_Soup +6009,499,100 // Large_Magical_Fan +6024,8,100 // 17Carat_Dia +6025,507,100 // Towel_Of_Memory +6026,475,100 // Marriage_Covenant +6027,507,100 // Crystal_Of_Feardoom +6028,507,100 // Seal_Scroll +6029,507,100 // Morocc_Tracing_Log +6034,507,100 // Weird_Part +6035,507,100 // Decaying_Stem +6036,499,100 // Invite_To_Meeting +6037,507,100 // Rough_File +6038,499,100 // Neat_Report +6039,499,100 // Piece_Of_Fish +6040,499,100 // Some_Of_Report +6042,499,100 // Ordinary_Branch +6043,499,100 // Letter_From_Lugen +6044,499,100 // Letter_From_Otto +6045,499,100 // Supply_Box +6046,475,100 // Clothing_Dye_Coupon +6047,475,100 // Clothing_Dye_Coupon_II +6048,499,100 // Unidentified_Mineral +6049,499,100 // Marlin +6050,475,100 // Mercenary_Contract +6051,499,100 // Gray_Hollow +6052,507,100 // Ornamental_Hairpin +6060,499,100 // Moon_Admin_Ticket +6070,475,100 // Shaman's_Old_Paper +6071,475,100 // Broken_Sword +6072,475,100 // Wing_Of_Bizofnil +6074,499,100 // Bazett's_Order +6076,507,100 // Portable_Toolbox +6077,507,100 // Rough_Mineral +6078,507,100 // Stone_Fragments +6079,507,100 // Flower_Of_Alfheim +6080,507,100 // Manuk_Coin +6081,507,100 // Splendide_Coin +6082,507,100 // Spirit_Of_Alfheim +6084,507,100 // Bradium_Fragments +6085,507,100 // Shaggy_Muffler +6093,499,100 // Egg_Of_Draco +6101,499,100 // Attendance_Card +6102,507,100 // Report_On_Splendide +6103,507,100 // Report_On_Manuk +6116,507,100 // Succu_Pet_Coupon +6117,507,100 // Imp_Pet_Coupon +6118,507,100 // Chung_E_Pet_Coupon +6121,507,100 // Makeover_Brush +6122,507,100 // Paint_Brush +6124,507,100 // Wolf's_Flute +6125,507,100 // Lucky_Box +6126,507,100 // Happy_Box +6127,507,100 // Purification_Stone +6129,475,100 // Ticket_Nightmare +6129,507,100 // Ticket_Nightmare +6130,507,100 // Ticket_Loli_Ruri +6131,475,100 // Ticket_Goblin_Leader +6131,475,100 // Ticket_Goblin_Leader +6131,475,100 // Ticket_Goblin_Leader +6132,507,100 // Ticket_Incubus +6133,507,100 // Ticket_Miyabi_Ningyo +6134,507,100 // Ticket_Whisper +6135,507,100 // Ticket_Wicked_Nymph +6136,507,100 // Ticket_Medusa +6136,475,100 // Ticket_Medusa +6137,507,100 // Ticket_Stoneshooter +6138,507,100 // Ticket_Marionette +6139,507,100 // Ticket_Leafcat +6140,507,100 // Ticket_Dullahan +6141,507,100 // Ticket_Shinobi +6142,507,100 // Ticket_Golem +6142,475,100 // Ticket_Golem +6143,507,100 // Ticket_Civil_Servant +6143,475,100 // Ticket_Civil_Servant +6148,499,100 // Chocolate_Of_Eternity +6149,499,100 // Plain_Chocolate +6150,507,100 // Key_Of_The_Mansion +6151,499,100 // Peice_Of_Great_Bradium +6152,499,100 // Glittering_Crystal +6153,507,100 // Special_Exchange_Coupon +6154,499,100 // Broken_Horn_Pipe +6156,499,100 // Approval_Report +6157,475,100 // Poring_Ticket +6158,475,100 // Drops_Ticket +6159,475,100 // Poporing_Ticket +6160,475,100 // Lunatic_Ticket +6161,475,100 // Picky_Ticket +6162,475,100 // Pecopeco_Ticket +6163,475,100 // Savage_Baby_Ticket +6164,475,100 // Spore_Ticket +6165,475,100 // Poison_Spore_Ticket +6166,475,100 // Chonchon_Ticket +6167,475,100 // Steel_Chonchon_Ticket +6168,475,100 // Petit_Ticket +6169,475,100 // Deviruchi_Ticket +6170,475,100 // Isis_Ticket +6171,475,100 // Smokie_Ticket +6172,475,100 // Dokebi_Ticket +6173,475,100 // Desert_Wolf_B_Ticket +6174,475,100 // Yoyo_Ticket +6175,475,100 // Sohee_Ticket +6176,475,100 // Rocker_Ticket +6177,475,100 // Hunter_Fly_Ticket +6178,475,100 // Orc_Warrior_Ticket +6179,475,100 // Bapho_Jr_Ticket +6180,475,100 // Munak_Ticket +6181,475,100 // Bongun_Ticket +6182,475,100 // Goblin_Ticket +6183,475,100 // Hardtack_Ticket +6184,475,100 // Zherlthsh_Ticket +6184,475,100 // Zherlthsh_Ticket +6185,475,100 // Alice_Ticket +6206,499,100 // I_Love_You +6207,499,100 // Thank_You +6208,499,100 // I_Respect_You +6218,507,100 // Disin_Delivery_Box +6219,507,100 // Para_Team_Mark +6225,475,100 // HD_Carnium +6226,475,100 // HD_Bradium +6228,475,100 // Guarantee_Weapon_9Up +6229,475,100 // Guarantee_Weapon_8Up +6230,475,100 // Guarantee_Weapon_7Up +6231,475,100 // Guarantee_Weapon_6Up +6232,475,100 // Guarantee_Armor_9Up +6233,475,100 // Guarantee_Armor_8Up +6234,475,100 // Guarantee_Armor_7Up +6235,475,100 // Guarantee_Armor_6Up +6236,499,100 // Blue_Card_7 +6237,507,100 // Guarana_Fruit +6238,475,100 // Guarantee_Weapon_11Up +6239,475,100 // Guarantee_Armor_11Up +6240,475,100 // HD_Oridecon +6241,475,100 // HD_Elunium +6242,9,100 // Midgard_Coin +6266,507,100 // Cheat_Key +6267,507,100 // Virtual_Key +6268,507,100 // Mirth_Key +6269,507,100 // Master_Brush +6270,499,100 // Mins_Picture +6271,499,100 // Mins_Receipt +6272,507,100 // Experiment_Seed +6273,507,100 // Altered_Seed +6274,507,100 // Saint_Cloth_Piece +6275,507,100 // King_Shield +6276,507,100 // Clear_Reagent +6277,507,100 // Red_Reagent +6278,507,100 // Black_Reagent +6296,499,100 // RF_Taining_Notice +6298,499,100 // Pumpkin_Head_Crushed +6299,499,100 // Worn_Cloth_Piece +6304,475,100 // Sapa_Feat_Cert +6305,507,100 // Frozen_Skin_Piece +6306,507,100 // Solid_Bloodstain +6307,507,100 // Suspicious_Magic_Stone +6308,475,100 // Unidentified_Relic +6320,475,100 // Premium_Reset_Stone +6327,475,100 // (Limited)High_Density_Bradium +6345,499,100 // Love_Ball +6347,499,100 // Bless_Word_Paper1 +6348,499,100 // Bless_Word_Paper2 +6349,499,100 // Bless_Word_Paper3 +6350,499,100 // Bless_Word_Paper4 +6351,499,100 // Bless_Word_Paper5 +6352,499,100 // Bless_Word_Paper6 +6353,499,100 // Bless_Word_Paper7 +6354,499,100 // Bless_Word_Paper8 +6355,499,100 // Bless_Word_Paper9 +6356,499,100 // Bless_Word_Paper10 +6357,499,100 // Fortune_Cookie_Fail +6358,507,100 // Free_Cash_Coupon +6359,507,100 // Guidebook_Exchange +6377,467,100 // Buy_Market_Permit +6378,499,100 // Winning_Mark +6380,467,100 // Mora_Coin +6383,499,100 // Clue_Of_Lope +6384,507,100 // Ring_Of_Lope +6385,507,100 // Research_Tool_Bag +6386,499,100 // Bathtub_R_Sample +6387,499,100 // Teeth_Sample +6388,499,100 // Scale_Sample +6389,499,100 // Puddle_R_Sample +6390,499,100 // Small_Pocket +6391,499,100 // Splendid_Supply_Kit +6392,499,100 // Bradium_Box +6396,475,100 // Auger_Of_Spirit +6397,507,100 // PR_Team_Ticket +6398,507,100 // Develop_Team_Ticket +6399,507,100 // Marketing_Team_Ticket +6400,507,100 // Operating_Team_Ticket +6401,507,100 // Palm_O +6402,499,100 // Oil_Palm_F +6411,499,100 // Ripe_Watermelon +6412,507,100 // Special_Medal +6415,507,100 // Strange_Embryo +6416,499,100 // Pet_Exchange +6417,475,100 // Silvervine +6418,499,100 // Agrade_Coin +6419,499,100 // Bgrade_Coin +6420,499,100 // Cgrade_Coin +6421,499,100 // Dgrade_Coin +6422,499,100 // Egrade_Coin +6424,499,100 // Halloween_Fragment +6425,499,100 // Halloween_Certificate +6426,499,100 // Bad_Can +6427,507,100 // Bad_Can_Sack +6428,507,100 // Bravery_Card_A +6429,507,100 // Bravery_Card_B +6430,499,100 // Picture_Piece +6431,499,100 // Bucket +6432,499,100 // Full_Bucket +6433,499,100 // Clean_Brush +6434,499,100 // Fix_Kit +6435,499,100 // Fresh_Fruit +6436,507,100 // Ptotection_Seagod +6440,475,100 // General_Lubricant +6441,475,100 // High_RankLubricant +6442,507,100 // Octopus_Hunt_Stick +6443,475,100 // Sillit_Pong_Bottle +6444,475,100 // Emperium_G +6446,507,100 // Green_Paper +6447,507,100 // Red_Paper +6448,507,100 // White_Paper +6449,507,100 // Casual_Diary +6450,507,100 // Honest_Diary +6451,499,100 // Unknown_Fish +6452,507,100 // Etoile_Ring +6456,475,100 // Guarantee_Weapon_5Up +6457,475,100 // Guarantee_Armor_5Up +6464,499,100 // Hate_Bundle +6465,467,100 // Guard_Coin +6480,507,100 // Event_coin +6484,475,100 // Enchant_Book +6488,467,100 // Thanks_Invest_Ticket +6489,467,100 // Cats_Invest_Certif +6500,499,100 // Sharp_Bamboo +6501,499,100 // Salt_Bag +6502,499,100 // Silver_Cross +6503,467,100 // Soul_Protection +6504,499,100 // Cast_Iron_Caldron +6505,499,100 // Purified_Bone +6506,499,100 // Memorial_Bouquet +6507,499,100 // Evil_Bone +6519,467,100 // Collected_Samples +6520,467,100 // Lost_Belongings +6536,467,100 // Star_Decor +6539,499,100 // Old_Left_Lapine +6540,499,100 // Golden_Leaf +6541,499,100 // Avant_Research_Data +6542,467,100 // Star_Shape_Mushroom +6543,499,100 // Lv110_Achieved_Coin +6544,499,100 // Lv120_Achieved_Coin +6545,499,100 // Firm_Hair +6546,499,100 // Younger_Bro_Letter +6547,499,100 // Stained_Research_Book +6548,499,100 // Piece_Of_Lapine_Wing +6549,499,100 // Courtesy_Ticket +6552,507,100 // Mail_Package +6553,507,100 // Leaf_Made_Wood +6554,507,100 // Seed_Box +6555,507,100 // Birthday_Candle +6556,499,100 // Nespresso_Ticket +6562,507,100 // Tiny_Mouse_Tail +6563,507,100 // Weeds +6566,499,100 // Cacao99_Recipe +6567,499,100 // Choco_Drink_Recipe +//6584,475,100 // +//6584,475,100 // +//6585,475,100 // +//6585,475,100 // +//6586,507,100 // +6593,499,100 // Cryptura_Hair_Coupon +6625,467,100 // High_Purity_Energy_Xtal +6654,499,100 // Needle_And_Thread +6655,499,100 // Firm_Pumpkin +6656,499,100 // Goast_Free_Charm +6657,499,100 // Memory_Of_Jack +6671,467,100 // Geffen_Coin_Magic_Tournament +6672,467,100 // Black_As_Night_Piece +6673,507,100 // Bossnia_Tickets +6674,507,100 // GM_Coin +6681,467,100 // XMAS_Cookie +6682,499,100 // Bag_Of_Selling_Goods +6684,467,100 // Proof_of_The_Heroic +6685,499,100 // Morocc_Certification +6686,507,100 // Brick +6687,507,100 // Rope +6688,507,100 // Wood +6689,467,100 // Fire_Beetle_Shell +6690,467,100 // Delicious_Stem +6698,499,100 // Wooden_Axe +6699,499,100 // Faith_Silence +6700,499,100 // White_Snake_Scale +6701,499,100 // Treasure_Dwarf +6702,499,100 // Sweat_Dwarf +6703,499,100 // Warrior_Tears +6704,499,100 // Warrior_Anger +6705,499,100 // Warrior_Certificate +6706,499,100 // Guardian_Flowers +6708,499,100 // Magic_Crystal +6709,499,100 // Crisp_Silk +6710,499,100 // Tied_Snake +6713,499,100 // Heart_of_Soul +6714,499,100 // Sheenas_Soul +6715,467,100 // Gods_Soul_Piece +6720,507,100 // Status_Reset_Coupon +6721,507,100 // Status_Reset_Coupon_ +6722,499,100 // Delicious_Clam_Flesh +6723,499,100 // Delicious_Canned_Food +6724,507,100 // Savage_Box +6725,507,100 // Grand_Peco_Box +6726,507,100 // Desert_Wolf_Box +6727,499,100 // Arranged_Photo_Album +6733,499,100 // Tingly_Feather +6746,499,100 // Iron_Artifacts +6747,499,100 // Steel_Workpiece +6748,507,100 // Daily_Report_He_And_His_Team +6749,507,100 // Operation_Control_Device +6752,467,100 // Charleston_Parts +6753,507,100 // Token_Of_Destruction +6754,507,100 // Collected_Medicinal_Herbs +6766,499,100 // Ice_World_Ticket +6767,499,100 // Summer_Fes_Coin +6768,499,100 // Red_Beans_Of_Ice +6769,499,100 // Sweet_Rice_Cake +6784,507,100 // Squid_Skewer +6785,507,100 // Fantastic_Sauce +6786,507,100 // Squid_Of_Bbq +6787,507,100 // Good_Firewood +6788,507,100 // Rose_Knife +6789,507,100 // Custom_Pan +6814,475,100 // Swordman_Soul +6815,475,100 // Merchant_Soul +6816,475,100 // Thief_Soul +6817,475,100 // Mage_Soul +6818,475,100 // Archer_Soul +6819,475,100 // Acolyte_Soul +6820,475,100 // Energy_Debris +6821,467,100 // Solo_Troops_Badge +6824,507,100 // Experimental_Dong_Memory_Record +6825,499,100 // Air_Cleaner_Box +6826,499,100 // Fresh_Grapes +6827,499,100 // Complete_Machine_Parts +6833,475,100 // (Limited)_Token_of_Ziegfried +6836,499,100 // Talisman_Of_Soul +6837,499,100 // Piece_Of_Soul_Mouse +6838,499,100 // Secret_Orders_Of_Prophet_K +6839,467,100 // Gold_Choco_Coin +6840,467,100 // Silver_Choco_Coin +6841,467,100 // Bronze_Choco_Coin +6842,499,100 // Huge_Jewery +6843,499,100 // Thin_Ring +6844,499,100 // Mild_Stone +6845,499,100 // That_Thing +6846,475,100 // (Limited)Gym_Membership_Card +6847,499,100 // Very_Small_Box +6848,499,100 // Light_Box +6849,499,100 // Request_Complete_Certificate +6850,499,100 // Questionable_Box +6851,499,100 // Questionable_Document +6852,499,100 // Super_Corrector +6853,499,100 // Thanks_Bouquet +6854,499,100 // Novus_Captured +6855,499,100 // Tatacho_Captured +6856,499,100 // Manuscript_Written_By_Pigoreum +6857,499,100 // Very_Hard_Stone +6858,499,100 // Lude_Captured +6859,499,100 // Wanderer_Captured +6860,499,100 // Piece_Of_Soul_Cow +6862,499,100 // Piece_Of_Soul_Tiger +6863,499,100 // Strong_Piece_Of_Soul_Tiger +6864,475,100 // Safe_to_19_Weapon_Certificate +6865,475,100 // Safe_to_19_Armor_Certificate +6866,499,100 // Piece_Of_Soul_Rabbit +6867,499,100 // Large_Insect_Barrel +6868,499,100 // Medium_Insect_Barrel +6869,499,100 // Dust +6870,475,100 // Safe_to_13_Weapon_Certificate +6871,475,100 // Safe_to_14_Weapon_Certificate +6872,475,100 // Safe_to_15_Weapon_Certificate +6873,475,100 // Safe_to_16_Weapon_Certificate +6874,475,100 // Safe_to_17_Weapon_Certificate +6875,475,100 // Safe_to_18_Weapon_Certificate +6876,475,100 // Safe_to_13_Armor_Certificate +6877,475,100 // Safe_to_14_Armor_Certificate +6878,475,100 // Safe_to_15_Armor_Certificate +6879,475,100 // Safe_to_16_Armor_Certificate +6880,475,100 // Safe_to_17_Armor_Certificate +6881,475,100 // Safe_to_18_Armor_Certificate +6883,475,100 // Pet_Snow_Bunny_Exchange_Ticket +6884,475,100 // Pet_Tikbalang_Exchange_Ticket +6885,499,100 // Piece_Of_Soul_Dragon +6886,499,100 // Strong_Piece_Of_Soul_Dragon +6904,499,100 // Piece_Of_Soul_Snake +6906,475,100 // (Limited)High_Density_Kalunium +6907,499,100 // Piece_Of_Soul_Horse +6909,475,100 // Actinidia_Cat_Fruit +6910,475,100 // (Limited)Purified_Oridecon +6911,475,100 // (Limited)Purified_Eluminium +6912,499,100 // Piece_Of_Soul_Sheep +6913,507,100 // Holy_Rosary +6914,499,100 // Black_Horn +6915,499,100 // Captured_Soul +6916,499,100 // Piece_Of_Soul_Monkey +6917,499,100 // Piece_Of_Soul_Chicken +6919,499,100 // Honor_Proof +//6920,467,100 // +6923,499,100 // Bright_Fire_Lights +6925,499,100 // Letter_Of_Prisoner +6926,499,100 // Rune-Midgard_History_Book +6927,499,100 // Stone_That_Contained_Sea +6928,499,100 // Poring_Scourer +6929,499,100 // Letter_With_Stamped_Seal +6930,499,100 // Samples_New_Business_Items +6931,499,100 // Secret_Documents +6932,499,100 // Rare_Book +6933,499,100 // Banquet_Invitation_Letter +6934,499,100 // Magnificent_Dish +6935,499,100 // Advanced_Dish +6953,475,100 // Ramor_Refine_Ticket +6954,499,100 // Piece_Of_Soul_Dog +6955,499,100 // Piece_Of_Soul_Pig +6956,499,100 // Captured_Sheep +6957,499,100 // Lamb_Fleece +//6960,467,100 // +//6993,475,100 // +//6994,475,100 // +7025,475,100 // Lucifer's_Lament +7037,475,100 // Trade_Coupon +7059,499,100 // Cargo_Free_Ticket +7060,499,100 // Warp_Free_Ticket +7061,499,100 // Cart_Free_Ticket +7140,1,100 // Seed_Of_Life +7170,1,100 // Tuxedo +7177,507,100 // Part_Of_Star's_Sob +7178,507,100 // Star's_Sob +7275,507,100 // Ancient_Document +7276,507,100 // Picture_Letter +7304,507,100 // Witch's_Spell_Book +7305,507,100 // Authority_Of_Nine_World +7306,507,100 // Fragment_Of_Soul +7307,507,100 // Whisper_Of_Soul +7308,507,100 // Witch's_Potion +7309,507,100 // Wing_Of_Crow +7314,507,100 // The_Sign +7332,507,100 // Slate +7333,507,100 // Piece_Of_Slate_1 +7334,507,100 // Piece_Of_Slate_2 +7335,507,100 // Piece_Of_Slate_3 +7336,507,100 // Piece_Of_Slate_4 +7339,507,100 // RO_Transportation_Card_ +7341,507,100 // Worn_Out_Pendant +7342,507,100 // File01 +7343,507,100 // File02 +7344,507,100 // File03 +7346,507,100 // Pile_Of_Ymir_Heart +7349,507,100 // Indication_Of_Member02 +7351,507,100 // Friend's_Diary +7368,499,100 // Lotto08 +7416,475,100 // Letter_Of_Recommend +7417,475,100 // Mission_ScrollA +7418,475,100 // Mission_ScrollB +7420,499,100 // Skull_ +7421,499,100 // Key_Red +7422,499,100 // Key_Yellow +7423,499,100 // Key_Blue +7424,499,100 // Key_Green +7425,499,100 // Key_Black +7426,499,100 // Magic_Gem_Red +7427,499,100 // Magic_Gem_Yellow +7428,499,100 // Magic_Gem_Blue +7429,499,100 // Magic_Gem_Green +7430,499,100 // Magic_Gem_Black +7431,499,100 // Several_Books +7432,507,100 // Leather_Pouch +7484,507,100 // Warrior_Symbol +7485,507,100 // 2nd_Floor_Pass +7486,507,100 // 3rd_Floor_Pass +7487,507,100 // Tavern_Wine +7488,507,100 // Delivery_Box +7489,507,100 // Villa_Spare_Key +7490,507,100 // Kyll_Hire_Letter +7491,507,100 // Iron_Box +7492,507,100 // Yellow_Key_Card +7493,507,100 // Golden_Key +7494,507,100 // Kiel_Button +7495,507,100 // Blue_Key_Card +7496,507,100 // Red_Key_Card +7497,507,100 // Steel_Piece +7498,507,100 // Rosimier_Key +7499,507,100 // Family_Portrait +7500,507,100 // Elysia_Portrait +7501,507,100 // Kyll_Hire_Letter2 +7502,507,100 // Piece_Memo_Of_James +7503,507,100 // Man_Portrait +7504,507,100 // Toy_Motor +7505,507,100 // Toy_Key +7506,499,100 // Black_Key_Card +7508,507,100 // Elysia_Ring +7509,475,100 // Fancy_Key_Card 7515,499,100 // Marvelous_Medal -7516,8,100 // Green_Key_Card -7518,8,100 // Women's_Medal -7527,1,100 // Life_Book +7516,499,100 // Green_Key_Card +7518,499,100 // Women's_Medal +7527,506,100 // Life_Book +7530,507,100 // Travel_Brochure_01 +7531,507,100 // Travel_Brochure_02 +7532,507,100 // Travel_Brochure_03 +7533,507,100 // Travel_Brochure_04 +7534,507,100 // Photo_Album_01 +7535,507,100 // Photo_Album_02 +7536,507,100 // Photo_Album_03 +7537,507,100 // Photo_Album_04 7538,499,100 // Sifted_Sand 7539,499,100 // Poring_Coin -7547,8,100 // Soccer_Ball -7548,8,100 // Soccer_Shoes -7549,8,100 // Brazilian_Flag -7550,8,100 // Ticket01 -7551,8,100 // Ticket02 -7552,8,100 // Ticket03 -7553,8,100 // Lotus_Flower -7554,8,100 // Striped_Candle -7555,8,100 // Green_Incense -7556,32,100 // Longing_Heart -7557,32,100 // Invitation_Letter -7558,32,100 // Invitation_Ticket -7559,32,100 // Key_Of_Flower_Garden -7569,32,100 // Hammer_Of_Wind -7572,32,100 // Magic_Necklace -7573,32,100 // Magic_Necklace_ -7575,8,100 // Red_Jewel_ -7576,8,100 // Blue_Jewel_ -7577,8,100 // Golden_Jewel_ -7579,8,100 // Silk_Handkerchief -7580,8,100 // Black_Bead -7583,8,100 // Evil_Mind -7584,8,100 // Proof_Of_Guard1 -7585,8,100 // Proof_Of_Guard2 -7586,8,100 // Proof_Of_Guard3 -7587,8,100 // Proof_Of_Guard4 -7588,8,100 // IPOD_Ticker -7603,8,100 // RO_Party_Ticket -7614,8,100 // Special_Packing_Paper -7618,8,100 // Monster_Crystal -7619,32,100 // Enriched_Elunium -7620,32,100 // Enriched_Oridecon -7621,32,100 // Token_Of_Siegfried -7622,32,100 // New_Style_Coupon -7630,8,100 // Clean_Beach_Brush -7631,8,100 // Trash_Debris -7690,32,100 // Special_Exchange_Coupons -7701,8,100 // Dragon_Spirit -7715,8,100 // Handmade_Choco_Recipe -7716,8,100 // Strawberry_Choco_Recipe -7717,8,100 // Choco_Tart_Recipe -7720,40,100 // Gold_Coin_US -7727,8,100 // HP_Doctor_Ticket -7728,8,100 // SP_Doctor_Ticket -7729,8,100 // Rok_Star_Badge -7730,499,100 // Mission_Certificate1 -7731,499,100 // Mission_Certificate2 -7732,499,100 // Mission_Certificate3 -7733,499,100 // Mission_Certificate4 -7734,499,100 // Mission_Certificate5 -7735,499,100 // Mission_Certificate6 -7736,499,100 // Mission_Certificate7 -7737,499,100 // Mission_Certificate8 -7738,499,100 // Mission_Certificate9 -7739,499,100 // Mission_Certificate10 -7740,499,100 // Mission_Certificate11 -7741,499,100 // Mission_Certificate12 -7766,32,100 // Bok_Choy -7767,32,100 // Chung_E_Cake -7773,8,100 // War_Badge -7775,32,100 // Spring_Rabbit_Ticket -7776,32,100 // Max_Weight_Up_Scroll -7779,32,100 // Gold_Key_TW -7780,32,100 // Silver_Key -7784,32,100 // Fawner_Coupon1 -7785,32,100 // Fawner_Coupon2 -7786,32,100 // Fawner_Coupon3 -7787,32,100 // Fawner_Coupon4 -7788,32,100 // Fawner_Coupon5 -7789,32,100 // Fawner_Coupon6 -7790,32,100 // Fawner_Coupon7 -7791,32,100 // Fawner_Coupon8 -7793,32,100 // Golden_Apple -7794,32,100 // Fate_Of_Crow -7800,32,100 // Golden_Apple_ -7801,8,100 // Girl_Fan_Letter -7802,8,100 // Autograph_Book -7803,32,100 // Battle_Manual_TW -7821,32,100 // Green_Apple -7822,32,100 // Whole_Barbecue -7823,32,100 // Meat_Veg_Skewer -7825,32,100 // Heroic_Stone -7827,8,100 // Mineral_Report -7828,8,100 // BF_Badge1 -7829,8,100 // BF_Badge2 -7839,8,100 // Crystal_Key -7841,8,100 // Spotted_Paper -7842,8,100 // Torn_Paper -7843,8,100 // Old_Paper -7844,8,100 // Burnt_Paper -7863,40,100 // GOLD_ID4 -7865,8,100 // Gold_Pouch -7866,8,100 // Certificate -7875,40,100 // Pirate_Box -7876,8,100 // Gold_Key -7877,8,100 // Red_Ring -7878,8,100 // Lusalka_Hair -7879,8,100 // Golden_Thread -7880,8,100 // Babayaga_Silver_Spoon -7881,8,100 // Book_Of_Magic -7882,8,100 // Pointed_Branch -7883,8,100 // Pointed_Wooden_Flute -7884,32,100 // Jade_Plate -7885,32,100 // Sacred_Arrow -7895,8,100 // TRO_Memory_Book01 -7896,8,100 // TRO_Memory_Book02 -7897,8,100 // TRO_Memory_Book03 -7898,8,100 // VVS_Balmung -7899,8,100 // Spiritualist_Dagger -7907,8,100 // Bobbin_Of_Goddess -7909,8,100 // Stolen_Cookie -7910,8,100 // Stolen_Candy -7923,8,100 // KRATHONG_ -7945,32,100 // Almighty_Charm -7949,8,100 // Woven_Wool -7950,8,100 // Ayothaya_Ticket -7951,8,100 // Gold_Tulip -7954,8,100 // Festival_Ticket_ -7959,506,100 // Ancient_Gold_Coin -7960,506,100 // Ancient_Silver_Coin -7961,8,100 // Weapon_Exchange -7962,8,100 // Treasure_Map1 -7963,8,100 // Treasure_Map2 -7964,8,100 // Treasure_Map3 -7965,8,100 // Treasure_Map4 -7966,8,100 // Weird_Parchment1 -7967,8,100 // Weird_Parchment2 -7968,8,100 // Weird_Parchment3 -7969,8,100 // Weird_Parchment4 -9028,506,100 // Rice_Cake_Egg -9058,40,100 // Snow_Rabbit_Egg -11011,8,100 // Barmund_Note -11012,8,100 // Expedition_Report -11013,8,100 // Expedition_Report_Vol1 -11014,8,100 // Expedition_Report_Vol2 -11015,8,100 // Expedition_Report_Vol3 -11016,8,100 // Expedition_Report_Vol4 -11500,32,100 // Light_Yellow_Pot -11501,32,100 // Light_White_Pot -11502,32,100 // Light_Blue_Pot -11503,32,100 // Siege_White_Potion -11504,32,100 // Siege_Blue_Potion -11514,32,100 // Enriched_Slim_Pot -11551,8,100 // Savory_Herb_Salad -11552,8,100 // Apple_Carrot_Salad -11553,8,100 // Casual_Stew -11554,8,100 // Golden_Roasted_Apple -11565,32,100 // White_Potion -11566,32,100 // Yellow_Potion -11567,32,100 // Novice_Potion -11568,32,100 // Red_Slim_Potion -11569,32,100 // Orange_Potion -11570,32,100 // Red_Potion -11571,32,100 // Green_Potion -11572,32,100 // Blue_Potion -11573,32,100 // White_Slim_Potion -11574,32,100 // Yellow_Slim_Potion -11575,32,100 // Lucky_Cookie -11576,32,100 // Lucky_Lollipop -11577,32,100 // Rice_Ball -11578,32,100 // Candy_Bar -11579,32,100 // Lucky_Candy -11580,32,100 // Candy -11581,32,100 // Piece_of_Cake -11582,32,100 // Well-baked_Cookie -11583,32,100 // Chocolate_Drink -11584,32,100 // White_Chocolate -11585,32,100 // Hand-made_Chocolate -11586,32,100 // Hand-made_Chocolate_ -11587,32,100 // Chocolate -12142,1,100 // Magic_Book -12153,8,100 // Bow_Mercenary_Scroll1 -12154,8,100 // Bow_Mercenary_Scroll2 -12155,8,100 // Bow_Mercenary_Scroll3 -12156,8,100 // Bow_Mercenary_Scroll4 -12157,8,100 // Bow_Mercenary_Scroll5 -12158,8,100 // Bow_Mercenary_Scroll6 -12159,8,100 // Bow_Mercenary_Scroll7 -12160,8,100 // Bow_Mercenary_Scroll8 -12161,8,100 // Bow_Mercenary_Scroll9 -12162,8,100 // Bow_Mercenary_Scroll10 -12163,8,100 // SwordMercenary_Scroll1 -12164,8,100 // SwordMercenary_Scroll2 -12165,8,100 // SwordMercenary_Scroll3 -12166,8,100 // SwordMercenary_Scroll4 -12167,8,100 // SwordMercenary_Scroll5 -12168,8,100 // SwordMercenary_Scroll6 -12169,8,100 // SwordMercenary_Scroll7 -12170,8,100 // SwordMercenary_Scroll8 -12171,8,100 // SwordMercenary_Scroll9 -12172,8,100 // SwordMercenary_Scroll10 -12173,8,100 // SpearMercenary_Scroll1 -12174,8,100 // SpearMercenary_Scroll2 -12175,8,100 // SpearMercenary_Scroll3 -12176,8,100 // SpearMercenary_Scroll4 -12177,8,100 // SpearMercenary_Scroll5 -12178,8,100 // SpearMercenary_Scroll6 -12179,8,100 // SpearMercenary_Scroll7 -12180,8,100 // SpearMercenary_Scroll8 -12181,8,100 // SpearMercenary_Scroll9 -12182,8,100 // SpearMercenary_Scroll10 -12202,32,100 // Str_Dish10_ -12203,32,100 // Agi_Dish10_ -12204,32,100 // Int_Dish10_ -12205,32,100 // Dex_Dish10_ -12206,32,100 // Luk_Dish10_ -12207,32,100 // Vit_Dish10_ -12208,32,100 // Battle_Manual -12209,32,100 // Insurance -12210,32,100 // Bubble_Gum -12211,32,100 // Kafra_Card -12212,32,100 // Giant_Fly_Wing -12213,32,100 // Neuralizer -12214,32,100 // Convex_Mirror -12215,32,100 // Blessing_10_Scroll -12216,32,100 // Inc_Agi_10_Scroll -12217,32,100 // Aspersio_5_Scroll -12218,32,100 // Assumptio_5_Scroll -12219,32,100 // Wind_Walk_10_Scroll -12220,32,100 // Adrenaline_Scroll -12221,32,100 // Megaphone_ -12238,40,100 // New_Year_Rice_Cake_1 -12239,40,100 // New_Year_Rice_Cake_2 -12258,8,100 // Bombring_Box -12264,32,100 // Comp_Bubble_Gum -12265,32,100 // Comp_Insurance -12269,40,100 // Tasty_Colonel -12270,40,100 // Tasty_Major -12271,40,100 // Mre_A -12272,40,100 // Mre_B -12273,40,100 // Mre_C -12276,32,100 // Mimic_Scroll -12277,32,100 // Disguise_Scroll -12278,32,100 // Alice_Scroll -12300,8,100 // Wild_Rose_Scroll -12301,8,100 // Doppelganger_Scroll -12302,8,100 // Ygnizem_Scroll -12303,32,100 // Water_Of_Blessing -12310,40,100 // Spray_Of_Flowers -12311,40,100 // Large_Spray_Of_Flowers -12313,8,100 // Protection_Of_Angel -12314,32,100 // Noive_Box -12319,40,100 // Strawberry_Cake -12320,40,100 // Pineapple_Juice -12321,40,100 // Spicy_Sandwich -12322,8,100 // Chocolate_Pie -12323,8,100 // N_Fly_Wing -12324,8,100 // N_Butterfly_Wing -12325,8,100 // N_Magnifier -12332,40,100 // Fruit_Juice -12340,8,100 // Mysterious_Rice_Powder -12361,32,100 // Delicious_Shaved_Ice -12363,32,100 // Fit_Pipe -12370,32,100 // Gril's_Naivety -12384,8,100 // Rainbow_Ruby_Water -12385,8,100 // Rainbow_Ruby_Fire -12386,8,100 // Rainbow_Ruby_Wind -12387,8,100 // Rainbow_Ruby_Earth -12391,32,100 // Lucky_Egg_C -12402,32,100 // 29Fruit -12403,32,100 // Lucky_Egg_C2 -12404,32,100 // Acti_Potion -12405,32,100 // Underripe_Yggseed -12406,32,100 // Psychic_ArmorS -12407,32,100 // PCBang_Coupon_Box -12413,32,100 // PCBang_Coupon_Box2 -12415,32,100 // Siege_Teleport_Scroll2 -12416,32,100 // Lucky_Egg_C3 -12473,40,100 // RWC_Parti_Box -12474,40,100 // RWC_Final_Comp_Box -12476,32,100 // PCBang_Coupon_Box3 -12480,32,100 // Attend_3Day_Box -12481,32,100 // Attend_7Day_Box -12482,32,100 // Attend_10Day_Box -12483,32,100 // Attend_15Day_Box -12484,32,100 // Attend_20Day_Box -12485,32,100 // Attend_25Day_Box -12486,32,100 // GoldPC_First_Box -12487,32,100 // PC_4Leaf_Clover_Box -12488,32,100 // Ticket_Gift_Box -12489,32,100 // Ticket_Gift_Box2 -12492,32,100 // Crumpled_Paper -12493,32,100 // Lucky_Egg_C4 -12497,32,100 // E_Bubble_Gum -12501,32,100 // E_Str_Dish10_ -12502,32,100 // E_Agi_Dish10_ -12503,32,100 // E_Int_Dish10_ -12504,32,100 // E_Dex_Dish10_ -12505,32,100 // E_Luk_Dish10_ -12506,32,100 // E_Vit_Dish10_ -12507,32,100 // E_WOB_Rune -12508,32,100 // E_WOB_Schwaltz -12509,32,100 // E_WOB_Rachel -12510,32,100 // E_WOB_Local -12514,32,100 // E_Abrasive -12516,32,100 // E_Small_Life_Potion -12522,32,100 // E_Blessing_10_Scroll -12523,32,100 // E_Inc_Agi_10_Scroll -12529,32,100 // White_Slim_Potion_Box -12530,32,100 // Mastela_Fruit_Box -12531,32,100 // White_Potion_Box -12532,32,100 // Royal_Jelly_Box2 -12533,32,100 // Blue_Herb_Box2 -12534,32,100 // Yggdrasil_Seed_Box -12535,32,100 // Iggdrasilberry_Box -12540,8,100 // GM_Warp_Box -12541,8,100 // Fortune_Cookie1 -12542,8,100 // Fortune_Cookie2 -12543,8,100 // Fortune_Cookie3 -12545,32,100 // Lucky_Egg_C5 -12549,32,100 // White_Slim_Pot_Box2 -12550,32,100 // Poison_Bottle_Box2 -12577,32,100 // Lucky_Egg_C6 -12578,32,100 // Rapid_Life_Water -12581,32,100 // Vending_Search_Scroll2 -12591,32,100 // Uni_Catalog_Bz -12595,32,100 // Lucky_Egg_C7 -12596,32,100 // Magic_Candy -//12610,32,100 // -12625,32,100 // Sapa_Feat_Cert_Pack -12633,32,100 // Malang_Cat_Can -12636,40,100 // Malang_Sp_Can -12637,32,100 // Gong_Bug_Pocket -12638,32,100 // Dried_Squid_Box -12639,32,100 // Flying_Fish_Box -12640,32,100 // Starfish_Box -12641,32,100 // Lucky_Egg_C8 -12642,32,100 // Fruit_Of_Mastela_Box2 -12644,32,100 // PCBang_Coupon_Box4 -12645,32,100 // J_Aspersio_5_Scroll_C -12654,32,100 // Lucky_Egg_C9 -12658,32,100 // Trans_Scroll_Devi -12659,32,100 // Trans_Scroll_Ray_Arch -12660,32,100 // Trans_Scroll_Mavka -12661,32,100 // Trans_Scroll_Marduk -12662,32,100 // Trans_Scroll_Banshee -12663,32,100 // Trans_Scroll_Poring -12664,32,100 // Trans_Scroll_Golem -12672,8,100 // Start_New_Box -12673,32,100 // Lucky_Egg_C10 -12684,32,100 // ASPD_Potion -12685,32,100 // Gryphon_Egg_Scroll -12702,41,100 // Old_Bleu_Box -12704,32,100 // Elixir_Of_Life -12705,32,100 // Noble_Nameplate -12714,40,100 // Easter_Scroll -12725,32,100 // Runstone_Nosiege -12726,32,100 // Runstone_Rhydo -12727,32,100 // Runstone_Verkana -12728,32,100 // Runstone_Isia -12729,32,100 // Runstone_Asir -12730,32,100 // Runstone_Urj -12731,32,100 // Runstone_Turisus -12732,32,100 // Runstone_Pertz -12733,32,100 // Runstone_Hagalas -12785,32,100 // Dragon_Egg_Scroll -12786,32,100 // Change_Slot_Card -12790,32,100 // Change_Name_Card -12795,32,100 // 2011_RWC_Scroll_Kr -12796,32,100 // Red_Booster -12799,32,100 // PCBang_Coupon_Box5 -12802,32,100 // Time_Guardian_Box -12804,32,100 // Cru_Scroll -12805,32,100 // Mystic_Powder -12811,32,100 // Event_Gift_Box_ -//12825,32,100 // -//12830,32,100 // -12831,32,100 // Potion_Box -//12832,32,100 // -//12833,32,100 // -12834,32,100 // Undead_Egg -12835,32,100 // Girls_Heart -12845,8,100 // WOB_Amatsu -//12854,40,100 // -//12855,32,100 // -//12871,32,100 // -//12872,32,100 // -//12873,32,100 // -12883,32,100 // Almighty -12900,32,100 // Battle_Manual_Box -12901,32,100 // Insurance_Package -12902,32,100 // Bubble_Gum_Box -12903,32,100 // Str_Dish_Box -12904,32,100 // Agi_Dish_Box -12905,32,100 // Int_Dish_Box -12906,32,100 // Dex_Dish_Box -12907,32,100 // Luk_Dish_Box -12908,32,100 // Vit_Dish_Box -12909,32,100 // Kafra_Card_Box -12910,32,100 // Giant_Fly_Wing_Box -12911,32,100 // Neuralizer_Box -12912,32,100 // Convex_Mirror_Box -12913,32,100 // Blessing_10_Scroll_Box -12914,32,100 // Inc_Agi_10_Scroll_Box -12915,32,100 // Aspersio_5_Scroll_Box -12916,32,100 // Assumptio_5_Scroll_Box -12917,32,100 // Wind_Walk_10_Scroll_Box -12918,32,100 // Adrenaline_Scroll_Box -12919,32,100 // Megaphone_Box -12920,32,100 // Enriched_Elunium_Box -12921,32,100 // Enriched_Oridecon_Box -12922,32,100 // Token_Of_Siegfried_Box -12927,32,100 // J_Aspersio_5_Scroll_Box -12928,32,100 // J_Aspersio_5_Scroll -12928,32,100 // J_Aspersio_5_Scroll -12929,32,100 // Pet_Egg_Scroll_Box3 -12930,32,100 // Pet_Egg_Scroll_Box4 -12931,32,100 // Pet_Egg_Scroll_Box5 -12932,32,100 // Pet_Egg_Scroll3 -12933,32,100 // Pet_Egg_Scroll4 -12934,32,100 // Pet_Egg_Scroll5 -12935,32,100 // Infiltrator_Box -12936,32,100 // Muramasa_Box -12937,32,100 // Excalibur_Box -12938,32,100 // Combat_Knife_Box -12939,32,100 // Counter_Dagger_Box -12940,32,100 // Kaiser_Knuckle_Box -12941,32,100 // Pole_Axe_Box -12942,32,100 // Mighty_Staff_Box -12943,32,100 // Right_Epsilon_Box -12944,32,100 // Balistar_Box -12945,32,100 // Diary_Of_Great_Sage_Box -12946,32,100 // Asura_Box -12947,32,100 // Apple_Of_Archer_Box -12948,32,100 // Bunny_Band_Box -12949,32,100 // Sahkkat_Box -12950,32,100 // Lord_Circlet_Box -12951,32,100 // Elven_Ears_Box -12952,32,100 // Steel_Flower_Box -12953,32,100 // Critical_Ring_Box -12954,32,100 // Earring_Box -12955,32,100 // Ring_Box -12956,32,100 // Necklace_Box -12957,32,100 // Glove_Box -12958,32,100 // Brooch_Box -12959,32,100 // Rosary_Box -12960,32,100 // Safety_Ring_Box -12961,32,100 // Vesper_Core01_Box -12962,32,100 // Vesper_Core02_Box -12963,32,100 // Vesper_Core03_Box -12964,32,100 // Vesper_Core04_Box -12965,32,100 // Emergency_Box1 -12966,32,100 // Emergency_Box2 -12967,32,100 // Emergency_Box3 -12968,32,100 // Emergency_Scroll1 -12969,32,100 // Emergency_Scroll2 -12970,32,100 // Emergency_Scroll3 -12971,32,100 // Teleport_Box1 -12972,32,100 // Teleport_Box2 -12973,32,100 // Teleport_Box3 -12974,32,100 // Teleport_Box4 -12975,32,100 // Teleport_Box5 -12976,32,100 // Teleport_Box6 -12977,32,100 // Teleport_Scroll1 -12978,32,100 // Teleport_Scroll2 -12979,32,100 // Teleport_Scroll3 -12980,32,100 // Teleport_Scroll4 -12981,32,100 // Teleport_Scroll5 -12982,32,100 // Teleport_Scroll6 -12983,32,100 // Pet_Egg_Scroll_Box6 -12984,32,100 // Pet_Egg_Scroll_Box7 -12985,32,100 // Pet_Egg_Scroll_Box8 -12986,32,100 // Pet_Egg_Scroll_Box9 -12987,32,100 // Pet_Egg_Scroll_Box10 -12988,32,100 // Pet_Egg_Scroll_Box11 -12989,32,100 // Pet_Egg_Scroll6 -12990,32,100 // Pet_Egg_Scroll7 -12991,32,100 // Pet_Egg_Scroll8 -12992,32,100 // Pet_Egg_Scroll9 -12993,32,100 // Pet_Egg_Scroll10 -12994,32,100 // Pet_Egg_Scroll11 -12995,32,100 // White_Herb_Box -12996,32,100 // Blue_Herb_Box -12997,32,100 // Elunium_Box -12998,32,100 // Oridecon_Box -12999,32,100 // Branch_Of_Dead_Tree_Box -13029,32,100 // Prinsence_Knife -13036,8,100 // BF_Dagger1 -13037,8,100 // BF_Dagger2 -13042,8,100 // Krieger_Dagger1 -13049,506,100 // Lacma -13050,8,100 // P_Dagger1 -13051,8,100 // P_Dagger2 -13052,8,100 // Tourist_Dagger -13066,8,100 // P_Dagger3 -13079,8,100 // Metal_Dagger -//13083,8,100 // -13108,8,100 // BF_Pistol1 -13110,8,100 // Krieger_Pistol1 -13112,8,100 // P_Revolver1 -13113,8,100 // P_Revolver2 -13114,8,100 // P_Revolver3 -//13117,8,100 // -13118,8,100 // Spark_Light -13119,40,100 // Spark_Of_Freedom -13125,8,100 // Metal_Revolver -13126,40,100 // Infinity_Pistol -13171,8,100 // BF_Rifle1 -13172,8,100 // BF_Gatling_Gun1 -13173,8,100 // BF_Shotgun1 -13174,8,100 // BF_Launcher1 -13176,8,100 // Krieger_Rifle1 -13177,8,100 // Krieger_Gatling1 -13178,8,100 // Krieger_Shotgun1 -13179,8,100 // Krieger_Launcher1 -//13184,8,100 // -//13185,8,100 // -//13186,8,100 // -//13187,8,100 // -13208,32,100 // Gong_Bug -13291,32,100 // Starfish -13292,32,100 // Dried_Squid -13293,32,100 // Flying_Fish -13295,8,100 // Light_Shuriken -13305,8,100 // BF_Huuma_Shuriken1 -13306,8,100 // BF_Huuma_Shuriken2 -13307,8,100 // Krieger_Huuma_Shuriken1 -13310,8,100 // P_Huuma_Suriken1 -//13317,8,100 // -13322,8,100 // Huuma_Metal_Shuriken -13323,40,100 // Infinity_Shuriken -13406,32,100 // Edger -13410,8,100 // BF_Sword1 -13411,8,100 // BF_Sword2 -13416,8,100 // Krieger_Onehand_Sword1 -13417,8,100 // Krieger_Onehand_Sword2 -13418,8,100 // Krieger_Onehand_Sword3 -13423,8,100 // P_Sabre1 -13424,8,100 // P_Sabre2 -13425,8,100 // Tourist_Sword -13434,8,100 // P_Saber3 -//13439,8,100 // -13500,32,100 // Insurance60_Package -13501,32,100 // Assorted_Scroll_Box -13502,32,100 // Drooping_Kitty_Box -13503,32,100 // Magestic_Goat_Box -13504,32,100 // Deviruchi_Cap_Box -13505,32,100 // Executioner_Box -13506,32,100 // Brood_Axe_Box -13507,32,100 // Tomahawk_Box -13508,32,100 // Bow_Of_Rudra_Box -13509,32,100 // Cutlas_Box -13510,32,100 // Solar_Sword_Box -13511,32,100 // Sword_Breaker_Box -13512,32,100 // Mail_Breaker_Box -13513,32,100 // Moonlight_Sword_Box -13514,32,100 // Spanner_Box -13515,32,100 // Grape_Box -13516,32,100 // Royal_Jelly_Box -13517,32,100 // Yggdrasilberry_Box -13518,32,100 // Weapon_Card_Scroll_Box -13519,32,100 // Armor_Card_Scroll_Box -13520,32,100 // Helmet_Card_Scroll_Box -13521,32,100 // Garment_Card_Scroll_Box -13522,32,100 // Shield_Card_Scroll_Box -13523,32,100 // Shoes_Card_Scroll_Box -13524,32,100 // Accy_Card_Scroll_Box -13525,32,100 // Zeny_Scroll_Box -13526,32,100 // Pet_Egg_Scroll_Box1_ -13527,32,100 // Pet_Egg_Scroll_Box2_ -13528,32,100 // Pet_Egg_Scroll_Box3_ -13529,32,100 // Pet_Egg_Scroll_Box4_ -13530,32,100 // Pet_Egg_Scroll_Box5_ -13531,32,100 // Light_Red_Pot_Box -13532,32,100 // Light_Orange_Pot_Box -13533,32,100 // Light_Yellow_Pot_Box -13534,32,100 // Light_White_Pot_Box -13535,32,100 // Light_Center_Pot_Box -13536,32,100 // Light_Awakening_Pot_Box -13537,32,100 // Light_Berserk_Pot_Box -13538,32,100 // Meteor_10_Scroll_Box -13539,32,100 // Storm_10_Scroll_Box -13540,32,100 // Vermilion_10_Scroll_Box -13541,32,100 // Lex_Aeterna_Scroll_Box -13542,32,100 // Magnificat_5_Scroll_Box -13543,32,100 // CP_Helm_Scroll_Box -13544,32,100 // CP_Shield_Scroll_Box -13545,32,100 // CP_Armor_Scroll_Box -13546,32,100 // CP_Weapon_Scroll_Box -13547,32,100 // Repair_Scroll_Box -13548,32,100 // Big_Bun_Box -13549,32,100 // Pill__Box -13550,32,100 // Superb_Fish_Slice_Box -13551,32,100 // Chewy_Ricecake_Box -13552,32,100 // Oriental_Pastry_Box -13553,32,100 // Dun_Tele_Scroll1_Box -13554,32,100 // Weapon_Card_Scroll_Box2 -13555,32,100 // Weapon_Card_Scroll_Box3 -13556,32,100 // Armor_Card_Scroll_Box2 -13557,32,100 // Accy_Card_Scroll_Box2 -13558,32,100 // Weapon_Card_Scroll -13559,32,100 // Armor_Card_Scroll -13560,32,100 // Helmet_Card_Scroll -13561,32,100 // Hood_Card_Scroll -13562,32,100 // Hood_Card_Scroll2 -13563,32,100 // Shoes_Card_Scroll -13564,32,100 // Accy_Card_Scroll -13565,32,100 // Weapon_Card_Scroll2 -13566,32,100 // Weapon_Card_Scroll3 -13567,32,100 // Armor_Card_Scroll2 -13568,32,100 // Accy_Card_Scroll2 -13569,32,100 // PVP_Tele_Scroll_Box -13570,32,100 // Giant_Fly_Wing_Box50 -13571,32,100 // Giant_Fly_Wing_Box100 -13572,32,100 // Dex_Dish_Box30 -13573,32,100 // Dex_Dish_Box50 -13574,32,100 // Luk_Dish_Box30 -13575,32,100 // Luk_Dish_Box50 -13576,32,100 // Inc_Agi_10_Box30 -13577,32,100 // Inc_Agi_10_Box50 -13578,32,100 // Vit_Dish_Box30 -13579,32,100 // Vit_Dish_Box50 -13580,32,100 // Insurance_Package30 -13581,32,100 // Insurance_Package50 -13582,32,100 // Convex_Mirror_Box5 -13583,32,100 // Convex_Mirror_Box30 -13584,32,100 // Blessing10_Box30 -13585,32,100 // Blessing10_Box50 -13586,32,100 // Adrenaline10_Box30 -13587,32,100 // Adrenaline10_Box50 -13588,32,100 // Assumptio_5_Box30 -13589,32,100 // Assumptio_5_Box50 -13590,32,100 // Aspersio_5_Box30 -13591,32,100 // Aspersio_5_Box50 -13592,32,100 // Agi_Dish_Box30 -13593,32,100 // Agi_Dish_Box50 -13594,32,100 // Wind_Walk10_Box30 -13595,32,100 // Wind_Walk10_Box50 -13596,32,100 // Int_Dish_Box30 -13597,32,100 // Int_Dish_Box50 -13598,32,100 // Battle_Manual_Box1 -13599,32,100 // Battle_Manual_Box5 -13600,32,100 // Siegfried_Box5 -13601,32,100 // Siegfried_Box20 -13602,32,100 // Kafra_Card_Box30 -13603,32,100 // Kafra_Card_Box50 -13604,32,100 // Str_Dish_Box30 -13605,32,100 // Str_Dish_Box50 -13606,32,100 // Bubble_Gum_Box1 -13607,32,100 // Bubble_Gum_Box5 -13608,32,100 // Megaphone_Box1 -13609,32,100 // Megaphone_Box5 -13610,32,100 // Enriched_Elunium_Box5 -13611,32,100 // Enriched_Oridecon_Box5 -13612,32,100 // Handcuff_Box -13613,32,100 // Super_Pet_Egg_Box1 -13614,32,100 // Super_Pet_Egg_Box2 -13615,32,100 // Super_Pet_Egg_Box3 -13616,32,100 // Super_Pet_Egg_Box4 -13617,32,100 // Super_Pet_Egg1 -13618,32,100 // Super_Pet_Egg2 -13619,32,100 // Super_Pet_Egg3 -13620,32,100 // Super_Pet_Egg4 -13621,32,100 // Greed_Box30 -13622,32,100 // Greed_Box50 -13623,32,100 // Greed_Box100 -13624,32,100 // Flee_30_Scroll_Box -13625,32,100 // Accuracy_30_Scroll_Box -13626,32,100 // Super_Card_Pet_Egg_Box1 -13627,32,100 // Super_Card_Pet_Egg_Box2 -13628,32,100 // Super_Card_Pet_Egg_Box3 -13629,32,100 // Super_Card_Pet_Egg_Box4 -13630,32,100 // Super_Card_Pet_Egg1 -13631,32,100 // Super_Card_Pet_Egg2 -13632,32,100 // Super_Card_Pet_Egg3 -13633,32,100 // Super_Card_Pet_Egg4 -13634,32,100 // Vigorgra_Package1 -13635,32,100 // Vigorgra_Package2 -13636,32,100 // Vigorgra_Package3 -13637,32,100 // Vigorgra_Package4 -13638,32,100 // Vigorgra_Package5 -13639,32,100 // Vigorgra_Package6 -13640,32,100 // Vigorgra_Package7 -13641,32,100 // Vigorgra_Package8 -13642,32,100 // Vigorgra_Package9 -13643,32,100 // Vigorgra_Package10 -13644,32,100 // Vigorgra_Package11 -13645,32,100 // Vigorgra_Package12 -13646,32,100 // Infiltrator_Box1 -13647,32,100 // Muramasa_Box1 -13648,32,100 // Excalibur_Box1 -13649,32,100 // Combat_Knife_Box1 -13650,32,100 // Counter_Dagger_Box1 -13651,32,100 // Kaiser_Knuckle_Box1 -13652,32,100 // Pole_Axe_Box1 -13653,32,100 // Mighty_Staff_Box1 -13654,32,100 // Right_Epsilon_Box1 -13655,32,100 // Balistar_Box1 -13656,32,100 // Diary_Of_Sage_Box1 -13657,32,100 // Asura_Box1 -13658,32,100 // Apple_Of_Archer_Box1 -13659,32,100 // Bunny_Band_Box1 -13660,32,100 // Sahkkat_Box1 -13661,32,100 // Lord_Circlet_Box1 -13662,32,100 // Elven_Ears_Box1 -13663,32,100 // Steel_Flower_Box1 -13664,32,100 // Critical_Ring_Box1 -13665,32,100 // Earring_Box1 -13666,32,100 // Ring_Box1 -13667,32,100 // Necklace_Box1 -13668,32,100 // Glove_Box1 -13669,32,100 // Brooch_Box1 -13670,32,100 // Rosary_Box1 -13671,32,100 // Safety_Ring_Box1 -13672,32,100 // Vesper_Core01_Box1 -13673,32,100 // Vesper_Core02_Box1 -13674,32,100 // Vesper_Core03_Box1 -13675,32,100 // Vesper_Core04_Box1 -13676,32,100 // Drooping_Kitty_Box1 -13677,32,100 // Magestic_Goat_Box1 -13678,32,100 // Deviruchi_Cap_Box1 -13679,32,100 // Executioner_Box1 -13680,32,100 // Brood_Axe_Box1 -13681,32,100 // Tomahawk_Box1 -13682,32,100 // Bow_Of_Rudra_Box1 -13683,32,100 // Cutlas_Box1 -13684,32,100 // Solar_Sword_Box1 -13685,32,100 // Sword_Breaker_Box1 -13686,32,100 // Mail_Breaker_Box1 -13687,32,100 // Moonlight_Sword_Box1 -13688,32,100 // Spanner_Box1 -13689,32,100 // Bok_Choy_Box -13690,32,100 // Chung_E_Cake_Box -13691,32,100 // Freyja_Overcoat_Box -13692,32,100 // Freyja_Boots_Box -13693,32,100 // Freyja_Cape_Box -13694,32,100 // Freyja_Crown_Box -13695,32,100 // Battle_Manual25_Box -13696,32,100 // Battle_Manual100_Box -13696,32,100 // Battle_Manual100_Box -13697,32,100 // J_Blessing10_Box -13698,32,100 // J_Inc_Agi10_Box -13699,32,100 // J_Wind_Walk10_Box -13700,32,100 // J_Adrenaline10_Box -13701,32,100 // Pet_Egg_Scroll12 -13702,32,100 // Pet_Egg_Scroll13 -13703,32,100 // Pet_Egg_Scroll14 -13704,32,100 // Super_Pet_Egg5 -13705,32,100 // Super_Pet_Egg6 -13706,32,100 // Super_Pet_Egg7 -13707,32,100 // Super_Pet_Egg8 -13708,32,100 // Pet_Egg_Scroll_E -13709,32,100 // BRO_Package_1 -13710,32,100 // Max_Weight_Up_Box -13711,32,100 // Small_Life_Potion_Box -13712,32,100 // Small_Life_Potion_Box30 -13713,32,100 // Small_Life_Potion_Box50 -13714,32,100 // Med_Life_Potion_Box -13715,32,100 // Med_Life_Potion_Box30 -13716,32,100 // Med_Life_Potion_Box50 -13717,32,100 // Abrasive_Box5 -13718,32,100 // Abrasive_Box10 -13719,32,100 // Regeneration_Box5 -13720,32,100 // Regeneration_Box10 -13721,32,100 // Dun_Tele_Scroll_Box10 -13722,32,100 // Pecopeco_Hairband_Box -13723,32,100 // Red_Glasses_Box -13724,32,100 // Whisper_Mask_Box -13725,32,100 // Ramen_Hat_Box -13726,32,100 // Gold_Box_ -13727,32,100 // Silver_Box_ -13728,32,100 // Gold_Key1_Box -13729,32,100 // Gold_Key5_Box -13730,32,100 // Silver_Key1_Box -13731,32,100 // Silver_Key5_Box -13734,32,100 // Pecopeco_Hairband_Box1 -13735,32,100 // Red_Glasses_Box1 -13736,32,100 // Whisper_Mask_Box1 -13737,32,100 // Ramen_Hat_Box1 -13738,32,100 // Glass_Of_Illusion_Box5 -13739,32,100 // Glass_Of_Illusion_Box10 -13740,32,100 // Shadow_Armor_S_Box5 -13741,32,100 // Shadow_Armor_S_Box10 -13742,32,100 // Shadow_Armor_S_Box30 -13743,32,100 // Holy_Armor_S_Box5 -13744,32,100 // Holy_Armor_S_Box10 -13745,32,100 // Holy_Armor_S_Box30 -13746,32,100 // S_Def_Potion_Box10 -13747,32,100 // S_Def_Potion_Box30 -13748,32,100 // S_Def_Potion_Box50 -13749,32,100 // B_Def_Potion_Box10 -13750,32,100 // B_Def_Potion_Box30 -13751,32,100 // B_Def_Potion_Box50 -13752,32,100 // S_Mdef_Potion_Box10 -13753,32,100 // S_Mdef_Potion_Box30 -13754,32,100 // S_Mdef_Potion_Box50 -13755,32,100 // B_Mdef_Potion_Box10 -13756,32,100 // B_Mdef_Potion_Box30 -13757,32,100 // B_Mdef_Potion_Box50 -13758,32,100 // Battle_Manual_X3_Box -13759,32,100 // In_Blue_Herb_Box -13760,32,100 // Honey_Box -13761,32,100 // Empty_Bottle_Box -13762,32,100 // In_Royal_Jelly_Box -13764,32,100 // Battle_Manual_Box_TW -13766,32,100 // Nagan_Box -13767,32,100 // Skewer_Box -13768,32,100 // Survival_Rod_Box -13769,32,100 // Quadrille_Box -13770,32,100 // Great_Axe_Box -13771,32,100 // Bloody_Roar_Box -13772,32,100 // Hardback_Box -13773,32,100 // Fire_Brand_Box -13774,32,100 // Immaterial_Sword_Box -13775,32,100 // Unholy_Touch_Box -13776,32,100 // Cloak_Of_Survival_Box -13777,32,100 // Masquerade_Box -13778,32,100 // Orc_Hero_Helm_Box -13779,32,100 // Evil_Wing_Ears_Box -13780,32,100 // Dark_Blindfold_Box -13781,32,100 // kRO_Drooping_Kitty_Box -13782,32,100 // Corsair_Box -13783,32,100 // Bloody_Iron_Ball_Box -13784,32,100 // Spiritual_Ring_Box -13785,32,100 // Nagan_Box1 -13786,32,100 // Skewer_Box1 -13787,32,100 // Survival_Rod_Box1 -13788,32,100 // Quadrille_Box1 -13789,32,100 // Great_Axe_Box1 -13790,32,100 // Bloody_Roar_Box1 -13791,32,100 // Hardback_Box1 -13792,32,100 // Fire_Brand_Box1 -13793,32,100 // Immaterial_Sword_Box1 -13794,32,100 // Unholy_Touch_Box1 -13795,32,100 // Cloak_Of_Survival_Box1 -13796,32,100 // Masquerade_Box1 -13797,32,100 // Orc_Hero_Helm_Box1 -13798,32,100 // Evil_Wing_Ears_Box1 -13799,32,100 // Dark_Blindfold_Box1 -13800,32,100 // kRO_Drooping_Kitty_Box1 -13801,32,100 // Corsair_Box1 -13802,32,100 // Bloody_Iron_Ball_Box1 -13803,32,100 // Spiritual_Ring_Box1 -13804,32,100 // Fire_Cracker_Love_Box -13805,32,100 // Fire_Cracker_Wday_Box -13806,32,100 // Fire_Cracker_Vday_Box -13807,32,100 // Fire_Cracker_Bday_Box -13808,32,100 // Fire_Cracker_Xmas_Box -13809,32,100 // Blue_Gemstone_Box -13810,32,100 // Blue_Potion_Box -13811,32,100 // Food_Box_Lv1 -13812,32,100 // Food_Box_Lv2 -13813,32,100 // Food_Box_Lv3 -13814,32,100 // Indonesia_Box -13815,32,100 // Knife_Goblin_Box -13816,32,100 // Flail_Goblin_Box -13817,32,100 // Hammer_Goblin_Box -13818,32,100 // Red_Deleter_Box -13819,32,100 // Diabolic_Box -13820,32,100 // Wanderer_Box -13821,32,100 // Green_Apple_Box -13822,32,100 // Whole_Barbecue_Box -13823,32,100 // Meat_Veg_Skewer_Box -13824,32,100 // Spirit_Liquor_Box -13826,32,100 // Power_Box1 -13827,32,100 // Power_Box2 -13828,32,100 // Resist_Box1 -13829,32,100 // Resist_Box2 -13830,32,100 // Stat_Boost1 -13831,32,100 // Stat_Boost2 -13832,32,100 // Stat_Boost3 -13833,32,100 // Stat_Boost4 -13834,32,100 // Dun_Tele_Scroll2_Box5 -13835,32,100 // Dun_Tele_Scroll2_Box10 -13836,32,100 // Mbl_Str_Dish_Box -13837,32,100 // Mbl_Agi_Dish_Box -13838,32,100 // Mbl_Int_Dish_Box -13839,32,100 // Mbl_Dex_Dish_Box -13840,32,100 // Mbl_Luk_Dish_Box -13841,32,100 // Mbl_Vit_Dish_Box -13842,32,100 // Mbl_Kafra_Card_Box -13843,32,100 // Mbl_Battle_Manual_Box -13844,32,100 // Heroic_Stone_Box -13845,32,100 // Mysterious_Travel_Sack1 -13846,32,100 // Mysterious_Travel_Sack2 -13847,32,100 // Mysterious_Travel_Sack3 -13848,32,100 // Mysterious_Travel_Sack4 -13849,32,100 // WOB_Box_Rune5 -13850,32,100 // WOB_Box_Rune10 -13851,32,100 // WOB_Box_Schawaltz5 -13852,32,100 // WOB_Box_Schawaltz10 -13853,32,100 // WOB_Box_Rachel5 -13854,32,100 // WOB_Box_Rachel10 -13855,32,100 // WOB_Box_Local5 -13856,32,100 // WOB_Box_Local10 -13857,32,100 // Spark_Candy_Box5 -13858,32,100 // Spark_Candy_Box10 -13861,32,100 // Mini_Battle_Manual_Box -13862,32,100 // Trial_Box -13863,32,100 // Repair_Scroll_Box10 -13864,32,100 // Hockey_Mask_Box -13865,32,100 // Observer_Box -13866,32,100 // Flying_Angel_Box -13867,32,100 // Neko_Mimi_Box -13868,32,100 // MFH_Box -13869,32,100 // Chick_Hat_Box -13870,32,100 // New_Style_Box -13871,32,100 // Magician_Card_Box -13872,32,100 // Acolyte_Card_Box -13873,32,100 // Archer_Card_Box -13874,32,100 // Swordman_Card_Box -13875,32,100 // Thief_Card_Box -13876,32,100 // Merchant_Card_Box -13877,32,100 // Clock_Tower_Card_Box -13878,32,100 // Geffenia_Card_Box -13879,32,100 // Owl_Card_Box -13880,32,100 // Ghost_Card_Box -13881,32,100 // Nightmare_Card_Box -13882,32,100 // Curse_Card_Box -13883,32,100 // Sleep_Card_Box -13884,32,100 // Freeze_Card_Box -13885,32,100 // Stun_Card_Box -13886,32,100 // Silence_Card_Box -13887,32,100 // Blind_Card_Box -13888,32,100 // Chaos_Card_Box -13889,32,100 // Elunium_Box_ -13890,32,100 // Oridecon_Box_ -13891,32,100 // Fire_Converter_Box -13892,32,100 // Water_Converter_Box -13893,32,100 // Wind_Converter_Box -13894,32,100 // Earth_Converter_Box -13895,32,100 // Starter_Pack -13896,32,100 // Mimic_Summon_Box5 -13897,32,100 // Disguise_Summon_Box5 -13898,32,100 // Alice_Summon_Box5 -13899,32,100 // Mimic_Summon_Box10 -13900,32,100 // Disguise_Summon_Box10 -13901,32,100 // Alice_Summon_Box10 -13902,32,100 // Fish_Head_Hat_Box -13903,32,100 // Santa_Poring_Hat_Box -13904,32,100 // Bell_Ribbon_Box -13905,32,100 // Hard_Core_Set_Box -13906,32,100 // Kitty_Set_Box -13907,32,100 // Soft_Core_Set_Box -13908,32,100 // Deviruchi_Set_Box -13909,32,100 // MVP_Hunt_Box -13910,32,100 // Brewing_Box -13911,32,100 // Christmas_Pet_Scroll -13912,32,100 // Pty_Blessing_Box -13913,32,100 // Pty_Inc_Agi_Box -13914,32,100 // Pty_Assumptio_Box -13915,32,100 // Love_Angel_Box -13916,32,100 // Squirrel_Box -13917,32,100 // Gogo_Box -13918,32,100 // Drooping_W_Kitty_Box -13919,32,100 // L_Magestic_Goat_Box -13920,32,100 // Satanic_Chain_P_Box -13921,32,100 // Antique_Pipe_Box -13922,32,100 // Rabbit_Ear_Hat_Box -13923,32,100 // Darkness_Helm_Box -13924,32,100 // L_Orc_Hero_Helm_Box -13925,32,100 // Lucky_Scroll08 -13926,32,100 // Crusader_Card_Box -13927,32,100 // Alchemist_Card_Box -13928,32,100 // Rogue_Card_Box -13929,32,100 // Bard_Dancer_Card_Box -13930,32,100 // Sage_Card_Box -13931,32,100 // Monk_Card_Box -13932,32,100 // Sylph_Box -13933,32,100 // Undine_Box -13934,32,100 // Salamander_Box -13935,32,100 // Soul_Box -13936,32,100 // Noum_Box -13937,32,100 // Robo_Eye_Box -13938,32,100 // Twin_Ribbon_Box -13939,32,100 // Diadem_Box -13940,32,100 // Siege_Tele_Scroll_Box -13940,32,100 // Siege_Tele_Scroll_Box -13941,32,100 // TW_Valentine_Scroll -13942,32,100 // Love_Angel_Box_1m -13943,32,100 // Squirrel_Box_1m -13944,32,100 // Gogo_Box_1m -13945,32,100 // Br_SwordPackage -13946,32,100 // Br_MagePackage -13947,32,100 // Br_AcolPackage -13948,32,100 // Br_ArcherPackage -13949,32,100 // Br_MerPackage -13950,32,100 // Br_ThiefPackage -13951,32,100 // Wasteland_Outlaw_Box -13952,32,100 // Lever_Action_Rifle_Box -13953,32,100 // All_In_One_Ring_Box -13954,32,100 // Spiritual_Tunic_Box -13955,32,100 // Recuperative_Armor_Box -13956,32,100 // Shelter_Resistance_Box -13957,32,100 // Sylphid_Manteau_Box -13958,32,100 // Refresh_Shoes_Box -13959,32,100 // Toast_Box -13960,32,100 // Name_Change_Coupon_Box -13961,32,100 // Mojji_Box -13962,32,100 // Deprotai_Doll_Hat_Box -13963,32,100 // Claris_Doll_Hat_Box -13964,32,100 // Sorin_Doll_Hat_Box -13965,32,100 // Tayelin_Doll_Hat_Box -13966,32,100 // Binit_Doll_Hat_Box -13967,32,100 // Debril_Doll_Hat_Box -13968,32,100 // Bubblegum_Lower_Box -13969,32,100 // Lucky_Clip_Box -13970,32,100 // Iron_10_Box -13971,32,100 // Steel_10_Box -13972,32,100 // Coal_10_Box -13973,32,100 // Poison_Bottle_30_Box -13974,32,100 // TW_Scroll01 -13975,32,100 // Picture_Diary_Box -13976,32,100 // Mini_Heart_Box -13977,32,100 // Newcomer_Box -13978,32,100 // Kid_Box -13979,32,100 // Magic_Castle_Box -13980,32,100 // Bulging_Head_Box -13981,32,100 // Picture_Diary_Box_1m -13982,32,100 // Mini_Heart_Box_1m -13983,32,100 // Newcomer_Box_1m -13984,32,100 // Kid_Box_1m -13985,32,100 // Magic_Castle_Box_1m -13986,32,100 // Bulging_Head_Box_1m -13987,32,100 // Ori_Stone_5_Box -13988,32,100 // Ori_Stone_50_Box -13989,32,100 // Acidbomb_10_Box -13990,32,100 // Job_Manual50_Box -13991,32,100 // Tiger_Mask_Box -13992,32,100 // Cat_Hat_Box -13993,32,100 // Alice_Doll_Box -13994,32,100 // Speed_Up_Potion_Box5 -13995,32,100 // Speed_Up_Potion_Box10 -13996,32,100 // Big_Bun_Box100 -13997,32,100 // Big_Bun_Box500 -13998,32,100 // Giant_Flywing_Box500 -13999,32,100 // Pill_Box100 -14000,32,100 // Pill_Box500 -14001,32,100 // Basic_Siege_Supply_Box -14002,32,100 // Adv_Siege_Supply_Box -14003,32,100 // Elite_Siege_Supply_Box -14004,32,100 // Poison_Bottle_10_Box -14005,32,100 // Poison_Bottle_5_Box -14006,32,100 // F_Drooping_W_Kitty_Box -14007,32,100 // F_Rabbit_Ear_Hat_Box -14008,32,100 // F_L_Orc_Hero_Helm_Box -14009,32,100 // F_Love_Angel_Box -14010,32,100 // F_Squirrel_Box -14011,32,100 // F_Gogo_Box -14012,32,100 // F_Love_Angel_Box_1m -14013,32,100 // F_Squirrel_Box_1m -14014,32,100 // F_Gogo_Box_1m -14015,32,100 // F_Wasteland_Outlaw_Box -14016,32,100 // F_Lever_Action_Rifle_Box -14017,32,100 // F_All_In_One_Ring_Box -14018,32,100 // F_Spritual_Tunic_Box -14019,32,100 // F_Recuperative_Box -14020,32,100 // F_Shelter_Resist_Box -14021,32,100 // F_Sylphid_Manteau_Box -14022,32,100 // F_Refresh_Shoes_Box -14023,32,100 // F_Toast_Box -14024,32,100 // F_Robo_Eye_Box -14025,32,100 // F_Twin_Ribbon_Box -14026,32,100 // F_Diadem_Box -14027,32,100 // F_Fish_Head_Hat_Box -14028,32,100 // F_Santa_Poring_Hat_Box -14029,32,100 // F_Bell_Ribbon_Box -14030,32,100 // F_Mimic_Scroll_Box5 -14031,32,100 // F_Disguise_Scroll_Box5 -14032,32,100 // F_Alice_Scroll_Box5 -14033,32,100 // F_Mimic_Scroll_Box10 -14034,32,100 // F_Disguise_Scroll_Box10 -14035,32,100 // F_Alice_Scroll_Box10 -14036,32,100 // F_New_Style_Coupon_Box -14037,32,100 // F_Repair_Scroll_Box -14038,32,100 // F_Repair_Scroll_Box10 -14039,32,100 // F_Hockey_Mask_Box -14040,32,100 // F_Observer_Box -14041,32,100 // F_WOB_Rune_Box5 -14042,32,100 // F_WOB_Rune_Box10 -14043,32,100 // F_WOB_Schwaltz_Box5 -14044,32,100 // F_WOB_Schwaltz_Box10 -14045,32,100 // F_WOB_Rachel_Box5 -14046,32,100 // F_WOB_Rachel_Box10 -14047,32,100 // F_WOB_Local_Box5 -14048,32,100 // F_WOB_Local_Box10 -14049,32,100 // F_Spark_Candy_Box5 -14050,32,100 // F_Spark_Candy_Box10 -14051,32,100 // F_Dun_Tel_Scroll2_Box5 -14052,32,100 // F_Dun_Tel_Scroll2_Box10 -14053,32,100 // F_Little_Angel_Doll_Box -14054,32,100 // F_Triple_Poring_Hat_Box -14055,32,100 // F_Nagan_Box -14056,32,100 // F_Skewer_Box -14057,32,100 // F_Survival_Rod_Box -14058,32,100 // F_Quadrille_Box -14059,32,100 // F_Great_Axe_Box -14060,32,100 // F_Bloody_Roar_Box -14061,32,100 // F_Hardback_Box -14062,32,100 // F_Fire_Brand_Box -14063,32,100 // F_Immaterial_Sword_Box -14064,32,100 // F_Unholy_Touch_Box -14065,32,100 // F_Clack_Of_Servival_Box -14066,32,100 // F_Masquerade_Box -14067,32,100 // F_Orc_Hero_Helm_Box -14068,32,100 // F_Ear_Of_Devil_Wing_Box -14069,32,100 // F_Dark_Blindfold_Box -14070,32,100 // F_K_Drooping_Kitty_Box -14071,32,100 // F_Corsair_Box -14072,32,100 // F_Bloody_Iron_Ball_Box -14073,32,100 // F_Spiritual_Ring_Box -14074,32,100 // F_G_O_I_Box5 -14075,32,100 // F_G_O_I_Box10 -14076,32,100 // F_Shadow_Armor_S_Box5 -14077,32,100 // F_Shadow_Armor_S_Box10 -14078,32,100 // F_Shadow_Armor_S_Box30 -14079,32,100 // F_Holy_Armor_S_Box5 -14080,32,100 // F_Holy_Armor_S_Box10 -14081,32,100 // F_Holy_Armor_S_Box30 -14082,32,100 // FS_Def_Potion_Box10 -14083,32,100 // FS_Def_Potion_Box30 -14084,32,100 // FS_Def_Potion_Box50 -14085,32,100 // FB_Def_Potion_Box10 -14086,32,100 // FB_Def_Potion_Box30 -14087,32,100 // FB_Def_Potion_Box50 -14088,32,100 // FS_Mdef_Potion_Box10 -14089,32,100 // FS_Mdef_Potion_Box30 -14090,32,100 // FS_Mdef_Potion_Box50 -14091,32,100 // FB_Mdef_Potion_Box10 -14092,32,100 // FB_Mdef_Potion_Box30 -14093,32,100 // FB_Mdef_Potion_Box50 -14094,32,100 // F_Flying_Angel_Box -14095,32,100 // F_Cat_Hat_Box -14096,32,100 // F_M_F_H_Box -14097,32,100 // F_Chick_Hat_Box -14098,32,100 // F_Pecopeco_Hairband_Box -14099,32,100 // F_Red_Glasses_Box -14100,32,100 // F_Whisper_Mask_Box -14101,32,100 // F_Ramen_Hat_Box -14102,32,100 // F_Dun_Tele_Scroll1_Box -14103,32,100 // F_Max_Weight_Up_Box -14104,32,100 // F_S_Life_Potion_Box -14105,32,100 // F_S_Life_Potion_Box30 -14106,32,100 // F_S_Life_Potion_Box50 -14107,32,100 // F_M_Life_Potion_Box -14108,32,100 // F_M_Life_Potion_Box30 -14109,32,100 // F_M_Life_Potion_Box50 -14110,32,100 // F_Abrasive_Box5 -14111,32,100 // F_Abrasive_Box10 -14112,32,100 // F_Regeneration_Box5 -14113,32,100 // F_Regeneration_Box10 -14114,32,100 // F_Dun_Tele_Scroll_Box10 -14115,32,100 // F_Infiltrator_Box -14116,32,100 // F_Muramasa_Box -14117,32,100 // F_Excalibur_Box -14118,32,100 // F_Combat_Knife_Box -14119,32,100 // F_Counter_Dagger_Box -14120,32,100 // F_Kaiser_Knuckle_Box -14121,32,100 // F_Mighty_Staff_Box -14122,32,100 // F_Right_Epsilon_Box -14123,32,100 // F_Balistar_Box -14124,32,100 // F_Diary_Of_Great_Sage -14125,32,100 // F_Asura_Box -14126,32,100 // F_Apple_Of_Archer_Box -14127,32,100 // F_Bunny_Band_Box -14128,32,100 // F_Sahkkat_Box -14129,32,100 // F_Lord_Circlet_Box -14130,32,100 // F_Elven_Ears_Box -14131,32,100 // F_Steel_Flower_Box -14132,32,100 // F_Critical_Ring_Box -14133,32,100 // F_Earring_Box -14134,32,100 // F_Ring_Box -14135,32,100 // F_Necklace_Box -14136,32,100 // F_Glove_Box -14137,32,100 // F_Brooch_Box -14138,32,100 // F_Rosary_Box -14139,32,100 // F_Safety_Ring_Box -14140,32,100 // F_Vesper_Core_Box01 -14141,32,100 // F_Vesper_Core_Box02 -14142,32,100 // F_Vesper_Core_Box03 -14143,32,100 // F_Vesper_Core_Box04 -14144,32,100 // F_Vigorgra_Package1 -14145,32,100 // F_Vigorgra_Package2 -14146,32,100 // F_Vigorgra_Package3 -14147,32,100 // F_Vigorgra_Package4 -14148,32,100 // F_Vigorgra_Package5 -14149,32,100 // F_Vigorgra_Package6 -14150,32,100 // F_Vigorgra_Package7 -14151,32,100 // F_Vigorgra_Package8 -14152,32,100 // F_Vigorgra_Package9 -14153,32,100 // F_Vigorgra_Package10 -14154,32,100 // F_Vigorgra_Package11 -14155,32,100 // F_Vigorgra_Package12 -14156,32,100 // F_Battle_Manual_Box -14157,32,100 // F_Insurance_Package -14158,32,100 // F_Bubble_Gum_Box -14159,32,100 // F_Str_Dish_Box -14160,32,100 // F_Agi_Dish_Box -14161,32,100 // F_Int_Dish_Box -14162,32,100 // F_Dex_Dish_Box -14163,32,100 // F_Luk_Dish_Box -14164,32,100 // F_Vit_Dish_Box -14165,32,100 // F_Kafra_Card_Box -14166,32,100 // F_Giant_Fly_Wing_Box -14167,32,100 // F_Neuralizer_Box -14168,32,100 // F_Convex_Mirror_Box -14169,32,100 // F_Blessing_10_Scroll_Box -14170,32,100 // F_Inc_Agi_10_Scroll_Box -14171,32,100 // F_Aspersio_5_Scroll_Box -14172,32,100 // F_Assumptio_5_Scroll_Box -14173,32,100 // F_Wind_Walk_10_Scroll_Box -14174,32,100 // F_Adrenaline_Scroll_Box -14175,32,100 // F_Megaphone_Box -14176,32,100 // F_Enriched_Elunium_Box -14177,32,100 // F_Enriched_Oridecon_Box -14178,32,100 // F_Token_Of_Siegfried_Box -14179,32,100 // F_Giant_Fly_Wing_Box50 -14180,32,100 // F_Giant_Fly_Wing_Box100 -14181,32,100 // F_Dex_Dish_Box30 -14182,32,100 // F_Dex_Dish_Box50 -14183,32,100 // F_Luk_Dish_Box30 -14184,32,100 // F_Luk_Dish_Box50 -14185,32,100 // F_Inc_Agi_10_Box30 -14186,32,100 // F_Inc_Agi_10_Box50 -14187,32,100 // F_Vit_Dish_Box30 -14188,32,100 // F_Vit_Dish_Box50 -14189,32,100 // F_Insurance_Package30 -14190,32,100 // F_Insurance_Package50 -14191,32,100 // F_Convex_Mirror_Box5 -14192,32,100 // F_Convex_Mirror_Box30 -14193,32,100 // F_Blessing10_Box30 -14194,32,100 // F_Blessing10_Box50 -14195,32,100 // F_Adrenaline10_Box30 -14196,32,100 // F_Adrenaline10_Box50 -14197,32,100 // F_Assumptio_5_Box30 -14198,32,100 // F_Assumptio_5_Box50 -14199,32,100 // F_Aspersio_5_Box30 -14200,32,100 // F_Aspersio_5_Box50 -14201,32,100 // F_Agi_Dish_Box30 -14202,32,100 // F_Agi_Dish_Box50 -14203,32,100 // F_Wind_Walk10_Box30 -14204,32,100 // F_Wind_Walk10_Box50 -14205,32,100 // F_Int_Dish_Box30 -14206,32,100 // F_Int_Dish_Box50 -14207,32,100 // F_Battle_Manual_Box1 -14208,32,100 // F_Battle_Manual_Box5 -14209,32,100 // F_Siegfried_Box5 -14210,32,100 // F_Siegfried_Box20 -14211,32,100 // F_Kafra_Card_Box30 -14212,32,100 // F_Kafra_Card_Box50 -14213,32,100 // F_Str_Dish_Box30 -14214,32,100 // F_Str_Dish_Box50 -14215,32,100 // F_Bubble_Gum_Box1 -14216,32,100 // F_Bubble_Gum_Box5 -14217,32,100 // F_Megaphone_Box1 -14218,32,100 // F_Megaphone_Box5 -14219,32,100 // F_Enriched_Elunium_Box5 -14220,32,100 // F_Enriched_Oridecon_Box5 -14221,32,100 // MP_Scroll_Box -14222,32,100 // MP_Scroll_Box30 -14223,32,100 // MP_Scroll_Box50 -14224,32,100 // Quagmire_Scroll_Box -14225,32,100 // Quagmire_Scroll_Box30 -14226,32,100 // Quagmire_Scroll_Box50 -14227,32,100 // Healing_Staff_Box -14228,32,100 // Praxinus_Box -14229,32,100 // Sakura_Scroll -14230,32,100 // Note_Headphones_Box -14231,32,100 // Novice_Breastplate_Boxes -14232,32,100 // Yggdrasilberry_Box_ -14233,32,100 // Dead_Tree_Branch_Box1 -14234,32,100 // Dead_Tree_Branch_Box2 -14235,32,100 // Field_Manual_Box_2 -14236,32,100 // Steamed_Tongue_Box_20 -14237,32,100 // Steamed_Desert_Scorpions_Box_20 -14238,32,100 // Stew_Of_Immortality_Box_20 -14239,32,100 // Dragon_Breath_Cocktail_Box_20 -14240,32,100 // Hwergelmir's_Tonic_Box_20 -14241,32,100 // Nine_Tail_Dish_Box_20 -14242,32,100 // Beholder_Ring_Box -14243,32,100 // Hallow_Ring_Box -14244,32,100 // Clamorous_Ring_Box -14245,32,100 // Chemical_Ring_Box -14246,32,100 // Insecticide_Ring_Box -14247,32,100 // Fisher_Ring_Box -14248,32,100 // Decussate_Ring_Box -14249,32,100 // Bloody_Ring_Box -14250,32,100 // Satanic_Ring_Box -14251,32,100 // Dragoon_Ring_Box -14252,32,100 // Beholder_Ring_Box2 -14253,32,100 // Hallow_Ring_Box2 -14254,32,100 // Clamorous_Ring_Box2 -14255,32,100 // Chemical_Ring_Box2 -14256,32,100 // Insecticide_Ring_Box2 -14257,32,100 // Fisher_Ring_Box2 -14258,32,100 // Decussate_Ring_Box2 -14259,32,100 // Bloody_Ring_Box2 -14260,32,100 // Satanic_Ring_Box2 -14261,32,100 // Dragoon_Ring_Box2 -14262,32,100 // Diary_Magic_Powder_Box -14263,32,100 // Mini_Heart_Magic_Powder_Box -14264,32,100 // Freshman_Magic_Powder_Box -14265,32,100 // Kid_Magic_Powder_Box -14266,32,100 // Magic_Magic_Powder_Box -14267,32,100 // JJangu_Magic_Powder_Box -14268,32,100 // Diary_Magic_Powder_Box4 -14269,32,100 // Mini_Heart_Magic_Powder_Box4 -14270,32,100 // Freshman_Magic_Powder_Box4 -14271,32,100 // Kid_Magic_Powder_Box4 -14272,32,100 // Magic_Magic_Powder_Box4 -14273,32,100 // JJangu_Magic_Powder_Box4 -14274,32,100 // Amplification_10_Scroll_Box2 -14275,32,100 // Amplification_30_Scroll_Box2 -14276,32,100 // Amplification_50_Scroll_Box2 -14277,32,100 // Quagmire_10_Scroll_Box2 -14278,32,100 // Quagmire_30_Scroll_Box2 -14279,32,100 // Quagmire_50_Scroll_Box2 -14280,32,100 // Healing_Staff_Box2 -14281,32,100 // Praccsinos_Box -14282,32,100 // Emperium_Box -14283,32,100 // Marriage_Certificate_Box -14284,32,100 // Muffler_Box -14285,32,100 // Balkiriah_Shield_Box -14286,32,100 // Skull_Ring_Box -14287,32,100 // Baricade_Repair_Kit -14288,32,100 // Guardian_Stone_Repair_Kit -14289,32,100 // Cloth_Dye_Coupon_Box -14290,32,100 // Cloth_Dye_Coupon2_Box -14291,32,100 // Cloth_Dye_Coupon3_Box -14292,32,100 // Cloth_Dye_Coupon4_Box -14293,32,100 // Mercenary_Contract_Box -14294,32,100 // Mercenary_Contract_Box5 -14295,32,100 // Mercenary_Contract_Box10 -14296,32,100 // Angel_Scroll -14297,32,100 // Devil_Scroll -14298,32,100 // Surprise_Scroll -//14299,32,100 // -14300,32,100 // Mask_Of_Ifrit_Box -14301,32,100 // Ifrit's_Ear_Box -//14302,32,100 // -//14303,32,100 // -14304,32,100 // Scuba_Mask_Box -//14305,32,100 // -14306,32,100 // RWC_Special_Scroll -14307,32,100 // RWC_Limited_Scroll -14308,32,100 // Ardor_Scroll -//14309,32,100 // -//14310,32,100 // -//14311,32,100 // -//14312,32,100 // -//14313,32,100 // -14314,32,100 // PhreeoniS_Box -14315,32,100 // GhostringS_Box -14316,32,100 // July7_Scroll -14317,32,100 // Bacsojin_Scroll -//14318,32,100 // -//14319,32,100 // -//14320,32,100 // -14321,32,100 // Holy_Sabre_Box -14322,32,100 // Book_Of_Prayer_Box -14323,32,100 // Phenomena_Whip_Box -14324,32,100 // Staff_Of_Darkness_Box -14325,32,100 // Monk_Knuckle_Box -14326,32,100 // Mace_Of_Madness_Box -14327,32,100 // Spear_Of_Excellent_Box -14328,32,100 // Bow_Of_Evil_Box -14329,32,100 // Katar_Of_Speed_Box -14330,32,100 // Sharpshooter_Revolver_Box -//14331,32,100 // -//14332,32,100 // -//14333,32,100 // -//14334,32,100 // -//14335,32,100 // -//14336,32,100 // -//14337,32,100 // -//14338,32,100 // -//14339,32,100 // -//14340,32,100 // -//14341,32,100 // -//14342,32,100 // -14343,32,100 // Spiked_Scarf_Box -14344,32,100 // Rainbow_Scarf_Box -14345,32,100 // Animal_Scroll -//14346,32,100 // -//14347,32,100 // -//14348,32,100 // -14349,32,100 // Mental_Potion20_Box -14350,32,100 // Mental_Potion50_Box -14351,32,100 // Tyr's_Blessing20_Box -14352,32,100 // Tyr's_Blessing50_Box -//14353,32,100 // -//14354,32,100 // -//14355,32,100 // -//14356,32,100 // -//14357,32,100 // -//14358,32,100 // -//14359,32,100 // -//14360,32,100 // -14361,32,100 // Orc_HeroS_Box -14362,32,100 // Orc_LoadS_Box -14363,32,100 // Heart_Scroll -//14364,32,100 // -//14365,32,100 // -//14366,32,100 // -//14367,32,100 // -//14368,32,100 // -//14369,32,100 // -14381,32,100 // Piercing_Box_M -14382,32,100 // Lich_Bone_Box_M -14383,32,100 // Long_Horn_Box_M -14384,32,100 // Hunting_Spear_Box_M -14385,32,100 // Death_Note_Box_M -14386,32,100 // Destruction_Box_M -14387,32,100 // Rider_Insignia_Box_M -14388,32,100 // Mithril_Cape_Box_M -14389,32,100 // Sniping_Box_M -14390,32,100 // Orleans_Box_M -14391,32,100 // Spiritual_Box_M -14392,32,100 // Variant_Box_M -14393,32,100 // Almighty_Charm_Box -//14394,32,100 // -//14395,32,100 // -//14396,32,100 // -//14397,32,100 // -//14398,32,100 // -//14399,32,100 // -//14400,32,100 // -//14401,32,100 // -//14402,32,100 // -//14403,32,100 // -//14404,32,100 // -//14405,32,100 // -//14406,32,100 // -14407,32,100 // Xmas_Scroll -14408,32,100 // New_Year_Scroll -//14409,32,100 // -//14410,32,100 // -//14411,32,100 // -//14412,32,100 // -//14413,32,100 // -//14414,32,100 // -//14415,32,100 // -//14416,32,100 // -//14417,32,100 // -//14418,32,100 // -//14419,32,100 // -//14420,32,100 // -//14421,32,100 // -//14422,32,100 // -//14423,32,100 // -//14424,32,100 // -14426,32,100 // Fortune_Sword_Box -14427,32,100 // House_Auger_Box -14428,32,100 // Kamaitachi_Box -14429,32,100 // Berserk_Guitar_Box -14430,32,100 // Doom_Slayer_Box -14431,32,100 // Huuma_Blaze_Shuriken_Box -14432,32,100 // Odin's_Blessing_Box -14433,32,100 // Ring_Of_Flame_Lord_Box -14434,32,100 // Ring_Of_Resonance_Box -14435,32,100 // Boys_Cap_Box -14436,32,100 // Ulle's_Cap_Box -14437,32,100 // Sphinx_Helm_Box -14438,32,100 // Honglyun's_Sword_Box -14439,32,100 // Power_Of_Thor_Box -14440,32,100 // Dice_Hat_Box -14441,32,100 // King_Tiger_Doll_Hat_Box -14442,32,100 // Wondering_Wolf_Helm_Box -14443,32,100 // Pizza_Hat_Box -14444,32,100 // Icecream_Hat_Box -//14445,32,100 // -//14446,32,100 // -14447,32,100 // Pirate's_Pride_Box -14448,32,100 // Necromencer's_Hood_Box -//14449,32,100 // -//14450,32,100 // -14459,32,100 // Rabbit_Magic_Hat_Box -14460,32,100 // China_Wedding_Veil_Box -14461,32,100 // Asara_Fairy_Hat_Box -//14462,32,100 // -//14463,32,100 // -//14464,32,100 // -//14465,32,100 // -14488,32,100 // Blue_Pajamas_Hat_Box -14489,32,100 // Pink_Pajamas_Hat_Box -14490,32,100 // Shark_Hat_Box -//14491,32,100 // -//14492,32,100 // -//14493,32,100 // -14494,32,100 // Samambaia_Box -14499,32,100 // Peacock_Feather_Box -14500,32,100 // Insurance60 -14508,32,100 // Zeny_Scroll -14509,32,100 // Light_Center_Pot -14510,32,100 // Light_Awakening_Pot -14511,32,100 // Light_Berserk_Pot -14512,32,100 // Meteor_10_Scroll -14513,32,100 // Storm_10_Scroll -14514,32,100 // Vermilion_10_Scroll -14515,32,100 // Lex_Aeterna_Scroll -14516,32,100 // Magnificat_5_Scroll -14517,32,100 // CP_Helm_Scroll -14518,32,100 // CP_Shield_Scroll -14519,32,100 // CP_Armor_Scroll -14520,32,100 // CP_Weapon_Scroll -14521,32,100 // Repair_Scroll -14522,32,100 // Big_Bun -14523,32,100 // Pill_ -14524,32,100 // Superb_Fish_Slice -14525,32,100 // Chewy_Ricecake -14526,32,100 // Oriental_Pastry -14527,32,100 // Dun_Tele_Scroll1 -14528,32,100 // PVP_Tele_Scroll -14530,32,100 // Flee_30_Scroll -14531,32,100 // Accuracy_30_Scroll -14532,32,100 // Battle_Manual25 -14533,32,100 // Battle_Manual100 -14533,32,100 // Battle_Manual100 -14534,32,100 // Small_Life_Potion -14535,32,100 // Med_Life_Potion -14536,32,100 // Abrasive -14537,32,100 // Regeneration_Potion -14538,32,100 // Glass_Of_Illusion -14539,32,100 // Shadow_Armor_S -14540,32,100 // Holy_Armor_S -14541,32,100 // S_Def_Potion -14542,32,100 // B_Def_Potion -14543,32,100 // S_Mdef_Potion -14544,32,100 // B_Mdef_Potion -14545,32,100 // Battle_Manual_X3 -14546,32,100 // Fire_Cracker_Love -14547,32,100 // Fire_Cracker_Wday -14548,32,100 // Fire_Cracker_Valentine -14549,32,100 // Fire_Cracker_Bday -14550,32,100 // Fire_Cracker_Xmas -14551,32,100 // Str_Dish01_ -14552,32,100 // Str_Dish02_ -14553,32,100 // Str_Dish03_ -14554,32,100 // Int_Dish01_ -14555,32,100 // Int_Dish02_ -14556,32,100 // Int_Dish03_ -14557,32,100 // Vit_Dish01_ -14558,32,100 // Vit_Dish02_ -14559,32,100 // Vit_Dish03_ -14560,32,100 // Agi_Dish01_ -14561,32,100 // Agi_Dish02_ -14562,32,100 // Agi_Dish03_ -14563,32,100 // Dex_Dish01_ -14564,32,100 // Dex_Dish02_ -14565,32,100 // Dex_Dish03_ -14566,32,100 // Luk_Dish01_ -14567,32,100 // Luk_Dish02_ -14568,32,100 // Luk_Dish03_ -14569,32,100 // Knife_Goblin_Ring -14570,32,100 // Flail_Goblin_Ring -14571,32,100 // Hammer_Goblin_Ring -14572,32,100 // Holy_Marble -14573,32,100 // Red_Burning_Stone -14575,32,100 // Str_Dish05_ -14576,32,100 // Int_Dish05_ -14577,32,100 // Vit_Dish05_ -14578,32,100 // Agi_Dish05_ -14579,32,100 // Dex_Dish05_ -14580,32,100 // Luk_Dish05_ -14581,32,100 // Dun_Tele_Scroll2 -14582,32,100 // WOB_Rune -14583,32,100 // WOB_Schwaltz -14584,32,100 // WOB_Rachel -14585,32,100 // WOB_Local -14586,32,100 // Spark_Candy -14587,32,100 // Repair_Scroll_ -14588,32,100 // Pty_Blessing_Scroll -14589,32,100 // Pty_Inc_Agi_Scroll -14590,32,100 // Pty_Assumptio_Scroll -14591,32,100 // Siege_Teleport_Scroll -14591,32,100 // Siege_Teleport_Scroll -14592,32,100 // Job_Manual50 -14593,32,100 // Magic_Power_Scroll -14594,32,100 // Quagmire_Scroll -14597,32,100 // PhreeoniS -14598,32,100 // GhostringS -14599,32,100 // Greed_Scroll_C -14600,32,100 // Mental_Potion -14601,32,100 // Tyr's_Blessing -14602,32,100 // TaogunkaS -14603,32,100 // MistressS -14604,32,100 // Orc_HeroS -14605,32,100 // Orc_LoadS -14606,32,100 // Job_Manual25 -14611,32,100 // M_Def_Potion -14612,32,100 // M_Mdef_Potion -14613,32,100 // RWC_Scroll_2012 -14614,32,100 // Ex_Def_Potion -14616,32,100 // STR_Biscuit_Stick -14617,32,100 // VIT_Biscuit_Stick -14618,32,100 // AGI_Biscuit_Stick -14619,32,100 // INT_Biscuit_Stick -14620,32,100 // DEX_Biscuit_Stick -14621,32,100 // LUK_Biscuit_Stick -14623,32,100 // Golden_Treasure_Box -14627,32,100 // Christmas_Scroll -14628,32,100 // Costume_Festival_Box -14663,32,100 // Scroll_Sealed_Dark_Lord -14672,48,100 // Steel_Fighter_Scroll_Lv20 -14673,48,100 // Steel_Fighter_Scroll_Lv25 -14675,32,100 // Shadow_Box_II -14679,32,100 // Article_Sealed_Storm_Scroll -14682,32,100 // Sealed_Beelzebub_Scroll -14689,32,100 // Sealed_Kiel-D-01_Scroll -14696,32,100 // Sealed_Gloom_Under_Night_Gachapon -14704,32,100 // Gemstone_Shadow_Box -14705,32,100 // Sealed_Fallen_Bishop_Hibram_Scroll -14713,32,100 // Sealed_Ifrit_Scroll -14717,32,100 // 2013_RWC_Scroll -14718,32,100 // Scroll_Turtle_General_Sealed -14723,32,100 // (Limited)Neuralizer_I -14724,32,100 // (Limited)Neuralizer_II -14725,32,100 // Sealed_Bacsojin_Scroll -14726,32,100 // Grid_Shadow_Box -14727,32,100 // Heal_Shadow_Box -14728,32,100 // Hiding_Shadow_Box -14729,32,100 // Cloaking_Shadow_Box -14730,32,100 // Costume_Festival_Box_II -14731,32,100 // Teleport_Shadow_Box -14732,32,100 // Steal_Shadow_Box -14733,32,100 // Sealed_Pharaoh_Scroll -14739,32,100 // Sealed_General_Egnigem_Cenia_Scroll -14740,32,100 // Sealed_Vesper_Scroll -14758,32,100 // Safe_To_Smelting_Scroll -14765,32,100 // Limited_Edition_JOB_Battle_Manual -//14766,32,100 // -15007,40,100 // Time_Keepr_Robe -15009,8,100 // Para_Team_Uniform1 -15010,8,100 // Para_Team_Uniform2 -15011,8,100 // Para_Team_Uniform3 -15031,8,100 // Para_Team_Armor -//15062,8,100 // -//15063,8,100 // -//15064,8,100 // -15116,40,100 // Armor_Of_Airship -15141,40,100 // Ancient_Armor_Of_The_Goddess -16004,8,100 // P_Mace1 -16005,8,100 // P_Mace2 -16006,8,100 // Tourist_Mace -16014,8,100 // P_Mace3 -16023,8,100 // Metal_Mace -//16025,8,100 // -16038,40,100 // Infinity_Mace -//16100,32,100 // -//16101,32,100 // -//16102,32,100 // -//16103,32,100 // -//16104,32,100 // -//16105,32,100 // -//16106,32,100 // -//16107,32,100 // -//16108,32,100 // -//16109,32,100 // -//16110,32,100 // -//16111,32,100 // -//16112,32,100 // -//16113,32,100 // -//16114,32,100 // -//16115,32,100 // -//16116,32,100 // -//16117,32,100 // -//16118,32,100 // -//16119,32,100 // -//16120,32,100 // -//16121,32,100 // -//16122,32,100 // -//16123,32,100 // -//16124,32,100 // -//16125,32,100 // -//16126,32,100 // -//16127,32,100 // -//16128,32,100 // -//16129,32,100 // -//16130,32,100 // -16131,32,100 // Lady_Tanee_Doll_Box -16132,32,100 // Lunatic_Hat_Box -16133,32,100 // G_Staff_Of_Light_Box -16134,32,100 // King_Frog_Hat_Box -16135,32,100 // Evil's_Bone_Hat_Box -//16136,32,100 // -//16137,32,100 // -//16138,32,100 // -//16139,32,100 // -//16140,32,100 // -//16141,32,100 // -//16142,32,100 // -//16143,32,100 // -//16144,32,100 // -//16145,32,100 // -//16146,32,100 // -//16147,32,100 // -//16148,32,100 // -//16149,32,100 // -//16150,32,100 // -//16151,32,100 // -//16152,32,100 // -//16153,32,100 // -//16154,32,100 // -//16155,32,100 // -//16156,32,100 // -//16157,32,100 // -//16158,32,100 // -//16159,32,100 // -//16160,32,100 // -//16161,32,100 // -//16162,32,100 // -//16163,32,100 // -//16164,32,100 // -//16165,32,100 // -//16166,32,100 // -//16167,32,100 // -//16168,32,100 // -//16169,32,100 // -//16170,32,100 // -//16171,32,100 // -//16172,32,100 // -//16173,32,100 // -//16174,32,100 // -//16175,32,100 // -//16176,32,100 // -//16177,32,100 // -//16178,32,100 // -//16179,32,100 // -//16180,32,100 // -//16181,32,100 // -//16182,32,100 // -//16183,32,100 // -//16184,32,100 // -16185,32,100 // Raven_Cap_Box -16186,32,100 // B_Dragon_Hat_Box -//16187,32,100 // -//16188,32,100 // -//16189,32,100 // -//16190,32,100 // -//16191,32,100 // -16192,32,100 // Quati_Hat_Box -16193,32,100 // Tucan_Hat_Box -16194,32,100 // Jaguar_Hat_Box -//16220,32,100 // -//16221,32,100 // -//16222,32,100 // -//16223,32,100 // -//16224,32,100 // -//16225,32,100 // -16226,32,100 // Aries_Diadem_Box -16227,32,100 // Aries_Crown_Box -16228,32,100 // RJC_Katusa_Box -16229,32,100 // Scarlet_Rose_Box -16229,32,100 // Scarlet_Rose_Box -16230,32,100 // Taurus_Diadem_Box -16231,32,100 // Taurus_Crown_Box -16232,98,100 // Reginleif_Box -16235,32,100 // Octopus_Hat_Box -16236,32,100 // Leaf_Cat_Hat_Box -16237,32,100 // Fur_Seal_Hat_Box -16238,32,100 // Wild_Rose_Hat_Box -//16240,32,100 // -//16241,32,100 // -//16242,32,100 // -//16243,32,100 // -16246,32,100 // Crown_Of_Deceit_Box -16247,32,100 // Dragon_Arhat_Mask_Box -16248,32,100 // Tiger_Arhat_Mask_Box -16251,32,100 // Gemini_Diadem_Box -16252,32,100 // Gemini_Crown_Box -16254,32,100 // Energizing_Potion_Box -//16255,32,100 // -//16256,506,100 // -16258,32,100 // HD_Bradium_5_Box -16259,32,100 // HD_Carnium_5_Box -16260,32,100 // HD_Bradium_10_Box -16261,32,100 // HD_Carnium_10_Box -16262,32,100 // HD_Bradium_5_Box2 -16263,32,100 // HD_Carnium_5_Box2 -16264,32,100 // HD_Bradium_10_Box2 -16265,32,100 // HD_Carnium_10_Box2 -//16271,32,100 // -//16272,32,100 // -//16273,32,100 // -//16274,32,100 // -//16275,32,100 // -//16276,32,100 // -//16277,32,100 // -//16278,32,100 // -//16279,32,100 // -//16280,32,100 // -//16281,32,100 // -//16282,32,100 // -//16283,32,100 // -//16284,32,100 // -//16285,32,100 // -//16286,32,100 // -//16287,32,100 // -//16288,32,100 // -//16289,32,100 // -//16290,32,100 // -//16291,32,100 // -//16292,32,100 // -//16293,32,100 // -//16294,32,100 // -//16295,32,100 // -//16296,32,100 // -//16297,32,100 // -//16298,32,100 // -//16299,32,100 // -//16300,32,100 // -//16301,32,100 // -//16302,32,100 // -//16303,32,100 // -16304,32,100 // Evil_Incarnation -16305,32,100 // Upg_Guard_Box -16306,32,100 // F_Upg_Guard_Box -16307,32,100 // Upg_Buckler_Box -16308,32,100 // F_Upg_Buckler_Box -16309,32,100 // Upg_Shield_Box -16310,32,100 // F_Upg_Shield_Box -16311,32,100 // Upg_Shoes_Box -16312,32,100 // F_Upg_Shoes_Box -16313,32,100 // Upg_Boots_Box -16314,32,100 // F_Upg_Boots_Box -16315,32,100 // Upg_Greave_Box -16316,32,100 // F_Upg_Greave_Box -16317,32,100 // Upg_Hood_Box -16318,32,100 // F_Upg_Hood_Box -16319,32,100 // Upg_Muffler_Box -16320,32,100 // F_Upg_Muffler_Box -16321,32,100 // Upg_Manteau_Box -16322,32,100 // F_Upg_Manteau_Box -16323,32,100 // Upg_Clip_Box -16324,32,100 // F_Upg_Clip_Box -//16325,32,100 // -//16326,32,100 // -16327,32,100 // Upg_Adv_Suit_Box -16328,32,100 // F_Upg_Adv_Suit_Box -16329,32,100 // Upg_Coat_Box -16330,32,100 // F_Upg_Coat_Box -16331,32,100 // Upg_Saint_Robe_Box -16332,32,100 // F_Upg_Saint_Robe_Box -16333,32,100 // Upg_Tights_Box -16334,32,100 // F_Upg_Tights_Box -16335,32,100 // Upg_Thief_Cloth_Box -16336,32,100 // F_Upg_Thief_Cloth_Box -16337,32,100 // Upg_Mail_Box -16338,32,100 // F_Upg_Mail_Box -16339,32,100 // Upg_Formal_Dress_Box -16340,32,100 // F_Upg_Formal_Dress_Box -//16347,32,100 // -//16348,32,100 // -//16349,32,100 // -//16350,32,100 // -//16351,32,100 // -//16352,32,100 // -//16353,32,100 // -//16354,32,100 // -//16355,32,100 // -//16356,32,100 // -//16357,32,100 // -//16358,32,100 // -//16358,32,100 // -16360,32,100 // Desert_Prince_Box -16361,32,100 // FDesert_Prince_Box -16362,32,100 // Sigrun's_Wing_Box -16363,32,100 // FSigrun's_Wing_Box -16368,32,100 // Virgo_Crown_Box -//16369,32,100 // -//16370,32,100 // -16372,32,100 // F_Clover_Box_Mouth -//16373,32,100 // -16374,32,100 // Mouth_Bubble_Gum_Box -//16375,32,100 // -16378,32,100 // Siege_Tele_Scroll_Box_30 -16379,32,100 // Siege_Teleport_Scroll_Silver_10Box -16380,32,100 // Siege_Teleport_Scroll_Silver_30Box -16381,32,100 // WoE_Teleport_Scroll_100_Box -16382,32,100 // WoE_Teleport_Scroll_30_Box -//16383,32,100 // -//16384,32,100 // -16385,32,100 // F_Clover_Box_Mouth2 -16386,32,100 // F_Clover_Box_Mouth4 -//16387,32,100 // -//16388,32,100 // -16389,32,100 // BGum_Box_In_Mouth2 -16390,32,100 // BGum_Box_In_Mouth4 -//16391,32,100 // -//16392,32,100 // -16393,32,100 // HD_Ori_Box5 -16394,32,100 // HD_Ori_Box10 -16395,32,100 // HD_Elu_Box5 -16396,32,100 // HD_Elu_Box10 -16397,32,100 // Virgo_Diadem_Box -16398,32,100 // Virgo_Crown_Box -16399,32,100 // Virgo_Diadem_Box -//16400,32,100 // -//16401,32,100 // -//16402,32,100 // -//16403,32,100 // -//16407,32,100 // -//16408,32,100 // -//16432,32,100 // -//16433,32,100 // -//16434,32,100 // -//16435,32,100 // -//16442,32,100 // -//16443,32,100 // -//16444,32,100 // -//16445,32,100 // -16447,32,100 // Scorpio_Crown_Box -16448,32,100 // Scorpio_Diadem_Box -16449,32,100 // Scorpio_Crown_Box -16450,32,100 // FScorpio_Diadem_Box -//16452,32,100 // -//16453,32,100 // -//16454,32,100 // -//16455,32,100 // -//16467,32,100 // -//16468,32,100 // -//16469,32,100 // -//16470,32,100 // -16481,32,100 // Small_Life_Potion_Box_10 -16483,32,100 // Abrasive_Box_10 -16504,32,100 // Bubble_Gum_Box(10) -16505,32,100 // Steamed_Tongue_Box_10 -16506,32,100 // Steamed_Desert_Scorpions_Box_10 -16507,32,100 // Dragon_Breath_Cocktail_Box_10 -16508,32,100 // Hwergelmir's_Tonic_Box_10 -16509,32,100 // Cooked_Nine_Tail_Box_10 -16510,32,100 // Immortal_Stew_Box_10 -16514,32,100 // Blessing_Scroll_Box_10 -16515,32,100 // Increase_Agility_Scroll_Box_10 -16543,32,100 // Snowman_Hat_Box -16544,32,100 // FSnowman_Hat_Box -16555,32,100 // Pr_Reset_Stone_Box -//16573,32,100 // -//16574,32,100 // -//16580,32,100 // -//16581,32,100 // -//16596,32,100 // -//16597,32,100 // -16598,32,100 // Activation_Potion_Box_II -//16599,32,100 // -16625,32,100 // Half_Asprika_box7 -//16626,32,100 // -//16627,32,100 // -16628,32,100 // Brynhild_Box -//16629,32,100 // -//16630,32,100 // -//16634,32,100 // -//16635,32,100 // -//16636,32,100 // -//16637,32,100 // -16638,32,100 // Life_Ribbon_Box -16639,32,100 // Life_Ribbon_Box2 -16640,32,100 // Life_Ribbon_Box3 -//16641,32,100 // -//16642,32,100 // -//16643,32,100 // -//16644,32,100 // -//16645,32,100 // -//16646,32,100 // -//16647,32,100 // -//16648,32,100 // -//16649,32,100 // -//16650,32,100 // -//16651,32,100 // -16655,32,100 // Rapid_Life_Potion_10_Box -//16656,32,100 // -//16657,32,100 // -16658,32,100 // Rapid_Water_Box(10) -//16660,32,100 // -//16661,32,100 // -//16662,32,100 // -//16663,32,100 // -16666,32,100 // Magic_Candy_Box10 -//16667,32,100 // -//16671,32,100 // -//16672,32,100 // -16677,32,100 // Universal_Catalog_Gold_Box10 -16678,32,100 // Universal_Catalog_Gold_Box50 -16679,32,100 // Universal_Catalog_Gold_Box10 -16680,32,100 // Universal_Catalog_Gold_Box50 -16682,32,100 // Boarding_Halter_Box -16683,32,100 // B_Halter_Box_30Days -//16689,32,100 // -//16690,32,100 // -16740,32,100 // Protection_Seagod_Box -16741,32,100 // Hairtail_Box1 -16742,32,100 // Hairtail_Box2 -16743,32,100 // Spearfish_Box1 -16744,32,100 // Spearfish_Box2 -16745,32,100 // Saurel_Box1 -16746,32,100 // Saurel_Box2 -16747,32,100 // Tuna_Box1 -16748,32,100 // Tuna_Box2 -16749,32,100 // Malang_Crab_Box1 -16750,32,100 // Malang_Crab_Box2 -16751,32,100 // Brindle_Eel_Box1 -16752,32,100 // Brindle_Eel_Box2 -//16758,32,100 // -//16759,32,100 // -16760,32,100 // Umbala_Spirit_Box2 -16761,32,100 // F_Umbala_Spirit_Box2 -//16762,32,100 // -16763,32,100 // Ptotection_Seagod_Box2 -16764,32,100 // Ptotection_Seagod_Box3 -16765,32,100 // Octo_Hstick_Box -16766,32,100 // Octo_Hstick_Box2 -16767,32,100 // Octo_Hstick_Box3 -16770,32,100 // Silvervine_Fruit_Box10 -16771,32,100 // Silvervine_Fruit_Box40 -16776,32,100 // Universal_Catalog_Gold_Box10 -16777,32,100 // Universal_Catalog_Gold_Box50 -//16778,32,100 // -//16779,32,100 // -//16780,32,100 // -//16781,32,100 // -//16782,32,100 // -//16783,32,100 // -//16784,32,100 // -//16785,32,100 // -//16786,32,100 // -//16787,32,100 // -//16788,32,100 // -//16789,32,100 // -//16790,32,100 // -//16791,32,100 // -//16792,32,100 // -//16793,32,100 // -//16794,32,100 // -//16795,32,100 // -//16796,32,100 // -//16797,32,100 // -//16798,32,100 // -//16799,32,100 // -//16800,32,100 // -//16801,32,100 // -//16802,32,100 // -//16803,32,100 // -//16804,32,100 // -//16805,32,100 // -//16806,32,100 // -//16807,32,100 // -//16808,32,100 // -//16809,32,100 // -//16810,32,100 // -//16811,32,100 // -//16812,32,100 // -//16813,32,100 // -//16814,32,100 // -//16815,32,100 // -//16816,32,100 // -//16817,32,100 // -//16818,32,100 // -//16819,32,100 // -//16820,32,100 // -16821,32,100 // Dungeon_Teleport_Scroll_Box_5 -16822,32,100 // Dungeon_Teleport_Scroll_Box_10 -//16823,32,100 // -//16824,32,100 // -//16825,32,100 // -//16827,32,100 // -//16828,32,100 // -//16829,32,100 // -//16830,32,100 // -//16831,32,100 // -//16832,32,100 // -//16833,32,100 // -//16834,32,100 // -//16835,32,100 // -//16836,32,100 // -16837,32,100 // Dungeon_Teleport_Scroll_II_Box_5 -16838,32,100 // Dungeon_Teleport_Scroll_II_Box_10 -//16839,32,100 // -//16840,32,100 // -//16841,32,100 // -//16843,32,100 // -//16844,32,100 // -//16845,32,100 // -//16846,32,100 // -//16847,32,100 // -//16848,32,100 // -//16849,32,100 // -//16850,32,100 // -//16851,32,100 // -//16852,32,100 // -//16853,32,100 // -//16854,32,100 // -//16855,32,100 // -//16856,32,100 // -//16857,32,100 // -//16858,32,100 // -//16859,32,100 // -//16860,32,100 // -//16861,32,100 // -//16862,32,100 // -//16863,32,100 // -16864,32,100 // Siege_Map_Teleport_Scroll_Box_10 -16865,32,100 // Siege_Map_Teleport_Scroll_Box_30 -16866,32,100 // Siege_Map_Teleport_Scroll_II_Box_10 -16867,32,100 // Siege_Map_Teleport_Scroll_II_Box_30 -//16868,32,100 // -//16869,32,100 // -//16870,32,100 // -//16871,32,100 // -//16872,32,100 // -//16873,32,100 // -//16874,32,100 // -//16875,32,100 // -//16876,32,100 // -//16877,32,100 // -//16878,32,100 // -//16879,32,100 // -//16880,32,100 // -//16881,32,100 // -//16882,32,100 // -//16883,32,100 // -//16884,32,100 // -//16885,32,100 // -//16886,32,100 // -//16887,32,100 // -//16888,32,100 // -//16889,32,100 // -//16890,32,100 // -//16891,32,100 // -//16892,32,100 // -//16893,32,100 // -//16894,32,100 // -//16895,32,100 // -//16896,32,100 // -//16897,32,100 // -//16898,32,100 // -//16899,32,100 // -//16900,32,100 // -//16901,32,100 // -//16902,32,100 // -//16903,32,100 // -//16904,32,100 // -//16905,32,100 // -//16906,32,100 // -//16907,32,100 // -//16908,32,100 // -//16909,32,100 // -//16910,32,100 // -//16911,32,100 // -//16912,32,100 // -//16913,32,100 // -//16914,32,100 // -//16915,32,100 // -//16916,32,100 // -//16917,32,100 // -//16918,32,100 // -//16919,32,100 // -//16920,32,100 // -//16921,32,100 // -//16922,32,100 // -//16923,32,100 // -//16924,32,100 // -//16925,32,100 // -//16926,32,100 // -//16927,32,100 // -//16928,32,100 // -//16929,32,100 // -//16930,32,100 // -//16931,32,100 // -//16932,32,100 // -//16933,32,100 // -//16934,32,100 // -//16935,32,100 // -//16936,32,100 // -//16937,32,100 // -//16938,32,100 // -//16939,32,100 // -//16940,32,100 // -//16941,32,100 // -//16942,32,100 // -//16943,32,100 // -//16944,32,100 // -//16945,32,100 // -//16946,32,100 // -//16947,32,100 // -//16948,32,100 // -//16949,32,100 // -//16950,32,100 // -//16951,32,100 // -//16952,32,100 // -//16953,32,100 // -//16954,32,100 // -//16955,32,100 // -//16956,32,100 // -//16957,32,100 // -//16958,32,100 // -//16959,32,100 // -//16960,32,100 // -//16961,32,100 // -//16962,32,100 // -//16963,32,100 // -//16964,32,100 // -//16965,32,100 // -//16966,32,100 // -//16967,32,100 // -//16968,32,100 // -//16969,32,100 // -//16970,32,100 // -//16971,32,100 // -16972,32,100 // Weather_Report_Box -16973,32,100 // Yellow_Hat_Box -16974,32,100 // Comin_Actor_Box -16975,32,100 // Singing_Bird_Box -16976,32,100 // Hen_Set_Box -16977,32,100 // Red_Minicrown_Box -//16978,32,100 // -16979,32,100 // Silvervine_Fruit_Box4 -16995,32,100 // Old_Hat_Box -16998,32,100 // Archangel_Wing_Box -16999,32,100 // Bravery_Bag_Box -17013,32,100 // Malang_Woe_Encard_Box -17014,32,100 // Butterfly_ear_Box -17015,32,100 // Stuckhead_Screw_Box -//17027,32,100 // -17037,32,100 // Trans_Box_Devi -17038,32,100 // Trans_Box_Ray_Arch -17039,32,100 // Trans_Box_Mavka -17040,32,100 // Trans_Box_Marduk -17041,32,100 // Trans_Box_Banshee -17042,32,100 // Trans_Box_Poring -17043,32,100 // Trans_Box_Golem -//17044,32,100 // -//17045,32,100 // -//17046,32,100 // -//17065,32,100 // -17084,32,100 // Upg_Katar_Box -17085,32,100 // Upg_Two_Handed_Axe_Box -17086,32,100 // Upg_Lance_Box -17087,32,100 // Upg_Book_Box -17088,32,100 // Upg_Staff_Box -17089,32,100 // Upg_Dagger_Box -17090,32,100 // Upg_Revolver_Box -17091,32,100 // Upg_Mace_Box -17092,32,100 // Upg_Bow_Box -17093,32,100 // Upg_Twohand_Sword_Box -17094,32,100 // Upg_Katar_Box2 -17095,32,100 // Upg_Two_Handed_Axe_Box2 -17096,32,100 // Upg_Lance_Box2 -//17097,32,100 // -//17098,32,100 // -//17099,32,100 // -//17100,32,100 // -//17101,32,100 // -//17102,32,100 // -//17103,32,100 // -17106,32,100 // Max_Weight_Up_10Box -17118,32,100 // ASPD_Potion_Box10 -17122,32,100 // Immuned_Shield_Box -17123,32,100 // Black_Devil_Mask_Box -17126,32,100 // ASPD_Potion_Box10_2 -//17135,32,100 // -//17136,32,100 // -//17137,32,100 // -//17144,32,100 // -//17153,32,100 // -//17154,32,100 // -17155,32,100 // Upg_Huuma_Shuriken_Box -17159,32,100 // Name_Change_Box -17160,32,100 // Character_Name_Change_Card_Box -//17163,32,100 // -//17164,32,100 // -//17166,32,100 // -//17171,32,100 // -//17172,32,100 // -//17173,32,100 // -//17174,32,100 // -//17175,32,100 // -17176,32,100 // Boarding_Halter_Box3 -//17177,32,100 // -//17178,32,100 // -//17179,32,100 // -//17180,32,100 // -//17182,32,100 // -//17193,32,100 // -//17194,32,100 // -//17195,32,100 // -//17196,32,100 // -//17197,32,100 // -//17198,32,100 // -//17200,32,100 // -//17201,32,100 // -//17202,32,100 // -//17205,32,100 // -//17206,32,100 // -//17224,32,100 // -17226,32,100 // Infinite_Concentration_Potion -17227,32,100 // Infinite_Awakening_Potion -17228,32,100 // Infinite_Berserk_Potion -17229,32,100 // Infinite_Flywing_Box -17231,32,100 // Refinement_Ore_Box -17232,32,100 // Refinement_box(7) -17241,32,100 // Amistr_Cap_Box -17244,32,100 // Event_Almighty_Box -17246,32,100 // HD_Elunium_Box(30) -17247,32,100 // HD_Oridecon_Box(30) -17251,32,100 // C_Wing_Of_Fly_3Day_Box -17252,32,100 // RWC_2012_Set_Box -17253,32,100 // RWC_2012_Ring_Box -17254,32,100 // RWC_2012_Pendant_Box -17262,32,100 // Ex_Def_Potion_Box -17263,32,100 // Infinite_Concentration_Potion_3rd_Box -17264,32,100 // Infinite_Awakening_Potion_3rd_Box -17265,32,100 // Infinite_Berserk_Potion_3rd_Box -17266,32,100 // Limited_Battle_Manual_Package -17270,32,100 // STR_Biscuit_Stick_Box -17271,32,100 // VIT_Biscuit_Stick_Box -17272,32,100 // AGI_Biscuit_Stick_Box -17273,32,100 // INT_Biscuit_Stick_Box -17274,32,100 // DEX_Biscuit_Stick_Box -17275,32,100 // LUK_Biscuit_Stick_Box -17277,32,100 // Unlimited_Box -17278,32,100 // Unlimited_Box(10) -//17279,32,100 // -17281,32,100 // Refinement_Ore_Box_IV -17282,32,100 // Refinement_Ore_Box_IV(10) -17283,32,100 // Refinement_Ore_Box_IV(20) -//17284,32,100 // -17285,32,100 // Events_Beauty_Gift_Box -//17286,32,100 // -//17287,32,100 // -//17288,32,100 // -17292,32,100 // Shadow_Box -17293,32,100 // Shadow_Physical_Package -17294,32,100 // Shadow_Magical_Package -17298,32,100 // Support_Package -17299,32,100 // Support_Package(10) -17302,32,100 // Shadow_Box_II_ -17303,32,100 // Shadow_Set_Box_II -17304,32,100 // Neuralizer_Box_3 -17306,32,100 // Status_Reset_Coupon_Box -17314,32,100 // Infinite_Giant_Fly_Wing_Box -17315,32,100 // Lucky_Silvervine_Fruit_Box(10) -17316,32,100 // Lucky_Silvervine_Fruit_Box(110) -17321,32,100 // Three_Master_Package -17322,32,100 // Three_Master_Package(10) -17331,32,100 // Event_Almighty_Box -17332,32,100 // Event_Almighty_Box(100) -17338,32,100 // Ore_Box_V -17339,32,100 // Ore_Box_V(10) -17429,32,100 // 11_Anniversary_Shadow_Box -17430,32,100 // 11_Anniversary_Shadow_Package -17432,32,100 // Lucky_Silvervine_Fruit_Box_II(10) -17433,32,100 // Lucky_Silvervine_Fruit_Box_II(110) -17438,32,100 // Three_Master_Package_II -17439,32,100 // Three_Master_Package_II10 -17440,32,100 // Name_Change_Card_Box -17441,32,100 // Halter_Lead_Box -17442,32,100 // Emperium_G_Box -17443,32,100 // Reinforcement_Buckler_Box -17449,32,100 // Cookies_Bar_Set -17455,32,100 // Premium_Battle_Manual_Box -17456,32,100 // Support_Package_II -17457,32,100 // Support_Package_II(10) -17465,32,100 // Refinement_Ore_Box_VI -17466,32,100 // Refinement_Ore_Box_VI(10) -17467,32,100 // (Limited)_Token_of_Ziegfried_Box(50) -17468,32,100 // Neuralizer_II_Box_3 -17469,32,100 // Neuralizer_I_Box -17472,32,100 // Support_Package_III -17473,32,100 // Support_Package_III(10) -17474,32,100 // Infinite_Giant_Fly_Wing_Box_V -17475,32,100 // (Limited)Gym_Membership_Card_Box(10) -17477,32,100 // Unlimited_Box_II -17478,32,100 // Unlimited_Box_II(10) -17483,32,100 // Three_Master_Package_III -17484,32,100 // Three_Master_Package_III(10) -17491,32,100 // Refinement_Ore_Box_VII -17492,32,100 // Refinement_Ore_Box_VII(10) -17495,32,100 // Lucky_Silvervine_Fruit_Box_III10 -17496,32,100 // Lucky_Silvervine_Fruit_Box_III110 -17498,32,100 // Three_Master_Package_IV -17499,32,100 // Three_Master_Package_IV(10) -17501,32,100 // Support_Package_IV -17502,32,100 // Support_Package_IV(10) -17507,32,100 // Actinidia_Cat_Fruit_Box(4) -17508,32,100 // Actinidia_Cat_Fruit_Box(10) -17509,32,100 // Actinidia_Cat_Fruit_Box(40) -17510,32,100 // Smelting_Ore_Box_VIII -17511,32,100 // Smelting_Ore_Box_VIII(10) -17512,32,100 // (Limited)Purified_Eluminium_Box(30) -17513,32,100 // (Limited)Purified_Oridecon_Box(30) -17515,32,100 // Unlimited_Box_III -17516,32,100 // Unlimited_Box_III(10) -17520,32,100 // Limited_Edition_Manual_Box -17521,32,100 // Three_Master_Package_V -17522,32,100 // Three_Master_Package_V(10) -//17524,32,100 // -//17525,32,100 // -//17527,32,100 // -//17544,32,100 // -//17545,32,100 // -//17547,32,100 // -//17548,32,100 // -//17549,32,100 // -//17550,32,100 // -//17567,32,100 // -//17568,32,100 // -//17569,32,100 // -//17570,32,100 // -//17573,32,100 // -//17574,32,100 // -//17582,32,100 // -//17583,32,100 // -18106,8,100 // P_Bow3 -18116,8,100 // Metal_Bow -//18118,8,100 // -18128,40,100 // Infinity_Bow -18514,8,100 // Para_Team_Hat2 -18520,32,100 // Jaty_C -18556,8,100 // Angel_Helmet -18557,8,100 // Devil_Helmet -18579,40,100 // 9th_Anni_Hat -//18731,8,100 // -//18732,8,100 // -//18733,8,100 // -//18734,8,100 // -18779,32,100 // RWC_Champ_Crown_First_Place -18780,32,100 // RWC_Champ_Crown_Second_Place -18781,32,100 // RWC_Champ_Crown_Third_Place -18796,32,100 // RWC_Champ_Crown_Fourth_Place -18828,32,100 // 2012RMSCNO1 -18829,32,100 // 2012RMSCNO2 -18830,32,100 // 2012RMSCNO3 -//18970,32,100 // -18971,32,100 // Old_Rune_Circlet -18972,32,100 // Old_Mitra -18973,32,100 // Old_Driver_Band -18974,32,100 // Old_Driver_Band(Yellow) -18975,32,100 // Old_Shadow_Handicraft -18976,32,100 // Old_Minstrel_Song's_Hat -18977,32,100 // Old_Midas_Whisper -18978,32,100 // Old_Magic_Stone_Hat -18979,32,100 // Old_Blazing_Soul -18980,32,100 // Old_Wind_Whisper -18981,32,100 // Old_Dying_Swan -18982,32,100 // Old_Circlet_Of_Bones -18983,32,100 // Old_Protect_Of_Crown -18984,32,100 // Old_Camouflage_Rabbit_Hood -19033,40,100 // Ancient_Decoration_Of_The_Goddess -//19051,32,100 // -//19053,32,100 // -19523,32,100 // Donation_Ribbon -19531,32,100 // C_Cube_Mask -19532,32,100 // C_Red_Bunny_Band -19764,32,100 // C_Monster_Card -19765,32,100 // C_Wing_Angels_Ears -19996,40,100 // Horse_King -19999,40,100 // C_Mouse_Hat1 -20000,40,100 // C_Mouse_Hat2 -20001,40,100 // C_Mouse_Hat3 -20002,40,100 // C_Mouse_Hat4 -20003,40,100 // C_Mouse_Hat5 -20025,40,100 // C_Cow_Hat1 -20026,40,100 // C_Cow_Hat2 -20027,40,100 // C_Cow_Hat3 -20028,40,100 // C_Cow_Hat4 -20053,40,100 // C_W_King_Tiger_Doll_Hat -20063,32,100 // C_Yellow_Brain_Hat -20064,32,100 // C_Blue_Brain_Hat -20067,40,100 // C_White_Rabbit_Headband -20068,40,100 // C_Black_Rabbit_Headband -20086,40,100 // C_Dragon_Cintamani_Hat1 -20087,40,100 // C_Dragon_Cintamani_Hat2 -20088,40,100 // C_Dragon_Cintamani_Hat3 -20089,40,100 // C_Dragon_Cintamani_Hat4 -20110,40,100 // C_Coiledup_Snake -//20111,40,100 // -20139,40,100 // C_Horse_Hairpin -20140,40,100 // C_Horse_Hairpin -20162,40,100 // C_Fleece_Hat -20163,40,100 // C_Fleece_Hat -20179,40,100 // C_Monkey_Coat_Hat -20206,40,100 // C_Chicken_Hat -20210,40,100 // C_Chicken_Hat -20211,40,100 // C_Chicken_Hat -//20227,40,100 // -//20228,40,100 // -//20702,8,100 // -//20703,8,100 // -//20704,8,100 // -20743,40,100 // Cloak_Of_Airship -21005,8,100 // Metal_Two_Hand_Sword -//21006,8,100 // -21014,40,100 // Infinity_Two-Handed_Sword -22046,40,100 // Boots_Of_Airship -22510,32,100 // King_Wolf_Scroll -//22511,40,100 // -22513,8,100 // King_of_Gift_Box -22528,32,100 // Pet_Exchange_Ticket_Box -22535,8,100 // Scroll_Summoning_Workers(Male) -22536,8,100 // Scroll_Summoning_Workers(Female) -//22539,40,100 // -22540,32,100 // Runstone_Luxanima -22541,32,100 // PC_Room_Coupon_Box_VI -22542,32,100 // Concentration_Potion -22543,32,100 // Berserk_Potion -22544,32,100 // Awakening_Potion -22545,32,100 // Speed_Potion -22546,32,100 // Slow_Potion -22547,32,100 // Anti-Payne_Moment -22548,32,100 // Wed_Cursed -22549,32,100 // Poison_Bottle -22550,32,100 // Sweets_Pocket -22551,32,100 // Teacake -22552,32,100 // Fried_Pastry -22553,32,100 // Rainbow_Bread -22554,40,100 // First_Aid_Box -22555,483,100 // Gourmet_Chocolate -22556,483,100 // Luxury_Chocolate -22557,483,100 // Masterpieces_of_Artisan_Chocolate -22566,459,100 // Last_Years_Frost -22569,8,100 // Gift_New_start -22589,8,100 // Savage_Ora_Ora -22590,8,100 // Grand_Peco_Ora_Ora -22591,8,100 // Desert_Wolf_Ora_Ora -22610,8,100 // New_Beginnings_Box -22617,32,100 // Clear_Box_S -22618,32,100 // Clear_Box_A -22619,8,100 // Ghost_Summon_Scroll -22623,8,100 // New_Start_Box -//22626,32,100 // -//22627,32,100 // -22652,32,100 // Briliant_Hat_Box -//22671,32,100 // -//22672,32,100 // -//22673,32,100 // -//22674,32,100 // -22685,40,100 // Solo_Christmas_Gift -22708,8,100 // Thrilling_Box -//22717,8,100 // -//22718,8,100 // -//22719,8,100 // -//22720,8,100 // -22735,32,100 // Sealed_Moonlight_Flower_Scroll -//22736,32,100 // -//22756,32,100 // -22764,32,100 // Pet_Exchange_Ticket_Box_ -22777,32,100 // Gift_Buff_Set -22781,32,100 // PC_Bang_Normal_Box -22782,32,100 // PC_Bang_Wooden_Box -22783,32,100 // PC_Bang_Golden_Box -22784,32,100 // PC_Bang_Platinum_Box -22802,32,100 // Safe_to_6_Equipment_Certificate -22808,32,100 // Special_Gift_Box -22812,32,100 // Sealed_Dracula_Scroll -22813,32,100 // Bearer's_Shadow_Box -//22816,32,100 // -//22817,32,100 // -//22818,32,100 // -//22819,32,100 // -//22820,32,100 // -//22821,32,100 // -22823,32,100 // Sealed_Sniper_Scroll -22828,32,100 // Sealed_Album_Scroll -22829,32,100 // Sealed_Card_Album -22842,32,100 // Sealed_Dracula_Scroll_II -22844,32,100 // Sealed_Dracula_Card_Album -22845,32,100 // Sealed_Fortune_Egg -22846,40,100 // Sealed_Dracula_Card -//22850,32,100 // -//22851,32,100 // -//22852,32,100 // -//22853,32,100 // -//22854,32,100 // -//22855,32,100 // -//22856,32,100 // -//22857,32,100 // -//22858,32,100 // -//22859,32,100 // -//22860,32,100 // -//22861,32,100 // -//22870,40,100 // -//22873,32,100 // -//22874,32,100 // -//22875,32,100 // -//22881,8,100 // -//22883,32,100 // -//22884,32,100 // -//22885,32,100 // -//22886,32,100 // -//22888,32,100 // -//22893,32,100 // -//22901,8,100 // -//22902,32,100 // -//22906,32,100 // -//22946,32,100 // -//22947,32,100 // -//22948,32,100 // -//22949,32,100 // -//22950,32,100 // -//22951,32,100 // -//22952,32,100 // -28105,40,100 // Infinity_Axe -28310,40,100 // Sarah's_Left_Earring -28311,40,100 // Sarah's_Right_Earring -28333,32,100 // Gold_PC_Room_Ring -28703,40,100 // Infinity_Dagger \ No newline at end of file +7547,499,100 // Soccer_Ball +7548,499,100 // Soccer_Shoes +7549,499,100 // Brazilian_Flag +7550,499,100 // Ticket01 +7551,499,100 // Ticket02 +7552,499,100 // Ticket03 +7553,499,100 // Lotus_Flower +7554,499,100 // Striped_Candle +7555,499,100 // Green_Incense +7556,475,100 // Longing_Heart +7557,475,100 // Invitation_Letter +7558,475,100 // Invitation_Ticket +7559,475,100 // Key_Of_Flower_Garden +7569,475,100 // Hammer_Of_Wind +7572,475,100 // Magic_Necklace +7573,475,100 // Magic_Necklace_ +7575,507,100 // Red_Jewel_ +7575,499,100 // Red_Jewel_ +7576,499,100 // Blue_Jewel_ +7576,507,100 // Blue_Jewel_ +7577,499,100 // Golden_Jewel_ +7579,499,100 // Silk_Handkerchief +7580,499,100 // Black_Bead +7583,499,100 // Evil_Mind +7584,499,100 // Proof_Of_Guard1 +7585,499,100 // Proof_Of_Guard2 +7586,499,100 // Proof_Of_Guard3 +7587,499,100 // Proof_Of_Guard4 +7588,499,100 // IPOD_Ticker +7603,499,100 // RO_Party_Ticket +7614,499,100 // Special_Packing_Paper +7618,499,100 // Monster_Crystal +7619,475,100 // Enriched_Elunium +7620,475,100 // Enriched_Oridecon +7621,475,100 // Token_Of_Siegfried +7622,475,100 // New_Style_Coupon +7623,507,100 // Name_Change_Coupon +7625,507,100 // Registration_Ticket +7630,499,100 // Clean_Beach_Brush +7631,499,100 // Trash_Debris +7641,507,100 // Medical_Cure_Box +7690,475,100 // Special_Exchange_Coupons +7701,499,100 // Dragon_Spirit +7704,507,100 // Broken_Thermometer +7705,507,100 // Note_Of_Geologist +7715,499,100 // Handmade_Choco_Recipe +7716,499,100 // Strawberry_Choco_Recipe +7717,499,100 // Choco_Tart_Recipe +7720,467,100 // Gold_Coin_US +7722,507,100 // Debt_Note +7723,507,100 // Diamond_Of_Ruin +7724,507,100 // Forbidden_Secret_Art +7725,507,100 // Unlucky_Emerald +7726,507,100 // Token_Of_King +7727,499,100 // HP_Doctor_Ticket +7728,499,100 // SP_Doctor_Ticket +7729,499,100 // Rok_Star_Badge +7730,8,100 // Mission_Certificate1 +7731,8,100 // Mission_Certificate2 +7732,8,100 // Mission_Certificate3 +7733,8,100 // Mission_Certificate4 +7734,8,100 // Mission_Certificate5 +7735,8,100 // Mission_Certificate6 +7736,8,100 // Mission_Certificate7 +7737,8,100 // Mission_Certificate8 +7738,8,100 // Mission_Certificate9 +7739,8,100 // Mission_Certificate10 +7740,8,100 // Mission_Certificate11 +7741,8,100 // Mission_Certificate12 +7755,507,100 // Research_Note +7759,507,100 // Geology_Report +7763,507,100 // Sticky_Herb +7764,507,100 // High_Strength_Adhesive +7765,507,100 // Yaga_Secret_Medicine +7766,475,100 // Bok_Choy +7767,475,100 // Chung_E_Cake +7773,499,100 // War_Badge +7775,475,100 // Spring_Rabbit_Ticket +7776,475,100 // Max_Weight_Up_Scroll +7779,475,100 // Gold_Key_TW +7780,475,100 // Silver_Key +7784,475,100 // Fawner_Coupon1 +7785,475,100 // Fawner_Coupon2 +7786,475,100 // Fawner_Coupon3 +7787,475,100 // Fawner_Coupon4 +7788,475,100 // Fawner_Coupon5 +7789,475,100 // Fawner_Coupon6 +7790,475,100 // Fawner_Coupon7 +7791,475,100 // Fawner_Coupon8 +7793,475,100 // Golden_Apple +7794,475,100 // Fate_Of_Crow +7800,475,100 // Golden_Apple_ +7801,499,100 // Girl_Fan_Letter +7802,499,100 // Autograph_Book +7803,475,100 // Battle_Manual_TW +7820,507,100 // Morroc_Skin +7821,475,100 // Green_Apple +7822,475,100 // Whole_Barbecue +7823,475,100 // Meat_Veg_Skewer +7825,475,100 // Heroic_Stone +7826,507,100 // Continental_Guard_Paper +7827,499,100 // Mineral_Report +7828,499,100 // BF_Badge1 +7829,499,100 // BF_Badge2 +7839,499,100 // Crystal_Key +7840,507,100 // Valkyrie_Gift +7841,499,100 // Spotted_Paper +7842,499,100 // Torn_Paper +7843,499,100 // Old_Paper +7844,499,100 // Burnt_Paper +7863,467,100 // GOLD_ID4 +7865,499,100 // Gold_Pouch +7866,499,100 // Certificate +7875,467,100 // Pirate_Box +7876,499,100 // Gold_Key +7877,499,100 // Red_Ring +7878,499,100 // Lusalka_Hair +7879,499,100 // Golden_Thread +7880,499,100 // Babayaga_Silver_Spoon +7881,499,100 // Book_Of_Magic +7882,499,100 // Pointed_Branch +7883,499,100 // Pointed_Wooden_Flute +7884,475,100 // Jade_Plate +7885,475,100 // Sacred_Arrow +7895,499,100 // TRO_Memory_Book01 +7896,499,100 // TRO_Memory_Book02 +7897,499,100 // TRO_Memory_Book03 +7898,499,100 // VVS_Balmung +7899,499,100 // Spiritualist_Dagger +7900,507,100 // Jenoss_Ring1 +7901,507,100 // Jenoss_Ring2 +7902,507,100 // Jenoss_Ring3 +7903,507,100 // Jenoss_Ring4 +7904,507,100 // Piano_Key +7906,507,100 // Poppy_Wreath +7907,499,100 // Bobbin_Of_Goddess +7909,499,100 // Stolen_Cookie +7910,499,100 // Stolen_Candy +7912,507,100 // Portable_Snowman +7913,507,100 // Test_Certificate +7914,507,100 // Ancient_Document_TW +7917,507,100 // Magic_Potion +7919,507,100 // Festival_Ticket +7920,507,100 // Hero's_Arsenal +7923,499,100 // KRATHONG_ +7928,507,100 // Brazilian_Flag_ +7929,507,100 // Golden_Coin_ +7930,507,100 // Cowking's_Nose_Ring +7945,475,100 // Almighty_Charm +7949,499,100 // Woven_Wool +7950,499,100 // Ayothaya_Ticket +7951,499,100 // Gold_Tulip +7952,507,100 // Gift_From_Romiros +7953,507,100 // Gift_From_Juliedge +7954,499,100 // Festival_Ticket_ +7959,1,100 // Ancient_Gold_Coin +7960,1,100 // Ancient_Silver_Coin +7961,499,100 // Weapon_Exchange +7962,499,100 // Treasure_Map1 +7963,499,100 // Treasure_Map2 +7964,499,100 // Treasure_Map3 +7965,499,100 // Treasure_Map4 +7966,499,100 // Weird_Parchment1 +7967,499,100 // Weird_Parchment2 +7968,499,100 // Weird_Parchment3 +7969,499,100 // Weird_Parchment4 +9028,1,100 // Rice_Cake_Egg +9058,467,100 // Snow_Rabbit_Egg +11011,499,100 // Barmund_Note +11012,499,100 // Expedition_Report +11013,499,100 // Expedition_Report_Vol1 +11014,499,100 // Expedition_Report_Vol2 +11015,499,100 // Expedition_Report_Vol3 +11016,499,100 // Expedition_Report_Vol4 +11500,475,100 // Light_Yellow_Pot +11501,475,100 // Light_White_Pot +11502,475,100 // Light_Blue_Pot +11503,475,100 // Siege_White_Potion +11504,475,100 // Siege_Blue_Potion +11514,475,100 // Enriched_Slim_Pot +11551,499,100 // Savory_Herb_Salad +11552,499,100 // Apple_Carrot_Salad +11553,499,100 // Casual_Stew +11554,499,100 // Golden_Roasted_Apple +11565,475,100 // White_Potion +11566,475,100 // Yellow_Potion +11567,475,100 // Novice_Potion +11568,475,100 // Red_Slim_Potion +11569,475,100 // Orange_Potion +11570,475,100 // Red_Potion +11571,475,100 // Green_Potion +11572,475,100 // Blue_Potion +11573,475,100 // White_Slim_Potion +11574,475,100 // Yellow_Slim_Potion +11575,475,100 // Lucky_Cookie +11576,475,100 // Lucky_Lollipop +11577,475,100 // Rice_Ball +11578,475,100 // Candy_Bar +11579,475,100 // Lucky_Candy +11580,475,100 // Candy +11581,475,100 // Piece_of_Cake +11582,475,100 // Well-baked_Cookie +11583,475,100 // Chocolate_Drink +11584,475,100 // White_Chocolate +11585,475,100 // Hand-made_Chocolate +11586,475,100 // Hand-made_Chocolate_ +11587,475,100 // Chocolate +12142,506,100 // Magic_Book +12153,499,100 // Bow_Mercenary_Scroll1 +12154,499,100 // Bow_Mercenary_Scroll2 +12155,499,100 // Bow_Mercenary_Scroll3 +12156,499,100 // Bow_Mercenary_Scroll4 +12157,499,100 // Bow_Mercenary_Scroll5 +12158,499,100 // Bow_Mercenary_Scroll6 +12159,499,100 // Bow_Mercenary_Scroll7 +12160,499,100 // Bow_Mercenary_Scroll8 +12161,499,100 // Bow_Mercenary_Scroll9 +12162,499,100 // Bow_Mercenary_Scroll10 +12163,499,100 // SwordMercenary_Scroll1 +12164,499,100 // SwordMercenary_Scroll2 +12165,499,100 // SwordMercenary_Scroll3 +12166,499,100 // SwordMercenary_Scroll4 +12167,499,100 // SwordMercenary_Scroll5 +12168,499,100 // SwordMercenary_Scroll6 +12169,499,100 // SwordMercenary_Scroll7 +12170,499,100 // SwordMercenary_Scroll8 +12171,499,100 // SwordMercenary_Scroll9 +12172,499,100 // SwordMercenary_Scroll10 +12173,499,100 // SpearMercenary_Scroll1 +12174,499,100 // SpearMercenary_Scroll2 +12175,499,100 // SpearMercenary_Scroll3 +12176,499,100 // SpearMercenary_Scroll4 +12177,499,100 // SpearMercenary_Scroll5 +12178,499,100 // SpearMercenary_Scroll6 +12179,499,100 // SpearMercenary_Scroll7 +12180,499,100 // SpearMercenary_Scroll8 +12181,499,100 // SpearMercenary_Scroll9 +12182,499,100 // SpearMercenary_Scroll10 +12199,507,100 // Rice_Scroll +12202,475,100 // Str_Dish10_ +12203,475,100 // Agi_Dish10_ +12204,475,100 // Int_Dish10_ +12205,475,100 // Dex_Dish10_ +12206,475,100 // Luk_Dish10_ +12207,475,100 // Vit_Dish10_ +12208,475,100 // Battle_Manual +12209,475,100 // Insurance +12210,475,100 // Bubble_Gum +12211,475,100 // Kafra_Card +12212,475,100 // Giant_Fly_Wing +12213,475,100 // Neuralizer +12214,475,100 // Convex_Mirror +12215,475,100 // Blessing_10_Scroll +12216,475,100 // Inc_Agi_10_Scroll +12217,475,100 // Aspersio_5_Scroll +12218,475,100 // Assumptio_5_Scroll +12219,475,100 // Wind_Walk_10_Scroll +12220,475,100 // Adrenaline_Scroll +12221,475,100 // Megaphone_ +12238,467,100 // New_Year_Rice_Cake_1 +12239,467,100 // New_Year_Rice_Cake_2 +12258,499,100 // Bombring_Box +12259,507,100 // Miracle_Medicine +12261,507,100 // Secret_Medicine +12262,507,100 // Inspector_Certificate_ +12263,507,100 // Comp_Battle_Manual +12264,475,100 // Comp_Bubble_Gum +12265,475,100 // Comp_Insurance +12266,507,100 // Sesame_Pastry_ +12267,507,100 // Honey_Pastry_ +12268,507,100 // Rainbow_Cake_ +12269,467,100 // Tasty_Colonel +12270,467,100 // Tasty_Major +12271,467,100 // Mre_A +12272,467,100 // Mre_B +12273,467,100 // Mre_C +12274,507,100 // Gold_Pill_1 +12275,507,100 // Gold_Pill_2 +12276,475,100 // Mimic_Scroll +12277,475,100 // Disguise_Scroll +12278,475,100 // Alice_Scroll +12287,507,100 // Love_Angel +12288,507,100 // Squirrel +12289,507,100 // Gogo +12294,507,100 // PC_Bang_Coin_Box1 +12295,507,100 // PC_Bang_Coin_Box2 +12296,507,100 // PC_Bang_Coin_Box3 +12297,507,100 // PC_Bang_Coin_Box4 +12298,507,100 // SP_Potion +12299,507,100 // Mega_Resist_Potion +12300,499,100 // Wild_Rose_Scroll +12301,499,100 // Doppelganger_Scroll +12302,499,100 // Ygnizem_Scroll +12303,475,100 // Water_Of_Blessing +12304,507,100 // Picture_Diary +12305,507,100 // Mini_Heart +12306,507,100 // Newcomer +12307,507,100 // Kid +12308,507,100 // Magic_Castle +12309,507,100 // Bulging_Head +12310,467,100 // Spray_Of_Flowers +12311,467,100 // Large_Spray_Of_Flowers +12313,499,100 // Protection_Of_Angel +12314,507,100 // Noive_Box +12314,475,100 // Noive_Box +12319,467,100 // Strawberry_Cake +12320,467,100 // Pineapple_Juice +12321,467,100 // Spicy_Sandwich +12322,499,100 // Chocolate_Pie +12323,499,100 // N_Fly_Wing +12324,499,100 // N_Butterfly_Wing +12325,499,100 // N_Magnifier +12331,507,100 // Ginseng +12332,467,100 // Fruit_Juice +12333,507,100 // Ansila +12333,507,100 // Ansila +12340,499,100 // Mysterious_Rice_Powder +12361,475,100 // Delicious_Shaved_Ice +12363,475,100 // Fit_Pipe +12370,475,100 // Gril's_Naivety +12384,499,100 // Rainbow_Ruby_Water +12385,499,100 // Rainbow_Ruby_Fire +12386,499,100 // Rainbow_Ruby_Wind +12387,499,100 // Rainbow_Ruby_Earth +12388,507,100 // Runstone_Crush +12389,507,100 // Runstone_Storm +12390,507,100 // Runstone_Millennium +12391,475,100 // Lucky_Egg_C +12398,507,100 // PCBang_Gift_Box +12402,475,100 // 29Fruit +12403,475,100 // Lucky_Egg_C2 +12404,475,100 // Acti_Potion +12405,475,100 // Underripe_Yggseed +12406,475,100 // Psychic_ArmorS +12407,475,100 // PCBang_Coupon_Box +12413,475,100 // PCBang_Coupon_Box2 +12415,475,100 // Siege_Teleport_Scroll2 +12416,475,100 // Lucky_Egg_C3 +12473,467,100 // RWC_Parti_Box +12474,467,100 // RWC_Final_Comp_Box +12476,475,100 // PCBang_Coupon_Box3 +12478,507,100 // Chance_Box +12479,507,100 // Caracas_Ring_Box +12480,475,100 // Attend_3Day_Box +12481,475,100 // Attend_7Day_Box +12482,475,100 // Attend_10Day_Box +12483,475,100 // Attend_15Day_Box +12484,475,100 // Attend_20Day_Box +12485,475,100 // Attend_25Day_Box +12486,475,100 // GoldPC_First_Box +12487,475,100 // PC_4Leaf_Clover_Box +12488,475,100 // Ticket_Gift_Box +12489,475,100 // Ticket_Gift_Box2 +12492,475,100 // Crumpled_Paper +12493,475,100 // Lucky_Egg_C4 +12497,475,100 // E_Bubble_Gum +12501,475,100 // E_Str_Dish10_ +12502,475,100 // E_Agi_Dish10_ +12503,475,100 // E_Int_Dish10_ +12504,475,100 // E_Dex_Dish10_ +12505,475,100 // E_Luk_Dish10_ +12506,475,100 // E_Vit_Dish10_ +12507,475,100 // E_WOB_Rune +12508,475,100 // E_WOB_Schwaltz +12509,475,100 // E_WOB_Rachel +12510,475,100 // E_WOB_Local +12514,475,100 // E_Abrasive +12516,475,100 // E_Small_Life_Potion +12522,475,100 // E_Blessing_10_Scroll +12523,475,100 // E_Inc_Agi_10_Scroll +12529,475,100 // White_Slim_Potion_Box +12530,475,100 // Mastela_Fruit_Box +12531,475,100 // White_Potion_Box +12532,475,100 // Royal_Jelly_Box2 +12533,475,100 // Blue_Herb_Box2 +12534,475,100 // Yggdrasil_Seed_Box +12535,475,100 // Iggdrasilberry_Box +12540,499,100 // GM_Warp_Box +12541,499,100 // Fortune_Cookie1 +12542,499,100 // Fortune_Cookie2 +12543,499,100 // Fortune_Cookie3 +12545,475,100 // Lucky_Egg_C5 +12549,475,100 // White_Slim_Pot_Box2 +12550,475,100 // Poison_Bottle_Box2 +12565,507,100 // Cheer_Scarf_Box +12566,507,100 // Cheer_Scarf2_Box +12567,507,100 // Cheer_Scarf3_Box +12568,507,100 // Cheer_Scarf4_Box +12569,507,100 // Cheer_Scarf6_Box +12570,507,100 // Cheer_Scarf8_Box +12571,507,100 // Cheer_Scarf10_Box +12572,507,100 // Cheer_Scarf10_Box2 +12577,475,100 // Lucky_Egg_C6 +12578,475,100 // Rapid_Life_Water +12579,507,100 // Ring_Of_Valkyrie_Box +12581,475,100 // Vending_Search_Scroll2 +12583,507,100 // PR_Team_Box +12584,507,100 // Develop_Team_box +12585,507,100 // Marketing_Team_Box +12586,507,100 // Operating_Team_Box +12587,507,100 // Summer_Night_box +12588,507,100 // Summer_Night_box2 +12589,507,100 // Summer_Night_box3 +12591,475,100 // Uni_Catalog_Bz +12595,475,100 // Lucky_Egg_C7 +12596,475,100 // Magic_Candy +12600,507,100 // Treasure_Box_Scroll +12607,507,100 // Lolli_Pop_Box +//12610,475,100 // +12622,507,100 // Boarding_Halter +12625,475,100 // Sapa_Feat_Cert_Pack +12633,475,100 // Malang_Cat_Can +12636,467,100 // Malang_Sp_Can +12637,475,100 // Gong_Bug_Pocket +12638,475,100 // Dried_Squid_Box +12639,475,100 // Flying_Fish_Box +12640,475,100 // Starfish_Box +12641,475,100 // Lucky_Egg_C8 +12642,475,100 // Fruit_Of_Mastela_Box2 +12644,475,100 // PCBang_Coupon_Box4 +12645,475,100 // J_Aspersio_5_Scroll_C +12649,507,100 // Lv70_Imperial_Gift +12650,507,100 // Lv90_Imperial_Gift +12651,507,100 // Lv110_Imperial_Gift +12652,507,100 // Lv130_Imperial_Gift +12653,507,100 // Lv150_Imperial_Gift +12654,475,100 // Lucky_Egg_C9 +12658,475,100 // Trans_Scroll_Devi +12659,475,100 // Trans_Scroll_Ray_Arch +12660,475,100 // Trans_Scroll_Mavka +12661,475,100 // Trans_Scroll_Marduk +12662,475,100 // Trans_Scroll_Banshee +12663,475,100 // Trans_Scroll_Poring +12664,475,100 // Trans_Scroll_Golem +12672,499,100 // Start_New_Box +12673,475,100 // Lucky_Egg_C10 +12684,475,100 // ASPD_Potion +12685,475,100 // Gryphon_Egg_Scroll +12702,466,100 // Old_Bleu_Box +12704,475,100 // Elixir_Of_Life +12705,475,100 // Noble_Nameplate +12714,467,100 // Easter_Scroll +12715,507,100 // Black_Treasure_Box +12725,475,100 // Runstone_Nosiege +12726,475,100 // Runstone_Rhydo +12727,475,100 // Runstone_Verkana +12728,475,100 // Runstone_Isia +12729,475,100 // Runstone_Asir +12730,475,100 // Runstone_Urj +12731,475,100 // Runstone_Turisus +12732,475,100 // Runstone_Pertz +12733,475,100 // Runstone_Hagalas +12740,507,100 // Inc_Str_Scroll +12741,507,100 // Inc_Int_Scroll +12745,507,100 // Skull_Scroll +12766,507,100 // Reward_Job_BM25 +12785,475,100 // Dragon_Egg_Scroll +12786,475,100 // Change_Slot_Card +12790,475,100 // Change_Name_Card +12795,475,100 // 2011_RWC_Scroll_Kr +12796,475,100 // Red_Booster +12799,475,100 // PCBang_Coupon_Box5 +12802,507,100 // Time_Guardian_Box +12802,475,100 // Time_Guardian_Box +12803,507,100 // Beginner_Kit_Box +12804,475,100 // Cru_Scroll +12805,475,100 // Mystic_Powder +12807,507,100 // Mercenary_Casting_ +12808,507,100 // Mother_Love_Box +12809,507,100 // Level_Up_Box +12810,507,100 // Event_Gift_Box +12811,475,100 // Event_Gift_Box_ +12816,507,100 // Old_Ore_Box_ +12817,507,100 // Old_Card_Album_ +12818,507,100 // High_Weapon_Box_ +12819,507,100 // Zherlthsh_Tck_Box_ +//12825,475,100 // +//12830,475,100 // +12831,475,100 // Potion_Box +//12832,475,100 // +//12833,475,100 // +12834,475,100 // Undead_Egg +12835,475,100 // Girls_Heart +12845,499,100 // WOB_Amatsu +12847,507,100 // Old_Equipment_Box +//12854,467,100 // +//12855,475,100 // +//12871,475,100 // +//12872,475,100 // +//12873,475,100 // +12883,475,100 // Almighty +12884,507,100 // Infinite_Concentration_Potion +12885,507,100 // Infinite_Awakening_Potion +12886,507,100 // Infinite_Berserk_Potion +12887,507,100 // C_Wing_Of_Fly +//12888,507,100 // +12900,475,100 // Battle_Manual_Box +12901,475,100 // Insurance_Package +12902,475,100 // Bubble_Gum_Box +12903,475,100 // Str_Dish_Box +12904,475,100 // Agi_Dish_Box +12905,475,100 // Int_Dish_Box +12906,475,100 // Dex_Dish_Box +12907,475,100 // Luk_Dish_Box +12908,475,100 // Vit_Dish_Box +12909,475,100 // Kafra_Card_Box +12910,475,100 // Giant_Fly_Wing_Box +12911,475,100 // Neuralizer_Box +12912,475,100 // Convex_Mirror_Box +12913,475,100 // Blessing_10_Scroll_Box +12914,475,100 // Inc_Agi_10_Scroll_Box +12915,475,100 // Aspersio_5_Scroll_Box +12916,475,100 // Assumptio_5_Scroll_Box +12917,475,100 // Wind_Walk_10_Scroll_Box +12918,475,100 // Adrenaline_Scroll_Box +12919,475,100 // Megaphone_Box +12920,475,100 // Enriched_Elunium_Box +12921,475,100 // Enriched_Oridecon_Box +12922,475,100 // Token_Of_Siegfried_Box +12927,475,100 // J_Aspersio_5_Scroll_Box +12928,475,100 // J_Aspersio_5_Scroll +12928,475,100 // J_Aspersio_5_Scroll +12929,475,100 // Pet_Egg_Scroll_Box3 +12930,475,100 // Pet_Egg_Scroll_Box4 +12931,475,100 // Pet_Egg_Scroll_Box5 +12932,475,100 // Pet_Egg_Scroll3 +12933,475,100 // Pet_Egg_Scroll4 +12934,475,100 // Pet_Egg_Scroll5 +12935,475,100 // Infiltrator_Box +12936,475,100 // Muramasa_Box +12937,475,100 // Excalibur_Box +12938,475,100 // Combat_Knife_Box +12939,475,100 // Counter_Dagger_Box +12940,475,100 // Kaiser_Knuckle_Box +12941,475,100 // Pole_Axe_Box +12942,475,100 // Mighty_Staff_Box +12943,475,100 // Right_Epsilon_Box +12944,475,100 // Balistar_Box +12945,475,100 // Diary_Of_Great_Sage_Box +12946,475,100 // Asura_Box +12947,475,100 // Apple_Of_Archer_Box +12948,475,100 // Bunny_Band_Box +12949,475,100 // Sahkkat_Box +12950,475,100 // Lord_Circlet_Box +12951,475,100 // Elven_Ears_Box +12952,475,100 // Steel_Flower_Box +12953,475,100 // Critical_Ring_Box +12954,475,100 // Earring_Box +12955,475,100 // Ring_Box +12956,475,100 // Necklace_Box +12957,475,100 // Glove_Box +12958,475,100 // Brooch_Box +12959,475,100 // Rosary_Box +12960,475,100 // Safety_Ring_Box +12961,475,100 // Vesper_Core01_Box +12962,475,100 // Vesper_Core02_Box +12963,475,100 // Vesper_Core03_Box +12964,475,100 // Vesper_Core04_Box +12965,475,100 // Emergency_Box1 +12966,475,100 // Emergency_Box2 +12967,475,100 // Emergency_Box3 +12968,475,100 // Emergency_Scroll1 +12969,475,100 // Emergency_Scroll2 +12970,475,100 // Emergency_Scroll3 +12971,475,100 // Teleport_Box1 +12972,475,100 // Teleport_Box2 +12973,475,100 // Teleport_Box3 +12974,475,100 // Teleport_Box4 +12975,475,100 // Teleport_Box5 +12976,475,100 // Teleport_Box6 +12977,475,100 // Teleport_Scroll1 +12978,475,100 // Teleport_Scroll2 +12979,475,100 // Teleport_Scroll3 +12980,475,100 // Teleport_Scroll4 +12981,475,100 // Teleport_Scroll5 +12982,475,100 // Teleport_Scroll6 +12983,475,100 // Pet_Egg_Scroll_Box6 +12984,475,100 // Pet_Egg_Scroll_Box7 +12985,475,100 // Pet_Egg_Scroll_Box8 +12986,475,100 // Pet_Egg_Scroll_Box9 +12987,475,100 // Pet_Egg_Scroll_Box10 +12988,475,100 // Pet_Egg_Scroll_Box11 +12989,475,100 // Pet_Egg_Scroll6 +12990,475,100 // Pet_Egg_Scroll7 +12991,475,100 // Pet_Egg_Scroll8 +12992,475,100 // Pet_Egg_Scroll9 +12993,475,100 // Pet_Egg_Scroll10 +12994,475,100 // Pet_Egg_Scroll11 +12995,475,100 // White_Herb_Box +12996,475,100 // Blue_Herb_Box +12997,475,100 // Elunium_Box +12998,475,100 // Oridecon_Box +12999,475,100 // Branch_Of_Dead_Tree_Box +13020,507,100 // Warrior_Balmung_ +13021,507,100 // Combat_Knife_C +13022,507,100 // Counter_Dagger_C +13023,507,100 // Asura_C +13024,507,100 // Sword_Breaker_C +13025,507,100 // Mail_Breaker_C +13026,507,100 // Moonlight_Sword_C +13029,475,100 // Prinsence_Knife +13036,499,100 // BF_Dagger1 +13037,499,100 // BF_Dagger2 +13042,499,100 // Krieger_Dagger1 +13043,507,100 // Fortune_Sword_I +13044,507,100 // House_Auger_I +13045,507,100 // Kamaitachi_I +13048,507,100 // Damascus_C +13049,1,100 // Lacma +13050,499,100 // P_Dagger1 +13051,499,100 // P_Dagger2 +13052,499,100 // Tourist_Dagger +13066,499,100 // P_Dagger3 +13068,507,100 // Saurel +13074,507,100 // Ninja_Cutter +13079,499,100 // Metal_Dagger +//13083,499,100 // +13108,499,100 // BF_Pistol1 +13109,507,100 // Wasteland_Outlaw_C +13110,499,100 // Krieger_Pistol1 +13111,507,100 // Sharpshooter_Revolver +13112,499,100 // P_Revolver1 +13113,499,100 // P_Revolver2 +13114,499,100 // P_Revolver3 +//13117,499,100 // +13118,499,100 // Spark_Light +13119,467,100 // Spark_Of_Freedom +13125,499,100 // Metal_Revolver +13126,467,100 // Infinity_Pistol +13171,499,100 // BF_Rifle1 +13172,499,100 // BF_Gatling_Gun1 +13173,499,100 // BF_Shotgun1 +13174,499,100 // BF_Launcher1 +13175,507,100 // Lever_Action_Rifle_C +13176,499,100 // Krieger_Rifle1 +13177,499,100 // Krieger_Gatling1 +13178,499,100 // Krieger_Shotgun1 +13179,499,100 // Krieger_Launcher1 +//13184,499,100 // +//13185,499,100 // +//13186,499,100 // +//13187,499,100 // +13208,475,100 // Gong_Bug +13291,475,100 // Starfish +13292,475,100 // Dried_Squid +13293,475,100 // Flying_Fish +13295,499,100 // Light_Shuriken +13305,499,100 // BF_Huuma_Shuriken1 +13306,499,100 // BF_Huuma_Shuriken2 +13307,499,100 // Krieger_Huuma_Shuriken1 +13308,507,100 // Huuma_Blaze_I +13309,507,100 // Huuma_Giant_Wheel_C +13310,499,100 // P_Huuma_Suriken1 +13312,507,100 // Huuma_Job_Test +//13317,499,100 // +13322,499,100 // Huuma_Metal_Shuriken +13323,467,100 // Infinity_Shuriken +13401,507,100 // Excalibur_C +13402,507,100 // Cutlas_C +13403,507,100 // Solar_Sword_C +13406,475,100 // Edger +13407,507,100 // Nagan_C +13408,507,100 // Fire_Brand_C +13409,507,100 // Immaterial_Sword_C +13410,499,100 // BF_Sword1 +13411,499,100 // BF_Sword2 +13416,499,100 // Krieger_Onehand_Sword1 +13417,499,100 // Krieger_Onehand_Sword2 +13418,499,100 // Krieger_Onehand_Sword3 +13419,507,100 // Holy_Saber +13422,507,100 // Flamberge_C +13423,499,100 // P_Sabre1 +13424,499,100 // P_Sabre2 +13425,499,100 // Tourist_Sword +13434,499,100 // P_Saber3 +//13439,499,100 // +13500,475,100 // Insurance60_Package +13501,475,100 // Assorted_Scroll_Box +13502,475,100 // Drooping_Kitty_Box +13503,475,100 // Magestic_Goat_Box +13504,475,100 // Deviruchi_Cap_Box +13505,475,100 // Executioner_Box +13506,475,100 // Brood_Axe_Box +13507,475,100 // Tomahawk_Box +13508,475,100 // Bow_Of_Rudra_Box +13509,475,100 // Cutlas_Box +13510,475,100 // Solar_Sword_Box +13511,475,100 // Sword_Breaker_Box +13512,475,100 // Mail_Breaker_Box +13513,475,100 // Moonlight_Sword_Box +13514,475,100 // Spanner_Box +13515,475,100 // Grape_Box +13516,475,100 // Royal_Jelly_Box +13517,475,100 // Yggdrasilberry_Box +13518,475,100 // Weapon_Card_Scroll_Box +13519,475,100 // Armor_Card_Scroll_Box +13520,475,100 // Helmet_Card_Scroll_Box +13521,475,100 // Garment_Card_Scroll_Box +13522,475,100 // Shield_Card_Scroll_Box +13523,475,100 // Shoes_Card_Scroll_Box +13524,475,100 // Accy_Card_Scroll_Box +13525,475,100 // Zeny_Scroll_Box +13526,475,100 // Pet_Egg_Scroll_Box1_ +13527,475,100 // Pet_Egg_Scroll_Box2_ +13528,475,100 // Pet_Egg_Scroll_Box3_ +13529,475,100 // Pet_Egg_Scroll_Box4_ +13530,475,100 // Pet_Egg_Scroll_Box5_ +13531,475,100 // Light_Red_Pot_Box +13532,475,100 // Light_Orange_Pot_Box +13533,475,100 // Light_Yellow_Pot_Box +13534,475,100 // Light_White_Pot_Box +13535,475,100 // Light_Center_Pot_Box +13536,475,100 // Light_Awakening_Pot_Box +13537,475,100 // Light_Berserk_Pot_Box +13538,475,100 // Meteor_10_Scroll_Box +13539,475,100 // Storm_10_Scroll_Box +13540,475,100 // Vermilion_10_Scroll_Box +13541,475,100 // Lex_Aeterna_Scroll_Box +13542,475,100 // Magnificat_5_Scroll_Box +13543,475,100 // CP_Helm_Scroll_Box +13544,475,100 // CP_Shield_Scroll_Box +13545,475,100 // CP_Armor_Scroll_Box +13546,475,100 // CP_Weapon_Scroll_Box +13547,475,100 // Repair_Scroll_Box +13548,475,100 // Big_Bun_Box +13549,475,100 // Pill__Box +13550,475,100 // Superb_Fish_Slice_Box +13551,475,100 // Chewy_Ricecake_Box +13552,475,100 // Oriental_Pastry_Box +13553,475,100 // Dun_Tele_Scroll1_Box +13554,475,100 // Weapon_Card_Scroll_Box2 +13555,475,100 // Weapon_Card_Scroll_Box3 +13556,475,100 // Armor_Card_Scroll_Box2 +13557,475,100 // Accy_Card_Scroll_Box2 +13558,475,100 // Weapon_Card_Scroll +13559,475,100 // Armor_Card_Scroll +13560,475,100 // Helmet_Card_Scroll +13561,475,100 // Hood_Card_Scroll +13562,475,100 // Hood_Card_Scroll2 +13563,475,100 // Shoes_Card_Scroll +13564,475,100 // Accy_Card_Scroll +13565,475,100 // Weapon_Card_Scroll2 +13566,475,100 // Weapon_Card_Scroll3 +13567,475,100 // Armor_Card_Scroll2 +13568,475,100 // Accy_Card_Scroll2 +13569,475,100 // PVP_Tele_Scroll_Box +13570,475,100 // Giant_Fly_Wing_Box50 +13571,475,100 // Giant_Fly_Wing_Box100 +13572,475,100 // Dex_Dish_Box30 +13573,475,100 // Dex_Dish_Box50 +13574,475,100 // Luk_Dish_Box30 +13575,475,100 // Luk_Dish_Box50 +13576,475,100 // Inc_Agi_10_Box30 +13577,475,100 // Inc_Agi_10_Box50 +13578,475,100 // Vit_Dish_Box30 +13579,475,100 // Vit_Dish_Box50 +13580,475,100 // Insurance_Package30 +13581,475,100 // Insurance_Package50 +13582,475,100 // Convex_Mirror_Box5 +13583,475,100 // Convex_Mirror_Box30 +13584,475,100 // Blessing10_Box30 +13585,475,100 // Blessing10_Box50 +13586,475,100 // Adrenaline10_Box30 +13587,475,100 // Adrenaline10_Box50 +13588,475,100 // Assumptio_5_Box30 +13589,475,100 // Assumptio_5_Box50 +13590,475,100 // Aspersio_5_Box30 +13591,475,100 // Aspersio_5_Box50 +13592,475,100 // Agi_Dish_Box30 +13593,475,100 // Agi_Dish_Box50 +13594,475,100 // Wind_Walk10_Box30 +13595,475,100 // Wind_Walk10_Box50 +13596,475,100 // Int_Dish_Box30 +13597,475,100 // Int_Dish_Box50 +13598,475,100 // Battle_Manual_Box1 +13599,475,100 // Battle_Manual_Box5 +13600,475,100 // Siegfried_Box5 +13601,475,100 // Siegfried_Box20 +13602,475,100 // Kafra_Card_Box30 +13603,475,100 // Kafra_Card_Box50 +13604,475,100 // Str_Dish_Box30 +13605,475,100 // Str_Dish_Box50 +13606,475,100 // Bubble_Gum_Box1 +13607,475,100 // Bubble_Gum_Box5 +13608,475,100 // Megaphone_Box1 +13609,475,100 // Megaphone_Box5 +13610,475,100 // Enriched_Elunium_Box5 +13611,475,100 // Enriched_Oridecon_Box5 +13612,475,100 // Handcuff_Box +13613,475,100 // Super_Pet_Egg_Box1 +13614,475,100 // Super_Pet_Egg_Box2 +13615,475,100 // Super_Pet_Egg_Box3 +13616,475,100 // Super_Pet_Egg_Box4 +13617,475,100 // Super_Pet_Egg1 +13618,475,100 // Super_Pet_Egg2 +13619,475,100 // Super_Pet_Egg3 +13620,475,100 // Super_Pet_Egg4 +13621,475,100 // Greed_Box30 +13622,475,100 // Greed_Box50 +13623,475,100 // Greed_Box100 +13624,475,100 // Flee_30_Scroll_Box +13625,475,100 // Accuracy_30_Scroll_Box +13626,475,100 // Super_Card_Pet_Egg_Box1 +13627,475,100 // Super_Card_Pet_Egg_Box2 +13628,475,100 // Super_Card_Pet_Egg_Box3 +13629,475,100 // Super_Card_Pet_Egg_Box4 +13630,475,100 // Super_Card_Pet_Egg1 +13631,475,100 // Super_Card_Pet_Egg2 +13632,475,100 // Super_Card_Pet_Egg3 +13633,475,100 // Super_Card_Pet_Egg4 +13634,475,100 // Vigorgra_Package1 +13635,475,100 // Vigorgra_Package2 +13636,475,100 // Vigorgra_Package3 +13637,475,100 // Vigorgra_Package4 +13638,475,100 // Vigorgra_Package5 +13639,475,100 // Vigorgra_Package6 +13640,475,100 // Vigorgra_Package7 +13641,475,100 // Vigorgra_Package8 +13642,475,100 // Vigorgra_Package9 +13643,475,100 // Vigorgra_Package10 +13644,475,100 // Vigorgra_Package11 +13645,475,100 // Vigorgra_Package12 +13646,475,100 // Infiltrator_Box1 +13647,475,100 // Muramasa_Box1 +13648,475,100 // Excalibur_Box1 +13649,475,100 // Combat_Knife_Box1 +13650,475,100 // Counter_Dagger_Box1 +13651,475,100 // Kaiser_Knuckle_Box1 +13652,475,100 // Pole_Axe_Box1 +13653,475,100 // Mighty_Staff_Box1 +13654,475,100 // Right_Epsilon_Box1 +13655,475,100 // Balistar_Box1 +13656,475,100 // Diary_Of_Sage_Box1 +13657,475,100 // Asura_Box1 +13658,475,100 // Apple_Of_Archer_Box1 +13659,475,100 // Bunny_Band_Box1 +13660,475,100 // Sahkkat_Box1 +13661,475,100 // Lord_Circlet_Box1 +13662,475,100 // Elven_Ears_Box1 +13663,475,100 // Steel_Flower_Box1 +13664,475,100 // Critical_Ring_Box1 +13665,475,100 // Earring_Box1 +13666,475,100 // Ring_Box1 +13667,475,100 // Necklace_Box1 +13668,475,100 // Glove_Box1 +13669,475,100 // Brooch_Box1 +13670,475,100 // Rosary_Box1 +13671,475,100 // Safety_Ring_Box1 +13672,475,100 // Vesper_Core01_Box1 +13673,475,100 // Vesper_Core02_Box1 +13674,475,100 // Vesper_Core03_Box1 +13675,475,100 // Vesper_Core04_Box1 +13676,475,100 // Drooping_Kitty_Box1 +13677,475,100 // Magestic_Goat_Box1 +13678,475,100 // Deviruchi_Cap_Box1 +13679,475,100 // Executioner_Box1 +13680,475,100 // Brood_Axe_Box1 +13681,475,100 // Tomahawk_Box1 +13682,475,100 // Bow_Of_Rudra_Box1 +13683,475,100 // Cutlas_Box1 +13684,475,100 // Solar_Sword_Box1 +13685,475,100 // Sword_Breaker_Box1 +13686,475,100 // Mail_Breaker_Box1 +13687,475,100 // Moonlight_Sword_Box1 +13688,475,100 // Spanner_Box1 +13689,475,100 // Bok_Choy_Box +13690,475,100 // Chung_E_Cake_Box +13691,475,100 // Freyja_Overcoat_Box +13692,475,100 // Freyja_Boots_Box +13693,475,100 // Freyja_Cape_Box +13694,475,100 // Freyja_Crown_Box +13695,475,100 // Battle_Manual25_Box +13696,475,100 // Battle_Manual100_Box +13696,475,100 // Battle_Manual100_Box +13697,475,100 // J_Blessing10_Box +13698,475,100 // J_Inc_Agi10_Box +13699,475,100 // J_Wind_Walk10_Box +13700,475,100 // J_Adrenaline10_Box +13701,475,100 // Pet_Egg_Scroll12 +13702,475,100 // Pet_Egg_Scroll13 +13703,475,100 // Pet_Egg_Scroll14 +13704,475,100 // Super_Pet_Egg5 +13705,475,100 // Super_Pet_Egg6 +13706,475,100 // Super_Pet_Egg7 +13707,475,100 // Super_Pet_Egg8 +13708,475,100 // Pet_Egg_Scroll_E +13709,475,100 // BRO_Package_1 +13710,475,100 // Max_Weight_Up_Box +13711,475,100 // Small_Life_Potion_Box +13712,475,100 // Small_Life_Potion_Box30 +13713,475,100 // Small_Life_Potion_Box50 +13714,475,100 // Med_Life_Potion_Box +13715,475,100 // Med_Life_Potion_Box30 +13716,475,100 // Med_Life_Potion_Box50 +13717,475,100 // Abrasive_Box5 +13718,475,100 // Abrasive_Box10 +13719,475,100 // Regeneration_Box5 +13720,475,100 // Regeneration_Box10 +13721,475,100 // Dun_Tele_Scroll_Box10 +13722,475,100 // Pecopeco_Hairband_Box +13723,475,100 // Red_Glasses_Box +13724,475,100 // Whisper_Mask_Box +13725,475,100 // Ramen_Hat_Box +13726,475,100 // Gold_Box_ +13727,475,100 // Silver_Box_ +13728,475,100 // Gold_Key1_Box +13729,475,100 // Gold_Key5_Box +13730,475,100 // Silver_Key1_Box +13731,475,100 // Silver_Key5_Box +13734,475,100 // Pecopeco_Hairband_Box1 +13735,475,100 // Red_Glasses_Box1 +13736,475,100 // Whisper_Mask_Box1 +13737,475,100 // Ramen_Hat_Box1 +13738,475,100 // Glass_Of_Illusion_Box5 +13739,475,100 // Glass_Of_Illusion_Box10 +13740,475,100 // Shadow_Armor_S_Box5 +13741,475,100 // Shadow_Armor_S_Box10 +13742,475,100 // Shadow_Armor_S_Box30 +13743,475,100 // Holy_Armor_S_Box5 +13744,475,100 // Holy_Armor_S_Box10 +13745,475,100 // Holy_Armor_S_Box30 +13746,475,100 // S_Def_Potion_Box10 +13747,475,100 // S_Def_Potion_Box30 +13748,475,100 // S_Def_Potion_Box50 +13749,475,100 // B_Def_Potion_Box10 +13750,475,100 // B_Def_Potion_Box30 +13751,475,100 // B_Def_Potion_Box50 +13752,475,100 // S_Mdef_Potion_Box10 +13753,475,100 // S_Mdef_Potion_Box30 +13754,475,100 // S_Mdef_Potion_Box50 +13755,475,100 // B_Mdef_Potion_Box10 +13756,475,100 // B_Mdef_Potion_Box30 +13757,475,100 // B_Mdef_Potion_Box50 +13758,475,100 // Battle_Manual_X3_Box +13759,475,100 // In_Blue_Herb_Box +13760,475,100 // Honey_Box +13761,475,100 // Empty_Bottle_Box +13762,475,100 // In_Royal_Jelly_Box +13763,507,100 // 5_Anniversary_Coin_Box +13764,475,100 // Battle_Manual_Box_TW +13765,507,100 // Certificate_TW_Box +13766,475,100 // Nagan_Box +13767,475,100 // Skewer_Box +13768,475,100 // Survival_Rod_Box +13769,475,100 // Quadrille_Box +13770,475,100 // Great_Axe_Box +13771,475,100 // Bloody_Roar_Box +13772,475,100 // Hardback_Box +13773,475,100 // Fire_Brand_Box +13774,475,100 // Immaterial_Sword_Box +13775,475,100 // Unholy_Touch_Box +13776,475,100 // Cloak_Of_Survival_Box +13777,475,100 // Masquerade_Box +13778,475,100 // Orc_Hero_Helm_Box +13779,475,100 // Evil_Wing_Ears_Box +13780,475,100 // Dark_Blindfold_Box +13781,475,100 // kRO_Drooping_Kitty_Box +13782,475,100 // Corsair_Box +13783,475,100 // Bloody_Iron_Ball_Box +13784,475,100 // Spiritual_Ring_Box +13785,475,100 // Nagan_Box1 +13786,475,100 // Skewer_Box1 +13787,475,100 // Survival_Rod_Box1 +13788,475,100 // Quadrille_Box1 +13789,475,100 // Great_Axe_Box1 +13790,475,100 // Bloody_Roar_Box1 +13791,475,100 // Hardback_Box1 +13792,475,100 // Fire_Brand_Box1 +13793,475,100 // Immaterial_Sword_Box1 +13794,475,100 // Unholy_Touch_Box1 +13795,475,100 // Cloak_Of_Survival_Box1 +13796,475,100 // Masquerade_Box1 +13797,475,100 // Orc_Hero_Helm_Box1 +13798,475,100 // Evil_Wing_Ears_Box1 +13799,475,100 // Dark_Blindfold_Box1 +13800,475,100 // kRO_Drooping_Kitty_Box1 +13801,475,100 // Corsair_Box1 +13802,475,100 // Bloody_Iron_Ball_Box1 +13803,475,100 // Spiritual_Ring_Box1 +13804,475,100 // Fire_Cracker_Love_Box +13805,475,100 // Fire_Cracker_Wday_Box +13806,475,100 // Fire_Cracker_Vday_Box +13807,475,100 // Fire_Cracker_Bday_Box +13808,475,100 // Fire_Cracker_Xmas_Box +13809,475,100 // Blue_Gemstone_Box +13810,475,100 // Blue_Potion_Box +13811,475,100 // Food_Box_Lv1 +13812,475,100 // Food_Box_Lv2 +13813,475,100 // Food_Box_Lv3 +13814,475,100 // Indonesia_Box +13815,475,100 // Knife_Goblin_Box +13816,475,100 // Flail_Goblin_Box +13817,475,100 // Hammer_Goblin_Box +13818,475,100 // Red_Deleter_Box +13819,475,100 // Diabolic_Box +13820,475,100 // Wanderer_Box +13821,475,100 // Green_Apple_Box +13822,475,100 // Whole_Barbecue_Box +13823,475,100 // Meat_Veg_Skewer_Box +13824,475,100 // Spirit_Liquor_Box +13826,475,100 // Power_Box1 +13827,475,100 // Power_Box2 +13828,475,100 // Resist_Box1 +13829,475,100 // Resist_Box2 +13830,475,100 // Stat_Boost1 +13831,475,100 // Stat_Boost2 +13832,475,100 // Stat_Boost3 +13833,475,100 // Stat_Boost4 +13834,475,100 // Dun_Tele_Scroll2_Box5 +13835,475,100 // Dun_Tele_Scroll2_Box10 +13836,475,100 // Mbl_Str_Dish_Box +13837,475,100 // Mbl_Agi_Dish_Box +13838,475,100 // Mbl_Int_Dish_Box +13839,475,100 // Mbl_Dex_Dish_Box +13840,475,100 // Mbl_Luk_Dish_Box +13841,475,100 // Mbl_Vit_Dish_Box +13842,475,100 // Mbl_Kafra_Card_Box +13843,475,100 // Mbl_Battle_Manual_Box +13844,475,100 // Heroic_Stone_Box +13845,475,100 // Mysterious_Travel_Sack1 +13846,475,100 // Mysterious_Travel_Sack2 +13847,475,100 // Mysterious_Travel_Sack3 +13848,475,100 // Mysterious_Travel_Sack4 +13849,475,100 // WOB_Box_Rune5 +13850,475,100 // WOB_Box_Rune10 +13851,475,100 // WOB_Box_Schawaltz5 +13852,475,100 // WOB_Box_Schawaltz10 +13853,475,100 // WOB_Box_Rachel5 +13854,475,100 // WOB_Box_Rachel10 +13855,475,100 // WOB_Box_Local5 +13856,475,100 // WOB_Box_Local10 +13857,475,100 // Spark_Candy_Box5 +13858,475,100 // Spark_Candy_Box10 +13859,507,100 // Directive_A_Envelope +13860,507,100 // Directive_B_Envelope +13861,475,100 // Mini_Battle_Manual_Box +13862,475,100 // Trial_Box +13863,475,100 // Repair_Scroll_Box10 +13864,475,100 // Hockey_Mask_Box +13865,475,100 // Observer_Box +13866,475,100 // Flying_Angel_Box +13867,475,100 // Neko_Mimi_Box +13868,475,100 // MFH_Box +13869,475,100 // Chick_Hat_Box +13870,475,100 // New_Style_Box +13871,475,100 // Magician_Card_Box +13872,475,100 // Acolyte_Card_Box +13873,475,100 // Archer_Card_Box +13874,475,100 // Swordman_Card_Box +13875,475,100 // Thief_Card_Box +13876,475,100 // Merchant_Card_Box +13877,475,100 // Clock_Tower_Card_Box +13878,475,100 // Geffenia_Card_Box +13879,475,100 // Owl_Card_Box +13880,475,100 // Ghost_Card_Box +13881,475,100 // Nightmare_Card_Box +13882,475,100 // Curse_Card_Box +13883,475,100 // Sleep_Card_Box +13884,475,100 // Freeze_Card_Box +13885,475,100 // Stun_Card_Box +13886,475,100 // Silence_Card_Box +13887,475,100 // Blind_Card_Box +13888,475,100 // Chaos_Card_Box +13889,475,100 // Elunium_Box_ +13890,475,100 // Oridecon_Box_ +13891,475,100 // Fire_Converter_Box +13892,475,100 // Water_Converter_Box +13893,475,100 // Wind_Converter_Box +13894,475,100 // Earth_Converter_Box +13895,475,100 // Starter_Pack +13896,475,100 // Mimic_Summon_Box5 +13897,475,100 // Disguise_Summon_Box5 +13898,475,100 // Alice_Summon_Box5 +13899,475,100 // Mimic_Summon_Box10 +13900,475,100 // Disguise_Summon_Box10 +13901,475,100 // Alice_Summon_Box10 +13902,475,100 // Fish_Head_Hat_Box +13903,475,100 // Santa_Poring_Hat_Box +13904,475,100 // Bell_Ribbon_Box +13905,475,100 // Hard_Core_Set_Box +13906,475,100 // Kitty_Set_Box +13907,475,100 // Soft_Core_Set_Box +13908,475,100 // Deviruchi_Set_Box +13909,475,100 // MVP_Hunt_Box +13910,475,100 // Brewing_Box +13911,475,100 // Christmas_Pet_Scroll +13912,475,100 // Pty_Blessing_Box +13913,475,100 // Pty_Inc_Agi_Box +13914,475,100 // Pty_Assumptio_Box +13915,475,100 // Love_Angel_Box +13916,475,100 // Squirrel_Box +13917,475,100 // Gogo_Box +13918,475,100 // Drooping_W_Kitty_Box +13919,475,100 // L_Magestic_Goat_Box +13920,475,100 // Satanic_Chain_P_Box +13921,475,100 // Antique_Pipe_Box +13922,475,100 // Rabbit_Ear_Hat_Box +13923,475,100 // Darkness_Helm_Box +13924,475,100 // L_Orc_Hero_Helm_Box +13925,475,100 // Lucky_Scroll08 +13926,475,100 // Crusader_Card_Box +13927,475,100 // Alchemist_Card_Box +13928,475,100 // Rogue_Card_Box +13929,475,100 // Bard_Dancer_Card_Box +13930,475,100 // Sage_Card_Box +13931,475,100 // Monk_Card_Box +13932,475,100 // Sylph_Box +13933,475,100 // Undine_Box +13934,475,100 // Salamander_Box +13935,475,100 // Soul_Box +13936,475,100 // Noum_Box +13937,475,100 // Robo_Eye_Box +13938,475,100 // Twin_Ribbon_Box +13939,475,100 // Diadem_Box +13940,475,100 // Siege_Tele_Scroll_Box +13940,475,100 // Siege_Tele_Scroll_Box +13941,475,100 // TW_Valentine_Scroll +13942,475,100 // Love_Angel_Box_1m +13943,475,100 // Squirrel_Box_1m +13944,475,100 // Gogo_Box_1m +13945,475,100 // Br_SwordPackage +13946,475,100 // Br_MagePackage +13947,475,100 // Br_AcolPackage +13948,475,100 // Br_ArcherPackage +13949,475,100 // Br_MerPackage +13950,475,100 // Br_ThiefPackage +13951,475,100 // Wasteland_Outlaw_Box +13952,475,100 // Lever_Action_Rifle_Box +13953,475,100 // All_In_One_Ring_Box +13954,475,100 // Spiritual_Tunic_Box +13955,475,100 // Recuperative_Armor_Box +13956,475,100 // Shelter_Resistance_Box +13957,475,100 // Sylphid_Manteau_Box +13958,475,100 // Refresh_Shoes_Box +13959,475,100 // Toast_Box +13960,475,100 // Name_Change_Coupon_Box +13961,475,100 // Mojji_Box +13962,475,100 // Deprotai_Doll_Hat_Box +13963,475,100 // Claris_Doll_Hat_Box +13964,475,100 // Sorin_Doll_Hat_Box +13965,475,100 // Tayelin_Doll_Hat_Box +13966,475,100 // Binit_Doll_Hat_Box +13967,475,100 // Debril_Doll_Hat_Box +13968,475,100 // Bubblegum_Lower_Box +13969,475,100 // Lucky_Clip_Box +13970,475,100 // Iron_10_Box +13971,475,100 // Steel_10_Box +13972,475,100 // Coal_10_Box +13973,475,100 // Poison_Bottle_30_Box +13974,475,100 // TW_Scroll01 +13975,475,100 // Picture_Diary_Box +13976,475,100 // Mini_Heart_Box +13977,475,100 // Newcomer_Box +13978,475,100 // Kid_Box +13979,475,100 // Magic_Castle_Box +13980,475,100 // Bulging_Head_Box +13981,475,100 // Picture_Diary_Box_1m +13982,475,100 // Mini_Heart_Box_1m +13983,475,100 // Newcomer_Box_1m +13984,475,100 // Kid_Box_1m +13985,475,100 // Magic_Castle_Box_1m +13986,475,100 // Bulging_Head_Box_1m +13987,475,100 // Ori_Stone_5_Box +13988,475,100 // Ori_Stone_50_Box +13989,475,100 // Acidbomb_10_Box +13990,475,100 // Job_Manual50_Box +13991,475,100 // Tiger_Mask_Box +13992,475,100 // Cat_Hat_Box +13993,475,100 // Alice_Doll_Box +13994,475,100 // Speed_Up_Potion_Box5 +13995,475,100 // Speed_Up_Potion_Box10 +13996,475,100 // Big_Bun_Box100 +13997,475,100 // Big_Bun_Box500 +13998,475,100 // Giant_Flywing_Box500 +13999,475,100 // Pill_Box100 +14000,475,100 // Pill_Box500 +14001,475,100 // Basic_Siege_Supply_Box +14002,475,100 // Adv_Siege_Supply_Box +14003,475,100 // Elite_Siege_Supply_Box +14004,475,100 // Poison_Bottle_10_Box +14005,475,100 // Poison_Bottle_5_Box +14006,475,100 // F_Drooping_W_Kitty_Box +14007,475,100 // F_Rabbit_Ear_Hat_Box +14008,475,100 // F_L_Orc_Hero_Helm_Box +14009,475,100 // F_Love_Angel_Box +14010,475,100 // F_Squirrel_Box +14011,475,100 // F_Gogo_Box +14012,475,100 // F_Love_Angel_Box_1m +14013,475,100 // F_Squirrel_Box_1m +14014,475,100 // F_Gogo_Box_1m +14015,475,100 // F_Wasteland_Outlaw_Box +14016,475,100 // F_Lever_Action_Rifle_Box +14017,475,100 // F_All_In_One_Ring_Box +14018,475,100 // F_Spritual_Tunic_Box +14019,475,100 // F_Recuperative_Box +14020,475,100 // F_Shelter_Resist_Box +14021,475,100 // F_Sylphid_Manteau_Box +14022,475,100 // F_Refresh_Shoes_Box +14023,475,100 // F_Toast_Box +14024,475,100 // F_Robo_Eye_Box +14025,475,100 // F_Twin_Ribbon_Box +14026,475,100 // F_Diadem_Box +14027,475,100 // F_Fish_Head_Hat_Box +14028,475,100 // F_Santa_Poring_Hat_Box +14029,475,100 // F_Bell_Ribbon_Box +14030,475,100 // F_Mimic_Scroll_Box5 +14031,475,100 // F_Disguise_Scroll_Box5 +14032,475,100 // F_Alice_Scroll_Box5 +14033,475,100 // F_Mimic_Scroll_Box10 +14034,475,100 // F_Disguise_Scroll_Box10 +14035,475,100 // F_Alice_Scroll_Box10 +14036,475,100 // F_New_Style_Coupon_Box +14037,475,100 // F_Repair_Scroll_Box +14038,475,100 // F_Repair_Scroll_Box10 +14039,475,100 // F_Hockey_Mask_Box +14040,475,100 // F_Observer_Box +14041,475,100 // F_WOB_Rune_Box5 +14042,475,100 // F_WOB_Rune_Box10 +14043,475,100 // F_WOB_Schwaltz_Box5 +14044,475,100 // F_WOB_Schwaltz_Box10 +14045,475,100 // F_WOB_Rachel_Box5 +14046,475,100 // F_WOB_Rachel_Box10 +14047,475,100 // F_WOB_Local_Box5 +14048,475,100 // F_WOB_Local_Box10 +14049,475,100 // F_Spark_Candy_Box5 +14050,475,100 // F_Spark_Candy_Box10 +14051,475,100 // F_Dun_Tel_Scroll2_Box5 +14052,475,100 // F_Dun_Tel_Scroll2_Box10 +14053,475,100 // F_Little_Angel_Doll_Box +14054,475,100 // F_Triple_Poring_Hat_Box +14055,475,100 // F_Nagan_Box +14056,475,100 // F_Skewer_Box +14057,475,100 // F_Survival_Rod_Box +14058,475,100 // F_Quadrille_Box +14059,475,100 // F_Great_Axe_Box +14060,475,100 // F_Bloody_Roar_Box +14061,475,100 // F_Hardback_Box +14062,475,100 // F_Fire_Brand_Box +14063,475,100 // F_Immaterial_Sword_Box +14064,475,100 // F_Unholy_Touch_Box +14065,475,100 // F_Clack_Of_Servival_Box +14066,475,100 // F_Masquerade_Box +14067,475,100 // F_Orc_Hero_Helm_Box +14068,475,100 // F_Ear_Of_Devil_Wing_Box +14069,475,100 // F_Dark_Blindfold_Box +14070,475,100 // F_K_Drooping_Kitty_Box +14071,475,100 // F_Corsair_Box +14072,475,100 // F_Bloody_Iron_Ball_Box +14073,475,100 // F_Spiritual_Ring_Box +14074,475,100 // F_G_O_I_Box5 +14075,475,100 // F_G_O_I_Box10 +14076,475,100 // F_Shadow_Armor_S_Box5 +14077,475,100 // F_Shadow_Armor_S_Box10 +14078,475,100 // F_Shadow_Armor_S_Box30 +14079,475,100 // F_Holy_Armor_S_Box5 +14080,475,100 // F_Holy_Armor_S_Box10 +14081,475,100 // F_Holy_Armor_S_Box30 +14082,475,100 // FS_Def_Potion_Box10 +14083,475,100 // FS_Def_Potion_Box30 +14084,475,100 // FS_Def_Potion_Box50 +14085,475,100 // FB_Def_Potion_Box10 +14086,475,100 // FB_Def_Potion_Box30 +14087,475,100 // FB_Def_Potion_Box50 +14088,475,100 // FS_Mdef_Potion_Box10 +14089,475,100 // FS_Mdef_Potion_Box30 +14090,475,100 // FS_Mdef_Potion_Box50 +14091,475,100 // FB_Mdef_Potion_Box10 +14092,475,100 // FB_Mdef_Potion_Box30 +14093,475,100 // FB_Mdef_Potion_Box50 +14094,475,100 // F_Flying_Angel_Box +14095,475,100 // F_Cat_Hat_Box +14096,475,100 // F_M_F_H_Box +14097,475,100 // F_Chick_Hat_Box +14098,475,100 // F_Pecopeco_Hairband_Box +14099,475,100 // F_Red_Glasses_Box +14100,475,100 // F_Whisper_Mask_Box +14101,475,100 // F_Ramen_Hat_Box +14102,475,100 // F_Dun_Tele_Scroll1_Box +14103,475,100 // F_Max_Weight_Up_Box +14104,475,100 // F_S_Life_Potion_Box +14105,475,100 // F_S_Life_Potion_Box30 +14106,475,100 // F_S_Life_Potion_Box50 +14107,475,100 // F_M_Life_Potion_Box +14108,475,100 // F_M_Life_Potion_Box30 +14109,475,100 // F_M_Life_Potion_Box50 +14110,475,100 // F_Abrasive_Box5 +14111,475,100 // F_Abrasive_Box10 +14112,475,100 // F_Regeneration_Box5 +14113,475,100 // F_Regeneration_Box10 +14114,475,100 // F_Dun_Tele_Scroll_Box10 +14115,475,100 // F_Infiltrator_Box +14116,475,100 // F_Muramasa_Box +14117,475,100 // F_Excalibur_Box +14118,475,100 // F_Combat_Knife_Box +14119,475,100 // F_Counter_Dagger_Box +14120,475,100 // F_Kaiser_Knuckle_Box +14121,475,100 // F_Mighty_Staff_Box +14122,475,100 // F_Right_Epsilon_Box +14123,475,100 // F_Balistar_Box +14124,475,100 // F_Diary_Of_Great_Sage +14125,475,100 // F_Asura_Box +14126,475,100 // F_Apple_Of_Archer_Box +14127,475,100 // F_Bunny_Band_Box +14128,475,100 // F_Sahkkat_Box +14129,475,100 // F_Lord_Circlet_Box +14130,475,100 // F_Elven_Ears_Box +14131,475,100 // F_Steel_Flower_Box +14132,475,100 // F_Critical_Ring_Box +14133,475,100 // F_Earring_Box +14134,475,100 // F_Ring_Box +14135,475,100 // F_Necklace_Box +14136,475,100 // F_Glove_Box +14137,475,100 // F_Brooch_Box +14138,475,100 // F_Rosary_Box +14139,475,100 // F_Safety_Ring_Box +14140,475,100 // F_Vesper_Core_Box01 +14141,475,100 // F_Vesper_Core_Box02 +14142,475,100 // F_Vesper_Core_Box03 +14143,475,100 // F_Vesper_Core_Box04 +14144,475,100 // F_Vigorgra_Package1 +14145,475,100 // F_Vigorgra_Package2 +14146,475,100 // F_Vigorgra_Package3 +14147,475,100 // F_Vigorgra_Package4 +14148,475,100 // F_Vigorgra_Package5 +14149,475,100 // F_Vigorgra_Package6 +14150,475,100 // F_Vigorgra_Package7 +14151,475,100 // F_Vigorgra_Package8 +14152,475,100 // F_Vigorgra_Package9 +14153,475,100 // F_Vigorgra_Package10 +14154,475,100 // F_Vigorgra_Package11 +14155,475,100 // F_Vigorgra_Package12 +14156,475,100 // F_Battle_Manual_Box +14157,475,100 // F_Insurance_Package +14158,475,100 // F_Bubble_Gum_Box +14159,475,100 // F_Str_Dish_Box +14160,475,100 // F_Agi_Dish_Box +14161,475,100 // F_Int_Dish_Box +14162,475,100 // F_Dex_Dish_Box +14163,475,100 // F_Luk_Dish_Box +14164,475,100 // F_Vit_Dish_Box +14165,475,100 // F_Kafra_Card_Box +14166,475,100 // F_Giant_Fly_Wing_Box +14167,475,100 // F_Neuralizer_Box +14168,475,100 // F_Convex_Mirror_Box +14169,475,100 // F_Blessing_10_Scroll_Box +14170,475,100 // F_Inc_Agi_10_Scroll_Box +14171,475,100 // F_Aspersio_5_Scroll_Box +14172,475,100 // F_Assumptio_5_Scroll_Box +14173,475,100 // F_Wind_Walk_10_Scroll_Box +14174,475,100 // F_Adrenaline_Scroll_Box +14175,475,100 // F_Megaphone_Box +14176,475,100 // F_Enriched_Elunium_Box +14177,475,100 // F_Enriched_Oridecon_Box +14178,475,100 // F_Token_Of_Siegfried_Box +14179,475,100 // F_Giant_Fly_Wing_Box50 +14180,475,100 // F_Giant_Fly_Wing_Box100 +14181,475,100 // F_Dex_Dish_Box30 +14182,475,100 // F_Dex_Dish_Box50 +14183,475,100 // F_Luk_Dish_Box30 +14184,475,100 // F_Luk_Dish_Box50 +14185,475,100 // F_Inc_Agi_10_Box30 +14186,475,100 // F_Inc_Agi_10_Box50 +14187,475,100 // F_Vit_Dish_Box30 +14188,475,100 // F_Vit_Dish_Box50 +14189,475,100 // F_Insurance_Package30 +14190,475,100 // F_Insurance_Package50 +14191,475,100 // F_Convex_Mirror_Box5 +14192,475,100 // F_Convex_Mirror_Box30 +14193,475,100 // F_Blessing10_Box30 +14194,475,100 // F_Blessing10_Box50 +14195,475,100 // F_Adrenaline10_Box30 +14196,475,100 // F_Adrenaline10_Box50 +14197,475,100 // F_Assumptio_5_Box30 +14198,475,100 // F_Assumptio_5_Box50 +14199,475,100 // F_Aspersio_5_Box30 +14200,475,100 // F_Aspersio_5_Box50 +14201,475,100 // F_Agi_Dish_Box30 +14202,475,100 // F_Agi_Dish_Box50 +14203,475,100 // F_Wind_Walk10_Box30 +14204,475,100 // F_Wind_Walk10_Box50 +14205,475,100 // F_Int_Dish_Box30 +14206,475,100 // F_Int_Dish_Box50 +14207,475,100 // F_Battle_Manual_Box1 +14208,475,100 // F_Battle_Manual_Box5 +14209,475,100 // F_Siegfried_Box5 +14210,475,100 // F_Siegfried_Box20 +14211,475,100 // F_Kafra_Card_Box30 +14212,475,100 // F_Kafra_Card_Box50 +14213,475,100 // F_Str_Dish_Box30 +14214,475,100 // F_Str_Dish_Box50 +14215,475,100 // F_Bubble_Gum_Box1 +14216,475,100 // F_Bubble_Gum_Box5 +14217,475,100 // F_Megaphone_Box1 +14218,475,100 // F_Megaphone_Box5 +14219,475,100 // F_Enriched_Elunium_Box5 +14220,475,100 // F_Enriched_Oridecon_Box5 +14221,475,100 // MP_Scroll_Box +14222,475,100 // MP_Scroll_Box30 +14223,475,100 // MP_Scroll_Box50 +14224,475,100 // Quagmire_Scroll_Box +14225,475,100 // Quagmire_Scroll_Box30 +14226,475,100 // Quagmire_Scroll_Box50 +14227,475,100 // Healing_Staff_Box +14228,475,100 // Praxinus_Box +14229,475,100 // Sakura_Scroll +14230,475,100 // Note_Headphones_Box +14231,475,100 // Novice_Breastplate_Boxes +14232,475,100 // Yggdrasilberry_Box_ +14233,475,100 // Dead_Tree_Branch_Box1 +14234,475,100 // Dead_Tree_Branch_Box2 +14235,475,100 // Field_Manual_Box_2 +14236,475,100 // Steamed_Tongue_Box_20 +14237,475,100 // Steamed_Desert_Scorpions_Box_20 +14238,475,100 // Stew_Of_Immortality_Box_20 +14239,475,100 // Dragon_Breath_Cocktail_Box_20 +14240,475,100 // Hwergelmir's_Tonic_Box_20 +14241,475,100 // Nine_Tail_Dish_Box_20 +14242,475,100 // Beholder_Ring_Box +14243,475,100 // Hallow_Ring_Box +14244,475,100 // Clamorous_Ring_Box +14245,475,100 // Chemical_Ring_Box +14246,475,100 // Insecticide_Ring_Box +14247,475,100 // Fisher_Ring_Box +14248,475,100 // Decussate_Ring_Box +14249,475,100 // Bloody_Ring_Box +14250,475,100 // Satanic_Ring_Box +14251,475,100 // Dragoon_Ring_Box +14252,475,100 // Beholder_Ring_Box2 +14253,475,100 // Hallow_Ring_Box2 +14254,475,100 // Clamorous_Ring_Box2 +14255,475,100 // Chemical_Ring_Box2 +14256,475,100 // Insecticide_Ring_Box2 +14257,475,100 // Fisher_Ring_Box2 +14258,475,100 // Decussate_Ring_Box2 +14259,475,100 // Bloody_Ring_Box2 +14260,475,100 // Satanic_Ring_Box2 +14261,475,100 // Dragoon_Ring_Box2 +14262,475,100 // Diary_Magic_Powder_Box +14263,475,100 // Mini_Heart_Magic_Powder_Box +14264,475,100 // Freshman_Magic_Powder_Box +14265,475,100 // Kid_Magic_Powder_Box +14266,475,100 // Magic_Magic_Powder_Box +14267,475,100 // JJangu_Magic_Powder_Box +14268,475,100 // Diary_Magic_Powder_Box4 +14269,475,100 // Mini_Heart_Magic_Powder_Box4 +14270,475,100 // Freshman_Magic_Powder_Box4 +14271,475,100 // Kid_Magic_Powder_Box4 +14272,475,100 // Magic_Magic_Powder_Box4 +14273,475,100 // JJangu_Magic_Powder_Box4 +14274,475,100 // Amplification_10_Scroll_Box2 +14275,475,100 // Amplification_30_Scroll_Box2 +14276,475,100 // Amplification_50_Scroll_Box2 +14277,475,100 // Quagmire_10_Scroll_Box2 +14278,475,100 // Quagmire_30_Scroll_Box2 +14279,475,100 // Quagmire_50_Scroll_Box2 +14280,475,100 // Healing_Staff_Box2 +14281,475,100 // Praccsinos_Box +14282,475,100 // Emperium_Box +14283,475,100 // Marriage_Certificate_Box +14284,475,100 // Muffler_Box +14285,475,100 // Balkiriah_Shield_Box +14286,475,100 // Skull_Ring_Box +14287,475,100 // Baricade_Repair_Kit +14288,475,100 // Guardian_Stone_Repair_Kit +14289,475,100 // Cloth_Dye_Coupon_Box +14290,475,100 // Cloth_Dye_Coupon2_Box +14291,475,100 // Cloth_Dye_Coupon3_Box +14292,475,100 // Cloth_Dye_Coupon4_Box +14293,475,100 // Mercenary_Contract_Box +14294,475,100 // Mercenary_Contract_Box5 +14295,475,100 // Mercenary_Contract_Box10 +14296,475,100 // Angel_Scroll +14297,475,100 // Devil_Scroll +14298,475,100 // Surprise_Scroll +//14299,475,100 // +14300,475,100 // Mask_Of_Ifrit_Box +14301,475,100 // Ifrit's_Ear_Box +//14302,475,100 // +//14303,475,100 // +14304,475,100 // Scuba_Mask_Box +//14305,475,100 // +14306,475,100 // RWC_Special_Scroll +14307,475,100 // RWC_Limited_Scroll +14308,475,100 // Ardor_Scroll +//14309,475,100 // +//14310,475,100 // +//14311,475,100 // +//14312,475,100 // +//14313,475,100 // +14314,475,100 // PhreeoniS_Box +14315,475,100 // GhostringS_Box +14316,475,100 // July7_Scroll +14317,475,100 // Bacsojin_Scroll +//14318,475,100 // +//14319,475,100 // +//14320,475,100 // +14321,475,100 // Holy_Sabre_Box +14322,475,100 // Book_Of_Prayer_Box +14323,475,100 // Phenomena_Whip_Box +14324,475,100 // Staff_Of_Darkness_Box +14325,475,100 // Monk_Knuckle_Box +14326,475,100 // Mace_Of_Madness_Box +14327,475,100 // Spear_Of_Excellent_Box +14328,475,100 // Bow_Of_Evil_Box +14329,475,100 // Katar_Of_Speed_Box +14330,475,100 // Sharpshooter_Revolver_Box +//14331,475,100 // +//14332,475,100 // +//14333,475,100 // +//14334,475,100 // +//14335,475,100 // +//14336,475,100 // +//14337,475,100 // +//14338,475,100 // +//14339,475,100 // +//14340,475,100 // +//14341,475,100 // +//14342,475,100 // +14343,475,100 // Spiked_Scarf_Box +14344,475,100 // Rainbow_Scarf_Box +14345,475,100 // Animal_Scroll +//14346,475,100 // +//14347,475,100 // +//14348,475,100 // +14349,475,100 // Mental_Potion20_Box +14350,475,100 // Mental_Potion50_Box +14351,475,100 // Tyr's_Blessing20_Box +14352,475,100 // Tyr's_Blessing50_Box +//14353,475,100 // +//14354,475,100 // +//14355,475,100 // +//14356,475,100 // +//14357,475,100 // +//14358,475,100 // +//14359,475,100 // +//14360,475,100 // +14361,475,100 // Orc_HeroS_Box +14362,475,100 // Orc_LoadS_Box +14363,475,100 // Heart_Scroll +//14364,475,100 // +//14365,475,100 // +//14366,475,100 // +//14367,475,100 // +//14368,475,100 // +//14369,475,100 // +14381,475,100 // Piercing_Box_M +14382,475,100 // Lich_Bone_Box_M +14383,475,100 // Long_Horn_Box_M +14384,475,100 // Hunting_Spear_Box_M +14385,475,100 // Death_Note_Box_M +14386,475,100 // Destruction_Box_M +14387,475,100 // Rider_Insignia_Box_M +14388,475,100 // Mithril_Cape_Box_M +14389,475,100 // Sniping_Box_M +14390,475,100 // Orleans_Box_M +14391,475,100 // Spiritual_Box_M +14392,475,100 // Variant_Box_M +14393,475,100 // Almighty_Charm_Box +//14394,475,100 // +//14395,475,100 // +//14396,475,100 // +//14397,475,100 // +//14398,475,100 // +//14399,475,100 // +//14400,475,100 // +//14401,475,100 // +//14402,475,100 // +//14403,475,100 // +//14404,475,100 // +//14405,475,100 // +//14406,475,100 // +14407,475,100 // Xmas_Scroll +14408,475,100 // New_Year_Scroll +//14409,475,100 // +//14410,475,100 // +//14411,475,100 // +//14412,475,100 // +//14413,475,100 // +//14414,475,100 // +//14415,475,100 // +//14416,475,100 // +//14417,475,100 // +//14418,475,100 // +//14419,475,100 // +//14420,475,100 // +//14421,475,100 // +//14422,475,100 // +//14423,475,100 // +//14424,475,100 // +//14425,507,100 // +14426,475,100 // Fortune_Sword_Box +14427,475,100 // House_Auger_Box +14428,475,100 // Kamaitachi_Box +14429,475,100 // Berserk_Guitar_Box +14430,475,100 // Doom_Slayer_Box +14431,475,100 // Huuma_Blaze_Shuriken_Box +14432,475,100 // Odin's_Blessing_Box +14433,475,100 // Ring_Of_Flame_Lord_Box +14434,475,100 // Ring_Of_Resonance_Box +14435,475,100 // Boys_Cap_Box +14436,475,100 // Ulle's_Cap_Box +14437,475,100 // Sphinx_Helm_Box +14438,475,100 // Honglyun's_Sword_Box +14439,475,100 // Power_Of_Thor_Box +14440,475,100 // Dice_Hat_Box +14441,475,100 // King_Tiger_Doll_Hat_Box +14442,475,100 // Wondering_Wolf_Helm_Box +14443,475,100 // Pizza_Hat_Box +14444,475,100 // Icecream_Hat_Box +//14445,475,100 // +//14446,475,100 // +14447,475,100 // Pirate's_Pride_Box +14448,475,100 // Necromencer's_Hood_Box +//14449,475,100 // +//14450,475,100 // +14459,475,100 // Rabbit_Magic_Hat_Box +14460,475,100 // China_Wedding_Veil_Box +14461,475,100 // Asara_Fairy_Hat_Box +//14462,475,100 // +//14463,475,100 // +//14464,475,100 // +//14465,475,100 // +//14467,507,100 // +//14468,507,100 // +//14470,507,100 // +//14471,507,100 // +//14472,507,100 // +//14473,507,100 // +//14474,507,100 // +//14475,507,100 // +//14476,507,100 // +//14477,507,100 // +//14478,507,100 // +//14479,507,100 // +//14480,507,100 // +//14481,507,100 // +//14482,507,100 // +//14483,507,100 // +//14484,507,100 // +14488,475,100 // Blue_Pajamas_Hat_Box +14489,475,100 // Pink_Pajamas_Hat_Box +14490,475,100 // Shark_Hat_Box +//14491,475,100 // +//14492,475,100 // +//14493,475,100 // +14494,475,100 // Samambaia_Box +14499,475,100 // Peacock_Feather_Box +14500,475,100 // Insurance60 +14505,507,100 // Dungeon_1_hour_Ticket +14506,507,100 // Dungeon_Ticket +14508,475,100 // Zeny_Scroll +14509,475,100 // Light_Center_Pot +14510,475,100 // Light_Awakening_Pot +14511,475,100 // Light_Berserk_Pot +14512,475,100 // Meteor_10_Scroll +14513,475,100 // Storm_10_Scroll +14514,475,100 // Vermilion_10_Scroll +14515,475,100 // Lex_Aeterna_Scroll +14516,475,100 // Magnificat_5_Scroll +14517,475,100 // CP_Helm_Scroll +14518,475,100 // CP_Shield_Scroll +14519,475,100 // CP_Armor_Scroll +14520,475,100 // CP_Weapon_Scroll +14521,475,100 // Repair_Scroll +14522,475,100 // Big_Bun +14523,475,100 // Pill_ +14524,475,100 // Superb_Fish_Slice +14525,475,100 // Chewy_Ricecake +14526,475,100 // Oriental_Pastry +14527,475,100 // Dun_Tele_Scroll1 +14528,475,100 // PVP_Tele_Scroll +14529,507,100 // Greed_Scroll +14530,475,100 // Flee_30_Scroll +14531,475,100 // Accuracy_30_Scroll +14532,475,100 // Battle_Manual25 +14533,475,100 // Battle_Manual100 +14533,475,100 // Battle_Manual100 +14534,475,100 // Small_Life_Potion +14535,475,100 // Med_Life_Potion +14536,475,100 // Abrasive +14537,475,100 // Regeneration_Potion +14538,475,100 // Glass_Of_Illusion +14539,475,100 // Shadow_Armor_S +14540,475,100 // Holy_Armor_S +14541,475,100 // S_Def_Potion +14542,475,100 // B_Def_Potion +14543,475,100 // S_Mdef_Potion +14544,475,100 // B_Mdef_Potion +14545,475,100 // Battle_Manual_X3 +14546,475,100 // Fire_Cracker_Love +14547,475,100 // Fire_Cracker_Wday +14548,475,100 // Fire_Cracker_Valentine +14549,475,100 // Fire_Cracker_Bday +14550,475,100 // Fire_Cracker_Xmas +14551,475,100 // Str_Dish01_ +14552,475,100 // Str_Dish02_ +14553,475,100 // Str_Dish03_ +14554,475,100 // Int_Dish01_ +14555,475,100 // Int_Dish02_ +14556,475,100 // Int_Dish03_ +14557,475,100 // Vit_Dish01_ +14558,475,100 // Vit_Dish02_ +14559,475,100 // Vit_Dish03_ +14560,475,100 // Agi_Dish01_ +14561,475,100 // Agi_Dish02_ +14562,475,100 // Agi_Dish03_ +14563,475,100 // Dex_Dish01_ +14564,475,100 // Dex_Dish02_ +14565,475,100 // Dex_Dish03_ +14566,475,100 // Luk_Dish01_ +14567,475,100 // Luk_Dish02_ +14568,475,100 // Luk_Dish03_ +14569,475,100 // Knife_Goblin_Ring +14570,475,100 // Flail_Goblin_Ring +14571,475,100 // Hammer_Goblin_Ring +14572,475,100 // Holy_Marble +14573,475,100 // Red_Burning_Stone +14575,475,100 // Str_Dish05_ +14576,475,100 // Int_Dish05_ +14577,475,100 // Vit_Dish05_ +14578,475,100 // Agi_Dish05_ +14579,475,100 // Dex_Dish05_ +14580,475,100 // Luk_Dish05_ +14581,475,100 // Dun_Tele_Scroll2 +14582,475,100 // WOB_Rune +14583,475,100 // WOB_Schwaltz +14584,475,100 // WOB_Rachel +14585,475,100 // WOB_Local +14586,475,100 // Spark_Candy +14587,475,100 // Repair_Scroll_ +14588,475,100 // Pty_Blessing_Scroll +14589,475,100 // Pty_Inc_Agi_Scroll +14590,475,100 // Pty_Assumptio_Scroll +14591,475,100 // Siege_Teleport_Scroll +14591,475,100 // Siege_Teleport_Scroll +14592,475,100 // Job_Manual50 +14593,475,100 // Magic_Power_Scroll +14594,475,100 // Quagmire_Scroll +14595,507,100 // Unsealed_Magic_Spell +14597,475,100 // PhreeoniS +14598,475,100 // GhostringS +14599,475,100 // Greed_Scroll_C +14600,475,100 // Mental_Potion +14601,475,100 // Tyr's_Blessing +14602,475,100 // TaogunkaS +14603,475,100 // MistressS +14604,475,100 // Orc_HeroS +14605,475,100 // Orc_LoadS +14606,475,100 // Job_Manual25 +14611,475,100 // M_Def_Potion +14612,475,100 // M_Mdef_Potion +14613,475,100 // RWC_Scroll_2012 +14614,475,100 // Ex_Def_Potion +14616,475,100 // STR_Biscuit_Stick +14617,475,100 // VIT_Biscuit_Stick +14618,475,100 // AGI_Biscuit_Stick +14619,475,100 // INT_Biscuit_Stick +14620,475,100 // DEX_Biscuit_Stick +14621,475,100 // LUK_Biscuit_Stick +14623,475,100 // Golden_Treasure_Box +14627,475,100 // Christmas_Scroll +14628,475,100 // Costume_Festival_Box +14663,475,100 // Scroll_Sealed_Dark_Lord +14672,459,100 // Steel_Fighter_Scroll_Lv20 +14673,459,100 // Steel_Fighter_Scroll_Lv25 +14675,475,100 // Shadow_Box_II +14679,475,100 // Article_Sealed_Storm_Scroll +14682,475,100 // Sealed_Beelzebub_Scroll +14689,475,100 // Sealed_Kiel-D-01_Scroll +14696,475,100 // Sealed_Gloom_Under_Night_Gachapon +14704,475,100 // Gemstone_Shadow_Box +14705,475,100 // Sealed_Fallen_Bishop_Hibram_Scroll +14713,475,100 // Sealed_Ifrit_Scroll +14717,475,100 // 2013_RWC_Scroll +14718,475,100 // Scroll_Turtle_General_Sealed +14723,475,100 // (Limited)Neuralizer_I +14724,475,100 // (Limited)Neuralizer_II +14725,475,100 // Sealed_Bacsojin_Scroll +14726,475,100 // Grid_Shadow_Box +14727,475,100 // Heal_Shadow_Box +14728,475,100 // Hiding_Shadow_Box +14729,475,100 // Cloaking_Shadow_Box +14730,475,100 // Costume_Festival_Box_II +14731,475,100 // Teleport_Shadow_Box +14732,475,100 // Steal_Shadow_Box +14733,475,100 // Sealed_Pharaoh_Scroll +14739,475,100 // Sealed_General_Egnigem_Cenia_Scroll +14740,475,100 // Sealed_Vesper_Scroll +14758,475,100 // Safe_To_Smelting_Scroll +14765,475,100 // Limited_Edition_JOB_Battle_Manual +14766,475,100 // Limited_Power_Booster +15001,507,100 // Odin's_Blessing_I +15002,507,100 // Rune_Plate +15007,467,100 // Time_Keepr_Robe +15009,499,100 // Para_Team_Uniform1 +15010,499,100 // Para_Team_Uniform2 +15011,499,100 // Para_Team_Uniform3 +15023,507,100 // Half_Brynhild +15031,499,100 // Para_Team_Armor +15033,507,100 // Tutorial_Mattle +15034,507,100 // Tutorial_Mattle_ +//15062,499,100 // +//15063,499,100 // +//15064,499,100 // +//15067,507,100 // +15116,467,100 // Armor_Of_Airship +15141,467,100 // Ancient_Armor_Of_The_Goddess +16002,507,100 // Stunner_C +16004,499,100 // P_Mace1 +16005,499,100 // P_Mace2 +16006,499,100 // Tourist_Mace +16014,499,100 // P_Mace3 +16016,507,100 // Tuna +16023,499,100 // Metal_Mace +//16025,499,100 // +16038,467,100 // Infinity_Mace +//16100,475,100 // +//16101,475,100 // +//16102,475,100 // +//16103,475,100 // +//16104,475,100 // +//16105,475,100 // +//16106,475,100 // +//16107,475,100 // +//16108,475,100 // +//16109,475,100 // +//16110,475,100 // +//16111,475,100 // +//16112,475,100 // +//16113,475,100 // +//16114,475,100 // +//16115,475,100 // +//16116,475,100 // +//16117,475,100 // +//16118,475,100 // +//16119,475,100 // +//16120,475,100 // +//16121,475,100 // +//16122,475,100 // +//16123,475,100 // +//16124,475,100 // +//16125,475,100 // +//16126,475,100 // +//16127,475,100 // +//16128,475,100 // +//16129,475,100 // +//16130,475,100 // +16131,475,100 // Lady_Tanee_Doll_Box +16132,475,100 // Lunatic_Hat_Box +16133,475,100 // G_Staff_Of_Light_Box +16134,475,100 // King_Frog_Hat_Box +16135,475,100 // Evil's_Bone_Hat_Box +//16136,475,100 // +//16137,475,100 // +//16138,475,100 // +//16139,475,100 // +//16140,475,100 // +//16141,475,100 // +//16142,475,100 // +//16143,475,100 // +//16144,475,100 // +//16145,475,100 // +//16146,475,100 // +//16147,475,100 // +//16148,475,100 // +//16149,475,100 // +//16150,475,100 // +//16151,475,100 // +//16152,475,100 // +//16153,475,100 // +//16154,475,100 // +//16155,475,100 // +//16156,475,100 // +//16157,475,100 // +//16158,475,100 // +//16159,475,100 // +//16160,475,100 // +//16161,475,100 // +//16162,475,100 // +//16163,475,100 // +//16164,475,100 // +//16165,475,100 // +//16166,475,100 // +//16167,475,100 // +//16168,475,100 // +//16169,475,100 // +//16170,475,100 // +//16171,475,100 // +//16172,475,100 // +//16173,475,100 // +//16174,475,100 // +//16175,475,100 // +//16176,475,100 // +//16177,475,100 // +//16178,475,100 // +//16179,475,100 // +//16180,475,100 // +//16181,475,100 // +//16182,475,100 // +//16183,475,100 // +//16184,475,100 // +16185,475,100 // Raven_Cap_Box +16186,475,100 // B_Dragon_Hat_Box +//16187,475,100 // +//16188,475,100 // +//16189,475,100 // +//16190,475,100 // +//16191,475,100 // +16192,475,100 // Quati_Hat_Box +16193,475,100 // Tucan_Hat_Box +16194,475,100 // Jaguar_Hat_Box +//16220,475,100 // +//16221,475,100 // +//16222,475,100 // +//16223,475,100 // +//16224,475,100 // +//16225,475,100 // +16226,475,100 // Aries_Diadem_Box +16227,475,100 // Aries_Crown_Box +16228,475,100 // RJC_Katusa_Box +16229,475,100 // Scarlet_Rose_Box +16229,475,100 // Scarlet_Rose_Box +16230,475,100 // Taurus_Diadem_Box +16231,475,100 // Taurus_Crown_Box +16232,409,100 // Reginleif_Box +16235,475,100 // Octopus_Hat_Box +16236,475,100 // Leaf_Cat_Hat_Box +16237,475,100 // Fur_Seal_Hat_Box +16238,475,100 // Wild_Rose_Hat_Box +//16240,475,100 // +//16241,475,100 // +//16242,475,100 // +//16243,475,100 // +16246,475,100 // Crown_Of_Deceit_Box +16247,475,100 // Dragon_Arhat_Mask_Box +16248,475,100 // Tiger_Arhat_Mask_Box +16251,475,100 // Gemini_Diadem_Box +16252,475,100 // Gemini_Crown_Box +16254,475,100 // Energizing_Potion_Box +//16255,475,100 // +//16256,1,100 // +16258,475,100 // HD_Bradium_5_Box +16259,475,100 // HD_Carnium_5_Box +16260,475,100 // HD_Bradium_10_Box +16261,475,100 // HD_Carnium_10_Box +16262,475,100 // HD_Bradium_5_Box2 +16263,475,100 // HD_Carnium_5_Box2 +16264,475,100 // HD_Bradium_10_Box2 +16265,475,100 // HD_Carnium_10_Box2 +//16271,475,100 // +//16272,475,100 // +//16273,475,100 // +//16274,475,100 // +//16275,475,100 // +//16276,475,100 // +//16277,475,100 // +//16278,475,100 // +//16279,475,100 // +//16280,475,100 // +//16281,475,100 // +//16282,475,100 // +//16283,475,100 // +//16284,475,100 // +//16285,475,100 // +//16286,475,100 // +//16287,475,100 // +//16288,475,100 // +//16289,475,100 // +//16290,475,100 // +//16291,475,100 // +//16292,475,100 // +//16293,475,100 // +//16294,475,100 // +//16295,475,100 // +//16296,475,100 // +//16297,475,100 // +//16298,475,100 // +//16299,475,100 // +//16300,475,100 // +//16301,475,100 // +//16302,475,100 // +//16303,475,100 // +16304,475,100 // Evil_Incarnation +16305,475,100 // Upg_Guard_Box +16306,475,100 // F_Upg_Guard_Box +16307,475,100 // Upg_Buckler_Box +16308,475,100 // F_Upg_Buckler_Box +16309,475,100 // Upg_Shield_Box +16310,475,100 // F_Upg_Shield_Box +16311,475,100 // Upg_Shoes_Box +16312,475,100 // F_Upg_Shoes_Box +16313,475,100 // Upg_Boots_Box +16314,475,100 // F_Upg_Boots_Box +16315,475,100 // Upg_Greave_Box +16316,475,100 // F_Upg_Greave_Box +16317,475,100 // Upg_Hood_Box +16318,475,100 // F_Upg_Hood_Box +16319,475,100 // Upg_Muffler_Box +16320,475,100 // F_Upg_Muffler_Box +16321,475,100 // Upg_Manteau_Box +16322,475,100 // F_Upg_Manteau_Box +16323,475,100 // Upg_Clip_Box +16324,475,100 // F_Upg_Clip_Box +//16325,475,100 // +//16326,475,100 // +16327,475,100 // Upg_Adv_Suit_Box +16328,475,100 // F_Upg_Adv_Suit_Box +16329,475,100 // Upg_Coat_Box +16330,475,100 // F_Upg_Coat_Box +16331,475,100 // Upg_Saint_Robe_Box +16332,475,100 // F_Upg_Saint_Robe_Box +16333,475,100 // Upg_Tights_Box +16334,475,100 // F_Upg_Tights_Box +16335,475,100 // Upg_Thief_Cloth_Box +16336,475,100 // F_Upg_Thief_Cloth_Box +16337,475,100 // Upg_Mail_Box +16338,475,100 // F_Upg_Mail_Box +16339,475,100 // Upg_Formal_Dress_Box +16340,475,100 // F_Upg_Formal_Dress_Box +//16347,475,100 // +//16348,475,100 // +//16349,475,100 // +//16350,475,100 // +//16351,475,100 // +//16352,475,100 // +//16353,475,100 // +//16354,475,100 // +//16355,475,100 // +//16356,475,100 // +//16357,475,100 // +//16358,475,100 // +//16358,475,100 // +16360,475,100 // Desert_Prince_Box +16361,475,100 // FDesert_Prince_Box +16362,475,100 // Sigrun's_Wing_Box +16363,475,100 // FSigrun's_Wing_Box +16368,475,100 // Virgo_Crown_Box +//16369,475,100 // +//16370,475,100 // +16372,475,100 // F_Clover_Box_Mouth +//16373,475,100 // +16374,475,100 // Mouth_Bubble_Gum_Box +//16375,475,100 // +16378,475,100 // Siege_Tele_Scroll_Box_30 +16379,475,100 // Siege_Teleport_Scroll_Silver_10Box +16380,475,100 // Siege_Teleport_Scroll_Silver_30Box +16381,475,100 // WoE_Teleport_Scroll_100_Box +16382,475,100 // WoE_Teleport_Scroll_30_Box +//16383,475,100 // +//16384,475,100 // +16385,475,100 // F_Clover_Box_Mouth2 +16386,475,100 // F_Clover_Box_Mouth4 +//16387,475,100 // +//16388,475,100 // +16389,475,100 // BGum_Box_In_Mouth2 +16390,475,100 // BGum_Box_In_Mouth4 +//16391,475,100 // +//16392,475,100 // +16393,475,100 // HD_Ori_Box5 +16394,475,100 // HD_Ori_Box10 +16395,475,100 // HD_Elu_Box5 +16396,475,100 // HD_Elu_Box10 +16397,475,100 // Virgo_Diadem_Box +16398,475,100 // Virgo_Crown_Box +16399,475,100 // Virgo_Diadem_Box +//16400,475,100 // +//16401,475,100 // +//16402,475,100 // +//16403,475,100 // +16405,507,100 // Midgard_Coin_Box +16406,507,100 // FMidgard_Coin_Box +//16407,475,100 // +//16408,475,100 // +//16432,475,100 // +//16433,475,100 // +//16434,475,100 // +//16435,475,100 // +//16442,475,100 // +//16443,475,100 // +//16444,475,100 // +//16445,475,100 // +16447,475,100 // Scorpio_Crown_Box +16448,475,100 // Scorpio_Diadem_Box +16449,475,100 // Scorpio_Crown_Box +16450,475,100 // FScorpio_Diadem_Box +//16452,475,100 // +//16453,475,100 // +//16454,475,100 // +//16455,475,100 // +//16467,475,100 // +//16468,475,100 // +//16469,475,100 // +//16470,475,100 // +16481,475,100 // Small_Life_Potion_Box_10 +16483,475,100 // Abrasive_Box_10 +16504,475,100 // Bubble_Gum_Box(10) +16505,475,100 // Steamed_Tongue_Box_10 +16506,475,100 // Steamed_Desert_Scorpions_Box_10 +16507,475,100 // Dragon_Breath_Cocktail_Box_10 +16508,475,100 // Hwergelmir's_Tonic_Box_10 +16509,475,100 // Cooked_Nine_Tail_Box_10 +16510,475,100 // Immortal_Stew_Box_10 +16514,475,100 // Blessing_Scroll_Box_10 +16515,475,100 // Increase_Agility_Scroll_Box_10 +16543,475,100 // Snowman_Hat_Box +16544,475,100 // FSnowman_Hat_Box +16555,475,100 // Pr_Reset_Stone_Box +//16573,475,100 // +//16574,475,100 // +//16580,475,100 // +//16581,475,100 // +//16596,475,100 // +//16597,475,100 // +16598,475,100 // Activation_Potion_Box_II +//16599,475,100 // +16625,475,100 // Half_Asprika_box7 +//16626,475,100 // +//16627,475,100 // +16628,475,100 // Brynhild_Box +//16629,475,100 // +//16630,475,100 // +//16634,475,100 // +//16635,475,100 // +//16636,475,100 // +//16637,475,100 // +16638,475,100 // Life_Ribbon_Box +16639,475,100 // Life_Ribbon_Box2 +16640,475,100 // Life_Ribbon_Box3 +//16641,475,100 // +//16642,475,100 // +//16643,475,100 // +//16644,475,100 // +//16645,475,100 // +//16646,475,100 // +//16647,475,100 // +//16648,475,100 // +//16649,475,100 // +//16650,475,100 // +//16651,475,100 // +16655,475,100 // Rapid_Life_Potion_10_Box +//16656,475,100 // +//16657,475,100 // +16658,475,100 // Rapid_Water_Box(10) +//16660,475,100 // +//16661,475,100 // +//16662,475,100 // +//16663,475,100 // +16666,475,100 // Magic_Candy_Box10 +//16667,475,100 // +//16671,475,100 // +//16672,475,100 // +16677,475,100 // Universal_Catalog_Gold_Box10 +16678,475,100 // Universal_Catalog_Gold_Box50 +16679,475,100 // Universal_Catalog_Gold_Box10 +16680,475,100 // Universal_Catalog_Gold_Box50 +16682,475,100 // Boarding_Halter_Box +16683,475,100 // B_Halter_Box_30Days +//16689,475,100 // +//16690,475,100 // +16740,475,100 // Protection_Seagod_Box +16741,475,100 // Hairtail_Box1 +16742,475,100 // Hairtail_Box2 +16743,475,100 // Spearfish_Box1 +16744,475,100 // Spearfish_Box2 +16745,475,100 // Saurel_Box1 +16746,475,100 // Saurel_Box2 +16747,475,100 // Tuna_Box1 +16748,475,100 // Tuna_Box2 +16749,475,100 // Malang_Crab_Box1 +16750,475,100 // Malang_Crab_Box2 +16751,475,100 // Brindle_Eel_Box1 +16752,475,100 // Brindle_Eel_Box2 +//16758,475,100 // +//16759,475,100 // +16760,475,100 // Umbala_Spirit_Box2 +16761,475,100 // F_Umbala_Spirit_Box2 +//16762,475,100 // +16763,475,100 // Ptotection_Seagod_Box2 +16764,475,100 // Ptotection_Seagod_Box3 +16765,475,100 // Octo_Hstick_Box +16766,475,100 // Octo_Hstick_Box2 +16767,475,100 // Octo_Hstick_Box3 +16770,475,100 // Silvervine_Fruit_Box10 +16771,475,100 // Silvervine_Fruit_Box40 +16776,475,100 // Universal_Catalog_Gold_Box10 +16777,475,100 // Universal_Catalog_Gold_Box50 +//16778,475,100 // +//16779,475,100 // +//16780,475,100 // +//16781,475,100 // +//16782,475,100 // +//16783,475,100 // +//16784,475,100 // +//16785,475,100 // +//16786,475,100 // +//16787,475,100 // +//16788,475,100 // +//16789,475,100 // +//16790,475,100 // +//16791,475,100 // +//16792,475,100 // +//16793,475,100 // +//16794,475,100 // +//16795,475,100 // +//16796,475,100 // +//16797,475,100 // +//16798,475,100 // +//16799,475,100 // +//16800,475,100 // +//16801,475,100 // +//16802,475,100 // +//16803,475,100 // +//16804,475,100 // +//16805,475,100 // +//16806,475,100 // +//16807,475,100 // +//16808,475,100 // +//16809,475,100 // +//16810,475,100 // +//16811,475,100 // +//16812,475,100 // +//16813,475,100 // +//16814,475,100 // +//16815,475,100 // +//16816,475,100 // +//16817,475,100 // +//16818,475,100 // +//16819,475,100 // +//16820,475,100 // +16821,475,100 // Dungeon_Teleport_Scroll_Box_5 +16822,475,100 // Dungeon_Teleport_Scroll_Box_10 +//16823,475,100 // +//16824,475,100 // +//16825,475,100 // +//16827,475,100 // +//16828,475,100 // +//16829,475,100 // +//16830,475,100 // +//16831,475,100 // +//16832,475,100 // +//16833,475,100 // +//16834,475,100 // +//16835,475,100 // +//16836,475,100 // +16837,475,100 // Dungeon_Teleport_Scroll_II_Box_5 +16838,475,100 // Dungeon_Teleport_Scroll_II_Box_10 +//16839,475,100 // +//16840,475,100 // +//16841,475,100 // +//16843,475,100 // +//16844,475,100 // +//16845,475,100 // +//16846,475,100 // +//16847,475,100 // +//16848,475,100 // +//16849,475,100 // +//16850,475,100 // +//16851,475,100 // +//16852,475,100 // +//16853,475,100 // +//16854,475,100 // +//16855,475,100 // +//16856,475,100 // +//16857,475,100 // +//16858,475,100 // +//16859,475,100 // +//16860,475,100 // +//16861,475,100 // +//16862,475,100 // +//16863,475,100 // +16864,475,100 // Siege_Map_Teleport_Scroll_Box_10 +16865,475,100 // Siege_Map_Teleport_Scroll_Box_30 +16866,475,100 // Siege_Map_Teleport_Scroll_II_Box_10 +16867,475,100 // Siege_Map_Teleport_Scroll_II_Box_30 +//16868,475,100 // +//16869,475,100 // +//16870,475,100 // +//16871,475,100 // +//16872,475,100 // +//16873,475,100 // +//16874,475,100 // +//16875,475,100 // +//16876,475,100 // +//16877,475,100 // +//16878,475,100 // +//16879,475,100 // +//16880,475,100 // +//16881,475,100 // +//16882,475,100 // +//16883,475,100 // +//16884,475,100 // +//16885,475,100 // +//16886,475,100 // +//16887,475,100 // +//16888,475,100 // +//16889,475,100 // +//16890,475,100 // +//16891,475,100 // +//16892,475,100 // +//16893,475,100 // +//16894,475,100 // +//16895,475,100 // +//16896,475,100 // +//16897,475,100 // +//16898,475,100 // +//16899,475,100 // +//16900,475,100 // +//16901,475,100 // +//16902,475,100 // +//16903,475,100 // +//16904,475,100 // +//16905,475,100 // +//16906,475,100 // +//16907,475,100 // +//16908,475,100 // +//16909,475,100 // +//16910,475,100 // +//16911,475,100 // +//16912,475,100 // +//16913,475,100 // +//16914,475,100 // +//16915,475,100 // +//16916,475,100 // +//16917,475,100 // +//16918,475,100 // +//16919,475,100 // +//16920,475,100 // +//16921,475,100 // +//16922,475,100 // +//16923,475,100 // +//16924,475,100 // +//16925,475,100 // +//16926,475,100 // +//16927,475,100 // +//16928,475,100 // +//16929,475,100 // +//16930,475,100 // +//16931,475,100 // +//16932,475,100 // +//16933,475,100 // +//16934,475,100 // +//16935,475,100 // +//16936,475,100 // +//16937,475,100 // +//16938,475,100 // +//16939,475,100 // +//16940,475,100 // +//16941,475,100 // +//16942,475,100 // +//16943,475,100 // +//16944,475,100 // +//16945,475,100 // +//16946,475,100 // +//16947,475,100 // +//16948,475,100 // +//16949,475,100 // +//16950,475,100 // +//16951,475,100 // +//16952,475,100 // +//16953,475,100 // +//16954,475,100 // +//16955,475,100 // +//16956,475,100 // +//16957,475,100 // +//16958,475,100 // +//16959,475,100 // +//16960,475,100 // +//16961,475,100 // +//16962,475,100 // +//16963,475,100 // +//16964,475,100 // +//16965,475,100 // +//16966,475,100 // +//16967,475,100 // +//16968,475,100 // +//16969,475,100 // +//16970,475,100 // +//16971,475,100 // +16972,475,100 // Weather_Report_Box +16973,475,100 // Yellow_Hat_Box +16974,475,100 // Comin_Actor_Box +16975,475,100 // Singing_Bird_Box +16976,475,100 // Hen_Set_Box +16977,475,100 // Red_Minicrown_Box +//16978,475,100 // +16979,475,100 // Silvervine_Fruit_Box4 +16995,475,100 // Old_Hat_Box +16998,475,100 // Archangel_Wing_Box +16999,475,100 // Bravery_Bag_Box +17013,475,100 // Malang_Woe_Encard_Box +17014,475,100 // Butterfly_ear_Box +17015,475,100 // Stuckhead_Screw_Box +//17027,475,100 // +17037,475,100 // Trans_Box_Devi +17038,475,100 // Trans_Box_Ray_Arch +17039,475,100 // Trans_Box_Mavka +17040,475,100 // Trans_Box_Marduk +17041,475,100 // Trans_Box_Banshee +17042,475,100 // Trans_Box_Poring +17043,475,100 // Trans_Box_Golem +//17044,475,100 // +//17045,475,100 // +//17046,475,100 // +//17065,475,100 // +17084,475,100 // Upg_Katar_Box +17085,475,100 // Upg_Two_Handed_Axe_Box +17086,475,100 // Upg_Lance_Box +17087,475,100 // Upg_Book_Box +17088,475,100 // Upg_Staff_Box +17089,475,100 // Upg_Dagger_Box +17090,475,100 // Upg_Revolver_Box +17091,475,100 // Upg_Mace_Box +17092,475,100 // Upg_Bow_Box +17093,475,100 // Upg_Twohand_Sword_Box +17094,475,100 // Upg_Katar_Box2 +17095,475,100 // Upg_Two_Handed_Axe_Box2 +17096,475,100 // Upg_Lance_Box2 +//17097,475,100 // +//17098,475,100 // +//17099,475,100 // +//17100,475,100 // +//17101,475,100 // +//17102,475,100 // +//17103,475,100 // +17106,475,100 // Max_Weight_Up_10Box +17118,475,100 // ASPD_Potion_Box10 +17122,475,100 // Immuned_Shield_Box +17123,475,100 // Black_Devil_Mask_Box +17126,475,100 // ASPD_Potion_Box10_2 +//17135,475,100 // +//17136,475,100 // +//17137,475,100 // +//17144,475,100 // +//17153,475,100 // +//17154,475,100 // +17155,475,100 // Upg_Huuma_Shuriken_Box +17159,475,100 // Name_Change_Box +17160,475,100 // Character_Name_Change_Card_Box +//17163,475,100 // +//17164,475,100 // +//17166,475,100 // +//17171,475,100 // +//17172,475,100 // +//17173,475,100 // +//17174,475,100 // +//17175,475,100 // +17176,475,100 // Boarding_Halter_Box3 +//17177,475,100 // +//17178,475,100 // +//17179,475,100 // +//17180,475,100 // +//17182,475,100 // +//17193,475,100 // +//17194,475,100 // +//17195,475,100 // +//17196,475,100 // +//17197,475,100 // +//17198,475,100 // +//17200,475,100 // +//17201,475,100 // +//17202,475,100 // +//17205,475,100 // +//17206,475,100 // +//17224,475,100 // +17226,475,100 // Infinite_Concentration_Potion +17227,475,100 // Infinite_Awakening_Potion +17228,475,100 // Infinite_Berserk_Potion +17229,475,100 // Infinite_Flywing_Box +17231,475,100 // Refinement_Ore_Box +17232,475,100 // Refinement_box(7) +17241,475,100 // Amistr_Cap_Box +17244,475,100 // Event_Almighty_Box +17246,475,100 // HD_Elunium_Box(30) +17247,475,100 // HD_Oridecon_Box(30) +17251,475,100 // C_Wing_Of_Fly_3Day_Box +17252,475,100 // RWC_2012_Set_Box +17253,475,100 // RWC_2012_Ring_Box +17254,475,100 // RWC_2012_Pendant_Box +17262,475,100 // Ex_Def_Potion_Box +17263,475,100 // Infinite_Concentration_Potion_3rd_Box +17264,475,100 // Infinite_Awakening_Potion_3rd_Box +17265,475,100 // Infinite_Berserk_Potion_3rd_Box +17266,475,100 // Limited_Battle_Manual_Package +17270,475,100 // STR_Biscuit_Stick_Box +17271,475,100 // VIT_Biscuit_Stick_Box +17272,475,100 // AGI_Biscuit_Stick_Box +17273,475,100 // INT_Biscuit_Stick_Box +17274,475,100 // DEX_Biscuit_Stick_Box +17275,475,100 // LUK_Biscuit_Stick_Box +17277,475,100 // Unlimited_Box +17278,475,100 // Unlimited_Box(10) +//17279,475,100 // +17281,475,100 // Refinement_Ore_Box_IV +17282,475,100 // Refinement_Ore_Box_IV(10) +17283,475,100 // Refinement_Ore_Box_IV(20) +//17284,475,100 // +17285,475,100 // Events_Beauty_Gift_Box +//17286,475,100 // +//17287,475,100 // +//17288,475,100 // +17292,475,100 // Shadow_Box +17293,475,100 // Shadow_Physical_Package +17294,475,100 // Shadow_Magical_Package +17298,475,100 // Support_Package +17299,475,100 // Support_Package(10) +17302,475,100 // Shadow_Box_II_ +17303,475,100 // Shadow_Set_Box_II +17304,475,100 // Neuralizer_Box_3 +17306,475,100 // Status_Reset_Coupon_Box +17314,475,100 // Infinite_Giant_Fly_Wing_Box +17315,475,100 // Lucky_Silvervine_Fruit_Box(10) +17316,475,100 // Lucky_Silvervine_Fruit_Box(110) +17321,475,100 // Three_Master_Package +17322,475,100 // Three_Master_Package(10) +17331,475,100 // Event_Almighty_Box +17332,475,100 // Event_Almighty_Box(100) +17338,475,100 // Ore_Box_V +17339,475,100 // Ore_Box_V(10) +17429,475,100 // 11_Anniversary_Shadow_Box +17430,475,100 // 11_Anniversary_Shadow_Package +17432,475,100 // Lucky_Silvervine_Fruit_Box_II(10) +17433,475,100 // Lucky_Silvervine_Fruit_Box_II(110) +17438,475,100 // Three_Master_Package_II +17439,475,100 // Three_Master_Package_II10 +17440,475,100 // Name_Change_Card_Box +17441,475,100 // Halter_Lead_Box +17442,475,100 // Emperium_G_Box +17443,475,100 // Reinforcement_Buckler_Box +17449,475,100 // Cookies_Bar_Set +17455,475,100 // Premium_Battle_Manual_Box +17456,475,100 // Support_Package_II +17457,475,100 // Support_Package_II(10) +17465,475,100 // Refinement_Ore_Box_VI +17466,475,100 // Refinement_Ore_Box_VI(10) +17467,475,100 // (Limited)_Token_of_Ziegfried_Box(50) +17468,475,100 // Neuralizer_II_Box_3 +17469,475,100 // Neuralizer_I_Box +17472,475,100 // Support_Package_III +17473,475,100 // Support_Package_III(10) +17474,475,100 // Infinite_Giant_Fly_Wing_Box_V +17475,475,100 // (Limited)Gym_Membership_Card_Box(10) +17477,475,100 // Unlimited_Box_II +17478,475,100 // Unlimited_Box_II(10) +17483,475,100 // Three_Master_Package_III +17484,475,100 // Three_Master_Package_III(10) +17491,475,100 // Refinement_Ore_Box_VII +17492,475,100 // Refinement_Ore_Box_VII(10) +17495,475,100 // Lucky_Silvervine_Fruit_Box_III10 +17496,475,100 // Lucky_Silvervine_Fruit_Box_III110 +17498,475,100 // Three_Master_Package_IV +17499,475,100 // Three_Master_Package_IV(10) +17501,475,100 // Support_Package_IV +17502,475,100 // Support_Package_IV(10) +17507,475,100 // Actinidia_Cat_Fruit_Box(4) +17508,475,100 // Actinidia_Cat_Fruit_Box(10) +17509,475,100 // Actinidia_Cat_Fruit_Box(40) +17510,475,100 // Smelting_Ore_Box_VIII +17511,475,100 // Smelting_Ore_Box_VIII(10) +17512,475,100 // (Limited)Purified_Eluminium_Box(30) +17513,475,100 // (Limited)Purified_Oridecon_Box(30) +17515,475,100 // Unlimited_Box_III +17516,475,100 // Unlimited_Box_III(10) +17520,475,100 // Limited_Edition_Manual_Box +17521,475,100 // Three_Master_Package_V +17522,475,100 // Three_Master_Package_V(10) +17524,475,100 // Limited_Power_Booster_Box +17525,475,100 // Limited_Power_Booster_Box(100) +17527,475,100 // Actinidia_Cat_Fruit_Box(200) +17544,475,100 // Smelting_Ore_Box_IX +17545,475,100 // Smelting_Ore_Box_IX(10) +17547,475,100 // (Limited)2015_Neuralizer_Box +17548,475,100 // (Limited)2015_Status_Initialization_Volume_Box +17549,475,100 // (Limited)High_Density_Bradium_Box(30) +17550,475,100 // (Limited)High_Density_Kalunium_Box(30) +17567,475,100 // Event_Almighty_Box +17568,475,100 // Event_Almighty_Box(100) +//17569,475,100 // +//17570,475,100 // +//17573,475,100 // +//17574,475,100 // +//17582,475,100 // +//17583,475,100 // +18100,507,100 // Shooting_Star_C +18106,499,100 // P_Bow3 +18107,507,100 // Malang_Snow_Crab +18108,507,100 // Brindle_Eel +18116,499,100 // Metal_Bow +//18118,499,100 // +18128,467,100 // Infinity_Bow +18500,507,100 // Cheer_Scarf6 +18501,507,100 // Cheer_Scarf8 +18502,507,100 // Cheer_Scarf10 +18505,507,100 // Umbala_Spirit +18514,499,100 // Para_Team_Hat2 +18520,475,100 // Jaty_C +18526,507,100 // Yummy_Lollipop +18556,499,100 // Angel_Helmet +18557,499,100 // Devil_Helmet +18566,507,100 // Nut_Donut_In_Mouth +18579,467,100 // 9th_Anni_Hat +//18731,499,100 // +//18732,499,100 // +//18733,499,100 // +//18734,499,100 // +18779,475,100 // RWC_Champ_Crown_First_Place +18780,475,100 // RWC_Champ_Crown_Second_Place +18781,475,100 // RWC_Champ_Crown_Third_Place +18796,475,100 // RWC_Champ_Crown_Fourth_Place +18828,475,100 // 2012RMSCNO1 +18829,475,100 // 2012RMSCNO2 +18830,475,100 // 2012RMSCNO3 +18970,475,100 // Magical_Moon_Cat +18971,475,100 // Old_Rune_Circlet +18972,475,100 // Old_Mitra +18973,475,100 // Old_Driver_Band +18974,475,100 // Old_Driver_Band(Yellow) +18975,475,100 // Old_Shadow_Handicraft +18976,475,100 // Old_Minstrel_Song's_Hat +18977,475,100 // Old_Midas_Whisper +18978,475,100 // Old_Magic_Stone_Hat +18979,475,100 // Old_Blazing_Soul +18980,475,100 // Old_Wind_Whisper +18981,475,100 // Old_Dying_Swan +18982,475,100 // Old_Circlet_Of_Bones +18983,475,100 // Old_Protect_Of_Crown +18984,475,100 // Old_Camouflage_Rabbit_Hood +19033,467,100 // Ancient_Decoration_Of_The_Goddess +19051,475,100 // Warrior_Moon_Cat +19052,507,100 // Sigruns_Wing +19053,475,100 // Fighter_Moon_Cat +19523,475,100 // Donation_Ribbon +19531,475,100 // C_Cube_Mask +19532,475,100 // C_Red_Bunny_Band +19764,475,100 // C_Monster_Card +19765,475,100 // C_Wing_Angels_Ears +19853,507,100 // C_Filir Wings +19996,467,100 // Horse_King +19999,467,100 // C_Mouse_Hat1 +20000,467,100 // C_Mouse_Hat2 +20001,467,100 // C_Mouse_Hat3 +20002,467,100 // C_Mouse_Hat4 +20003,467,100 // C_Mouse_Hat5 +20025,467,100 // C_Cow_Hat1 +20026,467,100 // C_Cow_Hat2 +20027,467,100 // C_Cow_Hat3 +20028,467,100 // C_Cow_Hat4 +20053,467,100 // C_W_King_Tiger_Doll_Hat +20063,475,100 // C_Yellow_Brain_Hat +20064,475,100 // C_Blue_Brain_Hat +20067,467,100 // C_White_Rabbit_Headband +20068,467,100 // C_Black_Rabbit_Headband +20086,467,100 // C_Dragon_Cintamani_Hat1 +20087,467,100 // C_Dragon_Cintamani_Hat2 +20088,467,100 // C_Dragon_Cintamani_Hat3 +20089,467,100 // C_Dragon_Cintamani_Hat4 +20110,467,100 // C_Coiledup_Snake +//20111,467,100 // +20135,507,100 // C_12_Anniversary_Crown_Of_Saint +20136,507,100 // C_12_Anniversary_Elf_Ears +20139,467,100 // C_Horse_Hairpin +20140,467,100 // C_Horse_Hairpin +20162,467,100 // C_Fleece_Hat +20163,467,100 // C_Fleece_Hat +20179,467,100 // C_Monkey_Coat_Hat +20206,467,100 // C_Chicken_Hat +20210,467,100 // C_Chicken_Hat +20211,467,100 // C_Chicken_Hat +20227,467,100 // C_Puppy_Hat +20228,467,100 // C_Pig_MoneyBox +//20702,499,100 // +//20703,499,100 // +//20704,499,100 // +//20709,507,100 // +20743,467,100 // Cloak_Of_Airship +21005,499,100 // Metal_Two_Hand_Sword +//21006,499,100 // +21014,467,100 // Infinity_Two-Handed_Sword +//22012,507,100 // +22046,467,100 // Boots_Of_Airship +22508,507,100 // Para_Team_Mark_ +22510,475,100 // King_Wolf_Scroll +//22511,467,100 // +22513,499,100 // King_of_Gift_Box +22517,507,100 // Rocker_Summoning_Scroll +22521,507,100 // Level_Up_Box +22522,507,100 // Level_Up_Box100 +22523,507,100 // Level_Up_Box120 +22524,507,100 // Level_Up_Box130 +22525,507,100 // Level_Up_Box140 +22526,507,100 // Level_Up_Box150 +22527,507,100 // Level_Up_Box160 +22528,475,100 // Pet_Exchange_Ticket_Box +22533,507,100 // New_Year_Gift_Box +22535,499,100 // Scroll_Summoning_Workers(Male) +22536,499,100 // Scroll_Summoning_Workers(Female) +//22539,467,100 // +22540,475,100 // Runstone_Luxanima +22541,475,100 // PC_Room_Coupon_Box_VI +22542,475,100 // Concentration_Potion +22543,475,100 // Berserk_Potion +22544,475,100 // Awakening_Potion +22545,475,100 // Speed_Potion +22546,475,100 // Slow_Potion +22547,475,100 // Anti-Payne_Moment +22548,475,100 // Wed_Cursed +22549,475,100 // Poison_Bottle +22550,475,100 // Sweets_Pocket +22551,475,100 // Teacake +22552,475,100 // Fried_Pastry +22553,475,100 // Rainbow_Bread +22554,467,100 // First_Aid_Box +22555,24,100 // Gourmet_Chocolate +22556,24,100 // Luxury_Chocolate +22557,24,100 // Masterpieces_of_Artisan_Chocolate +22566,48,100 // Last_Years_Frost +22569,499,100 // Gift_New_start +22589,499,100 // Savage_Ora_Ora +22590,499,100 // Grand_Peco_Ora_Ora +22591,499,100 // Desert_Wolf_Ora_Ora +22592,507,100 // Happy_Call_Box +22610,499,100 // New_Beginnings_Box +22614,507,100 // Premium_Manual +22617,475,100 // Clear_Box_S +22618,475,100 // Clear_Box_A +22619,499,100 // Ghost_Summon_Scroll +22623,499,100 // New_Start_Box +22626,475,100 // January_Gift_Box +22627,475,100 // February_Gift_Box +22652,475,100 // Briliant_Hat_Box +22671,475,100 // March_Gift_Box +22672,475,100 // April_Gift_Box +22673,475,100 // May_Gift_Box +22674,475,100 // June_Gift_Box +22685,467,100 // Solo_Christmas_Gift +22691,507,100 // Record_Fragment1 +22692,507,100 // Record_Fragment2 +22693,507,100 // Record_Fragment3 +22694,507,100 // Record_Fragment4 +22695,507,100 // Record_Fragment5 +22700,507,100 // Jumping_Support_Box +22708,499,100 // Thrilling_Box +22717,499,100 // Wanderer_Ball +22718,499,100 // Lude_Ball +22719,499,100 // Tatacho_Ball +22720,499,100 // Novus_Ball +22734,507,100 // Revolution_Quiz_Box +22735,475,100 // Sealed_Moonlight_Flower_Scroll +22736,475,100 // July_Gift_Box +22756,475,100 // August_Gift_Box +22760,507,100 // Argiope_Transportin +22761,507,100 // Luciola_Vespa_Transportin +22762,507,100 // Centipede_Transportin +22764,475,100 // Pet_Exchange_Ticket_Box_ +22777,475,100 // Gift_Buff_Set +22781,475,100 // PC_Bang_Normal_Box +22782,475,100 // PC_Bang_Wooden_Box +22783,475,100 // PC_Bang_Golden_Box +22784,475,100 // PC_Bang_Platinum_Box +22802,475,100 // Safe_to_6_Equipment_Certificate +//22807,507,100 // +22808,475,100 // Special_Gift_Box +22812,475,100 // Sealed_Dracula_Scroll +22813,475,100 // Bearer's_Shadow_Box +//22816,475,100 // +//22817,475,100 // +//22818,475,100 // +//22819,475,100 // +//22820,475,100 // +//22821,475,100 // +22823,475,100 // Sealed_Sniper_Scroll +22828,475,100 // Sealed_Album_Scroll +22829,475,100 // Sealed_Card_Album +22837,507,100 // Integer_Time +22842,475,100 // Sealed_Dracula_Scroll_II +22844,475,100 // Sealed_Dracula_Card_Album +22845,475,100 // Sealed_Fortune_Egg +22846,467,100 // Sealed_Dracula_Card +22850,475,100 // January_Gift_Box +22851,475,100 // February_Gift_Box +22852,475,100 // March_Gift_Box +22853,475,100 // April_Gift_Box +22854,475,100 // May_Gift_Box +22855,475,100 // June_Gift_Box +22856,475,100 // July_Gift_Box +22857,475,100 // August_Gift_Box +22858,475,100 // September_Gift_Box +22859,475,100 // October_Gift_Box +22860,475,100 // November_Gift_Box +22861,475,100 // December_Gift_Box +22869,507,100 // Lucky_Roulette_Tickets +22870,467,100 // Christmas_Package +22873,475,100 // Sealed_Beelzebub_Scroll_II +22874,475,100 // Sealed_Beelzebub_Card_Album +22875,475,100 // Sealed_Beelzebub_Card +22881,499,100 // Rope_Gallows +22883,475,100 // September_Gift_Box +22884,475,100 // October_Gift_Box +22885,475,100 // November_Gift_Box +22886,475,100 // December_Gift_Box +22887,507,100 // PC-Room_Box +22888,475,100 // New_Year's_Scroll +22893,475,100 // New_Year's_Shadow_Cube +22894,507,100 // (Limited)2015_Neuralizer +22895,507,100 // (Limited)2015_Status_Initialization_Volume +22896,507,100 // (Limited)Old_Status_Initialization_Volume +//22901,499,100 // +22902,475,100 // Sealed_Card_Album_Scroll_II +//22906,475,100 // +//22946,475,100 // +//22947,475,100 // +//22948,475,100 // +//22949,475,100 // +//22950,475,100 // +//22951,475,100 // +//22952,475,100 // +28105,467,100 // Infinity_Axe +28310,467,100 // Sarah's_Left_Earring +28311,467,100 // Sarah's_Right_Earring +28333,475,100 // Gold_PC_Room_Ring +28703,467,100 // Infinity_Dagger diff --git a/db/re/mob_boss.txt b/db/re/mob_boss.txt index 80702d2fe1..31eea10aeb 100644 --- a/db/re/mob_boss.txt +++ b/db/re/mob_boss.txt @@ -1,52 +1,52 @@ // Bloody Branch Summonable Monsters Database // // Structure of Database: -// MobID,DummyName,Rate +// MobRandomGroupID,MobID,DummyName,Rate -0,Baphomet,1039 -1038,Osiris,500000 -1039,Baphomet,500000 -1046,Doppelganger,500000 -1059,Mistress,500000 -1086,Golden Thief Bug,500000 -1087,Orc Hero,500000 -1096,Angeling,500000 -1112,Drake,500000 -1115,Eddga,500000 -1120,Ghostring,500000 -1147,Maya,500000 -1150,Moonlight Flower,500000 -1157,Pharaoh,500000 -1159,Phreeoni,500000 -1190,Orc Lord,500000 -1251,Stormy Knight,500000 -1252,Hatii,500000 -1272,Dark Lord,500000 -1312,Turtle General,500000 -1373,Lord of the Dead,500000 -1388,Arc Angeling,500000 -1389,Dracula,500000 -1418,Evil Snake Lord,500000 -1492,Samurai Specter,500000 -1511,Amon Ra,500000 -1582,Deviling,500000 -1583,Tao Gunka,500000 -1623,RSX-0806,500000 -1630,White Lady,500000 -1658,Egnigem Cenia,500000 -1685,Vesper,500000 -1688,Lady Tanee,500000 -1708,Thanatos Phantom,500000 -1719,Detardeurus,500000 -1734,Kiel D-01,500000 -1751,Valkyrie Randgris,500000 -1768,Gloom Under Night,500000 -1779,Ktullanux,500000 -1785,Atroce,1000000 -1832,Ifrit,500000 -1871,Falling Bishop,500000 -1873,Beelzebub,500000 -1885,Gopinich,500000 -2022,Nidhoggur's Shadow,500000 -2068,Boitata,500000 -2087,Scaraba Queen,500000 +MOBG_Bloody_Dead_Branch,0,Baphomet,1039 +MOBG_Bloody_Dead_Branch,1038,Osiris,500000 +MOBG_Bloody_Dead_Branch,1039,Baphomet,500000 +MOBG_Bloody_Dead_Branch,1046,Doppelganger,500000 +MOBG_Bloody_Dead_Branch,1059,Mistress,500000 +MOBG_Bloody_Dead_Branch,1086,Golden Thief Bug,500000 +MOBG_Bloody_Dead_Branch,1087,Orc Hero,500000 +MOBG_Bloody_Dead_Branch,1096,Angeling,500000 +MOBG_Bloody_Dead_Branch,1112,Drake,500000 +MOBG_Bloody_Dead_Branch,1115,Eddga,500000 +MOBG_Bloody_Dead_Branch,1120,Ghostring,500000 +MOBG_Bloody_Dead_Branch,1147,Maya,500000 +MOBG_Bloody_Dead_Branch,1150,Moonlight Flower,500000 +MOBG_Bloody_Dead_Branch,1157,Pharaoh,500000 +MOBG_Bloody_Dead_Branch,1159,Phreeoni,500000 +MOBG_Bloody_Dead_Branch,1190,Orc Lord,500000 +MOBG_Bloody_Dead_Branch,1251,Stormy Knight,500000 +MOBG_Bloody_Dead_Branch,1252,Hatii,500000 +MOBG_Bloody_Dead_Branch,1272,Dark Lord,500000 +MOBG_Bloody_Dead_Branch,1312,Turtle General,500000 +MOBG_Bloody_Dead_Branch,1373,Lord of the Dead,500000 +MOBG_Bloody_Dead_Branch,1388,Arc Angeling,500000 +MOBG_Bloody_Dead_Branch,1389,Dracula,500000 +MOBG_Bloody_Dead_Branch,1418,Evil Snake Lord,500000 +MOBG_Bloody_Dead_Branch,1492,Samurai Specter,500000 +MOBG_Bloody_Dead_Branch,1511,Amon Ra,500000 +MOBG_Bloody_Dead_Branch,1582,Deviling,500000 +MOBG_Bloody_Dead_Branch,1583,Tao Gunka,500000 +MOBG_Bloody_Dead_Branch,1623,RSX-0806,500000 +MOBG_Bloody_Dead_Branch,1630,White Lady,500000 +MOBG_Bloody_Dead_Branch,1658,Egnigem Cenia,500000 +MOBG_Bloody_Dead_Branch,1685,Vesper,500000 +MOBG_Bloody_Dead_Branch,1688,Lady Tanee,500000 +MOBG_Bloody_Dead_Branch,1708,Thanatos Phantom,500000 +MOBG_Bloody_Dead_Branch,1719,Detardeurus,500000 +MOBG_Bloody_Dead_Branch,1734,Kiel D-01,500000 +MOBG_Bloody_Dead_Branch,1751,Valkyrie Randgris,500000 +MOBG_Bloody_Dead_Branch,1768,Gloom Under Night,500000 +MOBG_Bloody_Dead_Branch,1779,Ktullanux,500000 +MOBG_Bloody_Dead_Branch,1785,Atroce,1000000 +MOBG_Bloody_Dead_Branch,1832,Ifrit,500000 +MOBG_Bloody_Dead_Branch,1871,Falling Bishop,500000 +MOBG_Bloody_Dead_Branch,1873,Beelzebub,500000 +MOBG_Bloody_Dead_Branch,1885,Gopinich,500000 +MOBG_Bloody_Dead_Branch,2022,Nidhoggur's Shadow,500000 +MOBG_Bloody_Dead_Branch,2068,Boitata,500000 +MOBG_Bloody_Dead_Branch,2087,Scaraba Queen,500000 diff --git a/db/re/mob_branch.txt b/db/re/mob_branch.txt index bd119a7822..ca06ec0528 100644 --- a/db/re/mob_branch.txt +++ b/db/re/mob_branch.txt @@ -1,485 +1,485 @@ // Dead Branch Summonable Monsters Database // // Structure of Database: -// MobID,DummyName,Rate +// MobRandomGroupID,MobID,DummyName,Rate -0,Scorpion,1001 -1001,Scorpion,214285 -1002,Poring,1000000 -1004,Hornet,357142 -1005,Familiar,357142 -1007,Fabre,428571 -1008,Pupa,71428 -1009,Condor,357142 -1010,Willow,357142 -1011,Chonchon,357142 -1012,Roda Frog,357142 -1013,Wolf,357142 -1014,Spore,357142 -1015,Zombie,357142 -1016,Archer Skeleton,214285 -1018,Creamy,357142 -1019,Peco Peco,357142 -1020,Mandragora,357142 -1023,Orc Warrior,214285 -1024,Wormtail,357142 -1025,Boa,357142 -1026,Munak,214285 -1028,Soldier Skeleton,214285 -1029,Isis,71428 -1030,Anacondaq,214285 -1031,Poporing,357142 -1032,Verit,214285 -1033,Elder Willow,214285 -1034,Thara Frog,214285 -1035,Hunter Fly,71428 -1036,Ghoul,214285 -1037,Side Winder,71428 -1040,Golem,214285 -1041,Mummy,214285 -1042,Steel Chonchon,357142 -1044,Obeaune,214285 -1045,Marc,214285 -1047,Peco Peco Egg,71428 -1048,Thief Bug Egg,71428 -1049,Picky,357142 -1050,Picky,357142 -1051,Thief Bug,357142 -1052,Rocker,357142 -1053,Thief Bug Female,357142 -1054,Thief Bug Male,357142 -1055,Muka,357142 -1056,Smokie,357142 -1057,Yoyo,357142 -1058,Metaller,214285 -1060,Bigfoot,214285 -1061,Nightmare,71428 -1062,Santa Poring,357142 -1063,Lunatic,357142 -1064,Megalodon,214285 -1065,Strouf,214285 -1066,Vadon,357142 -1067,Cornutus,214285 -1068,Hydra,357142 -1069,Swordfish,214285 -1070,Kukre,357142 -1071,Pirate Skeleton,214285 -1072,Kaho,71428 -1073,Crab,214285 -1074,Shellfish,357142 -1076,Skeleton,357142 -1077,Poison Spore,357142 -1078,Red Plant,71428 -1079,Blue Plant,71428 -1080,Green Plant,71428 -1081,Yellow Plant,71428 -1082,White Plant,71428 -1083,Shining Plant,71428 -1084,Black Mushroom,71428 -1085,Red Mushroom,71428 -1088,Vocal,71428 -1089,Toad,71428 -1090,Mastering,71428 -1091,Dragon Fly,71428 -1092,Vagabond Wolf,71428 -1093,Eclipse,71428 -1094,Ambernite,357142 -1095,Andre,357142 -1096,Angeling,71428 -1097,Ant Egg,71428 -1098,Anubis,71428 -1099,Argiope,71428 -1100,Argos,214285 -1101,Baphomet Jr.,71428 -1102,Bathory,71428 -1103,Caramel,214285 -1104,Coco,357142 -1105,Deniro,357142 -1106,Desert Wolf,214285 -1107,Baby Desert Wolf,71428 -1108,Deviace,71428 -1109,Deviruchi,71428 -1110,Dokebi,214285 -1111,Drainliar,214285 -1113,Drops,357142 -1114,Dustiness,214285 -1116,Eggyra,214285 -1117,Evil Druid,71428 -1118,Flora,214285 -1119,Frilldora,214285 -1120,Ghostring,71428 -1121,Giearth,214285 -1122,Goblin,214285 -1123,Goblin,214285 -1124,Goblin,214285 -1125,Goblin,214285 -1126,Goblin,214285 -1127,Hode,214285 -1128,Horn,357142 -1129,Horong,214285 -1130,Jakk,214285 -1131,Joker,71428 -1132,Khalitzburg,71428 -1133,Kobold,214285 -1134,Kobold,214285 -1135,Kobold,214285 -1138,Magnolia,214285 -1139,Mantis,214285 -1140,Marduk,214285 -1141,Marina,214285 -1142,Marine Sphere,214285 -1143,Marionette,71428 -1144,Marse,214285 -1145,Martin,357142 -1146,Matyr,214285 -1148,Medusa,71428 -1149,Minorous,71428 -1151,Myst,214285 -1152,Orc Skeleton,214285 -1153,Orc Zombie,214285 -1154,Pasana,71428 -1155,Petite,71428 -1156,Petite,71428 -1158,Phen,214285 -1160,Piere,357142 -1161,Plankton,357142 -1163,Raydric,71428 -1164,Requiem,214285 -1165,Sandman,214285 -1166,Savage,214285 -1167,Savage Babe,357142 -1169,Skeleton Worker,214285 -1170,Sohee,214285 -1174,Stainer,357142 -1175,Tarou,357142 -1176,Vitata,214285 -1177,Zenorc,214285 -1178,Zerom,214285 -1179,Whisper,71428 -1180,Nine Tail,71428 -1182,Thief Mushroom,71428 -1185,Whisper,71428 -1186,Giant Whisper,71428 -1188,Bongun,214285 -1189,Orc Archer,71428 -1191,Mimic,71428 -1192,Wraith,71428 -1193,Alarm,71428 -1194,Arclouze,71428 -1195,Rideword,71428 -1196,Skeleton Prisoner,71428 -1197,Zombie Prisoner,71428 -1199,Punk,71428 -1200,Zealotus,71428 -1201,Rybio,71428 -1202,Phendark,71428 -1203,Mysteltainn,71428 -1204,Ogretooth,71428 -1205,Executioner,71428 -1206,Anolian,71428 -1207,Sting,71428 -1208,Wanderer,71428 -1209,Cramp,71428 -1211,Brilight,71428 -1212,Iron Fist,71428 -1213,High Orc,71428 -1214,Choco,71428 -1215,Stem Worm,214285 -1216,Penomena,71428 -1219,Abysmal Knight,71428 -1242,Marin,357142 -1243,Sasquatch,214285 -1245,Christmas Goblin,71428 -1246,Christmas Cookie,214285 -1248,Cruiser,214285 -1249,Myst Case,214285 -1250,Chepet,71428 -1253,Gargoyle,71428 -1254,Raggler,214285 -1255,Nereid,214285 -1256,Pest,214285 -1257,Injustice,71428 -1258,Goblin Archer,214285 -1259,Gryphon,71428 -1260,Dark Frame,71428 -1261,Wild Rose,214285 -1262,Mutant Dragonoid,71428 -1263,Wind Ghost,71428 -1264,Merman,71428 -1265,Cookie,214285 -1266,Aster,357142 -1267,Carat,71428 -1268,Bloody Knight,71428 -1269,Clock,71428 -1270,Clock Tower Manager,71428 -1271,Alligator,71428 -1273,Orc Lady,214285 -1274,Megalith,71428 -1275,Alice,71428 -1276,Raydric Archer,71428 -1277,Greatest General,214285 -1278,Stalactic Golem,71428 -1279,Tri Joint,214285 -1280,Goblin Steamrider,214285 -1281,Sage Worm,71428 -1282,Kobold Archer,214285 -1283,Chimera,71428 -1289,Maya Purple,71428 -1290,Skeleton General,71428 -1291,Wraith Dead,71428 -1292,Mini Demon,71428 -1293,Creamy Fear,71428 -1294,Killer Mantis,71428 -1295,Owl Baron,71428 -1296,Kobold Leader,71428 -1297,Ancient Mummy,71428 -1298,Zombie Master,71428 -1299,Goblin Leader,71428 -1300,Caterpillar,71428 -1301,Am Mut,71428 -1302,Dark Illusion,71428 -1303,Giant Hornet,71428 -1304,Giant Spider,71428 -1305,Ancient Worm,71428 -1306,Leib Olmai,71428 -1307,Cat o' Nine Tails,71428 -1308,Panzer Goblin,71428 -1309,Gajomart,71428 -1310,Majoruros,71428 -1311,Gullinbursti,71428 -1313,Mobster,71428 -1314,Permeter,71428 -1315,Assaulter,71428 -1316,Solider,71428 -1317,Seal,71428 -1318,Heater,71428 -1319,Freezer,71428 -1320,Owl Duke,71428 -1321,Dragon Tail,71428 -1322,Spring Rabbit,71428 -1323,Sea Otter,71428 -1365,Apocalypse,71428 -1366,Lava Golem,71428 -1367,Blazer,71428 -1368,Geographer,71428 -1369,Grand Peco,71428 -1370,Succubus,71428 -1371,False Angel,71428 -1372,Goat,71428 -1374,Incubus,71428 -1375,The Paper,71428 -1376,Harpy,71428 -1377,Elder,71428 -1378,Demon Pungus,71428 -1379,Nightmare Terror,71428 -1380,Driller,71428 -1381,Grizzly,71428 -1382,Diabolic,71428 -1383,Explosion,71428 -1384,Deleter,71428 -1385,Deleter,71428 -1386,Sleeper,71428 -1387,Gig,71428 -1390,Violy,71428 -1391,Galapago,71428 -1392,Rotar Zairo,214285 -1400,Karakasa,214285 -1401,Shinobi,71428 -1402,Poison Toad,71428 -1403,Firelock Soldier,71428 -1404,Miyabi Doll,214285 -1405,Tengu,71428 -1406,Kapha,71428 -1408,Bloody Butterfly,71428 -1409,Dumpling Child,214285 -1410,Enchanted Peach Tree,71428 -1412,Taoist Hermit,71428 -1413,Hermit Plant,71428 -1415,Baby Leopard,214285 -1416,Evil Nymph,71428 -1417,Zipper Bear,214285 -1493,Dryad,71428 -1494,Beetle King,214285 -1495,Stone Shooter,71428 -1497,Wooden Golem,71428 -1498,Wootan Shooter,214285 -1499,Wootan Fighter,71428 -1500,Parasite,214285 -1503,Gibbet,71428 -1504,Dullahan,71428 -1505,Loli Ruri,71428 -1506,Disguise,71428 -1507,Bloody Murderer,71428 -1508,Quve,214285 -1509,Lude,214285 -1510,Heirozoist,71428 -1512,Yao Jun,71428 -1513,Mao Guai,71428 -1514,Zhu Po Long,71428 -1515,Baby Hatii,71428 -1516,Mi Gao,71428 -1517,Jing Guai,71428 -1519,Green Maiden,71428 -1520,Boiled Rice,71428 -1582,Deviling,71428 -1584,Tamruan,71428 -1586,Leaf Cat,71428 -1587,Kraben,71428 -1613,Metaling,71428 -1614,Mineral,71428 -1615,Obsidian,71428 -1616,Pitman,71428 -1617,Old Stove,71428 -1618,Ungoliant,71428 -1619,Porcellio,71428 -1620,Noxious,71428 -1621,Venomous,71428 -1622,Teddy Bear,71428 -1627,Anopheles,71428 -1628,Holden,71428 -1629,Hill Wind,71428 -1631,Green Maiden,71428 -1632,Gremlin,71428 -1633,Beholder,71428 -1634,Seyren Windsor,71428 -1635,Eremes Guile,71428 -1636,Howard Alt-Eisen,71428 -1637,Margaretha Sorin,71428 -1638,Cecil Damon,71428 -1639,Kathryne Keyron,71428 -1652,Egnigem Cenia,71428 -1653,Wickebine Tres,71428 -1654,Armeyer Dinze,71428 -1655,Errende Ebecee,71428 -1656,Kavach Icarus,71428 -1657,Laurell Weinder,71428 -1664,Photon Cannon,71428 -1665,Photon Cannon,71428 -1666,Photon Cannon,71428 -1667,Photon Cannon,71428 -1668,Archdam,71428 -1669,Dimik,71428 -1670,Dimik,71428 -1671,Dimik,71428 -1672,Dimik,71428 -1673,Dimik,71428 -1675,Venatu,71428 -1676,Venatu,71428 -1677,Venatu,71428 -1678,Venatu,71428 -1679,Venatu,71428 -1680,Hill Wind,71428 -1681,Gemini-S58,71428 -1682,Remover,71428 -1686,Orc Baby,71428 -1687,Grove,71428 -1692,Breeze,71428 -1693,Plasma,71428 -1694,Plasma,71428 -1695,Plasma,71428 -1696,Plasma,71428 -1699,Ancient Mimic,71428 -1703,Lady Solace,71428 -1704,Odium of Thanatos,71428 -1705,Despero of Thanatos,71428 -1706,Maero of Thanatos,71428 -1707,Dolor of Thanatos,71428 -1713,Acidus,71428 -1714,Ferus,71428 -1715,Novus,71428 -1717,Ferus,71428 -1718,Novus,71428 -1720,Hydrolancer,71428 -1721,Dragon Egg,71428 -1736,Aliot,71428 -1737,Aliza,71428 -1738,Constant,71428 -1752,Skogul,71428 -1753,Frus,71428 -1754,Skeggiold,71428 -1755,Skeggiold,71428 -1769,Agav,71428 -1770,Echio,71428 -1771,Vanberk,71428 -1772,Isilla,71428 -1773,Hodremlin,71428 -1774,Seeker,71428 -1775,Snowier,71428 -1776,Siroma,71428 -1777,Ice Titan,71428 -1778,Gazeti,71428 -1780,Muscipular,71428 -1781,Drosera,71428 -1782,Roween,71428 -1783,Galion,71428 -1784,Stapo,142857 -1789,Iceicle,71428 -1796,Aunoe,142857 -1797,Fanat,142857 -1829,Sword Guardian,71428 -1830,Bow Guardian,71428 -1831,Salamander,71428 -1833,Kasa,71428 -1836,Magmaring,214285 -1837,Imp,71428 -1838,Knocker,71428 -1839,Byrogue,71428 -1864,Zombie Slaughter,71428 -1865,Ragged Zombie,71428 -1866,Hellhound,71428 -1867,Banshee,71428 -1869,Flame Skull,71428 -1870,Necromancer,71428 -1872,Hell Fly,71428 -1880,Wood Goblin,71428 -1881,Les,71428 -1882,Baba-Yaga,71428 -1883,Uzhas,71428 -1884,Mavka,71428 -1918,Incarnation of Morroc,71428 -1919,Incarnation of Morroc,71428 -1920,Incarnation of Morroc,71428 -1921,Incarnation of Morroc,71428 -1974,Banshee Master,71428 -1975,Beholder Master,71428 -1976,Cobalt Mineral,71428 -1977,Heavy Metaling,71428 -1978,Hell Vesper,71428 -1979,Zakudam,71428 -1986,Tatacho,71428 -1987,Centipede,71428 -1988,Nepenthes,71428 -1989,Hillthrion,71428 -1990,Hardrock Mammoth,71428 -1991,Tendrillion,71428 -1992,Cornus,71428 -1993,Naga,71428 -1994,Luciola Vespa,71428 -1995,Pinguicula,71428 -1999,Centipede Larva,71428 -2013,Draco,71428 -2015,Dark Pinguicula,71428 -2016,Aqua Elemental,71428 -2017,Rata,71428 -2018,Duneyrr,71428 -2019,Ancient Tree,71428 -2020,Rhyncho,71428 -2021,Phylla,71428 -2023,Dark Shadow,71428 -2024,Bradium Golem,71428 -2069,Iara,71428 -2070,Piranha,71428 -2071,Headless Mule,71428 -2072,Jaguar,71428 -2073,Toucan,71428 -2074,Curupira,71428 -2083,One-Horned Scaraba,71428 -2084,Two-Horned Scaraba,71428 -2085,Antler Scaraba,71428 -2086,Rake Scaraba,71428 -2088,Scaraba Egg,71428 -2089,Scaraba Egg,71428 -2090,Antler Scaraba Egg,71428 -2091,Rake Scaraba Egg,71428 -2092,Dolomedes,71428 -2093,Botaring,142857 +MOBG_Branch_Of_Dead_Tree,0,Scorpion,1001 +MOBG_Branch_Of_Dead_Tree,1001,Scorpion,214285 +MOBG_Branch_Of_Dead_Tree,1002,Poring,1000000 +MOBG_Branch_Of_Dead_Tree,1004,Hornet,357142 +MOBG_Branch_Of_Dead_Tree,1005,Familiar,357142 +MOBG_Branch_Of_Dead_Tree,1007,Fabre,428571 +MOBG_Branch_Of_Dead_Tree,1008,Pupa,71428 +MOBG_Branch_Of_Dead_Tree,1009,Condor,357142 +MOBG_Branch_Of_Dead_Tree,1010,Willow,357142 +MOBG_Branch_Of_Dead_Tree,1011,Chonchon,357142 +MOBG_Branch_Of_Dead_Tree,1012,Roda Frog,357142 +MOBG_Branch_Of_Dead_Tree,1013,Wolf,357142 +MOBG_Branch_Of_Dead_Tree,1014,Spore,357142 +MOBG_Branch_Of_Dead_Tree,1015,Zombie,357142 +MOBG_Branch_Of_Dead_Tree,1016,Archer Skeleton,214285 +MOBG_Branch_Of_Dead_Tree,1018,Creamy,357142 +MOBG_Branch_Of_Dead_Tree,1019,Peco Peco,357142 +MOBG_Branch_Of_Dead_Tree,1020,Mandragora,357142 +MOBG_Branch_Of_Dead_Tree,1023,Orc Warrior,214285 +MOBG_Branch_Of_Dead_Tree,1024,Wormtail,357142 +MOBG_Branch_Of_Dead_Tree,1025,Boa,357142 +MOBG_Branch_Of_Dead_Tree,1026,Munak,214285 +MOBG_Branch_Of_Dead_Tree,1028,Soldier Skeleton,214285 +MOBG_Branch_Of_Dead_Tree,1029,Isis,71428 +MOBG_Branch_Of_Dead_Tree,1030,Anacondaq,214285 +MOBG_Branch_Of_Dead_Tree,1031,Poporing,357142 +MOBG_Branch_Of_Dead_Tree,1032,Verit,214285 +MOBG_Branch_Of_Dead_Tree,1033,Elder Willow,214285 +MOBG_Branch_Of_Dead_Tree,1034,Thara Frog,214285 +MOBG_Branch_Of_Dead_Tree,1035,Hunter Fly,71428 +MOBG_Branch_Of_Dead_Tree,1036,Ghoul,214285 +MOBG_Branch_Of_Dead_Tree,1037,Side Winder,71428 +MOBG_Branch_Of_Dead_Tree,1040,Golem,214285 +MOBG_Branch_Of_Dead_Tree,1041,Mummy,214285 +MOBG_Branch_Of_Dead_Tree,1042,Steel Chonchon,357142 +MOBG_Branch_Of_Dead_Tree,1044,Obeaune,214285 +MOBG_Branch_Of_Dead_Tree,1045,Marc,214285 +MOBG_Branch_Of_Dead_Tree,1047,Peco Peco Egg,71428 +MOBG_Branch_Of_Dead_Tree,1048,Thief Bug Egg,71428 +MOBG_Branch_Of_Dead_Tree,1049,Picky,357142 +MOBG_Branch_Of_Dead_Tree,1050,Picky,357142 +MOBG_Branch_Of_Dead_Tree,1051,Thief Bug,357142 +MOBG_Branch_Of_Dead_Tree,1052,Rocker,357142 +MOBG_Branch_Of_Dead_Tree,1053,Thief Bug Female,357142 +MOBG_Branch_Of_Dead_Tree,1054,Thief Bug Male,357142 +MOBG_Branch_Of_Dead_Tree,1055,Muka,357142 +MOBG_Branch_Of_Dead_Tree,1056,Smokie,357142 +MOBG_Branch_Of_Dead_Tree,1057,Yoyo,357142 +MOBG_Branch_Of_Dead_Tree,1058,Metaller,214285 +MOBG_Branch_Of_Dead_Tree,1060,Bigfoot,214285 +MOBG_Branch_Of_Dead_Tree,1061,Nightmare,71428 +MOBG_Branch_Of_Dead_Tree,1062,Santa Poring,357142 +MOBG_Branch_Of_Dead_Tree,1063,Lunatic,357142 +MOBG_Branch_Of_Dead_Tree,1064,Megalodon,214285 +MOBG_Branch_Of_Dead_Tree,1065,Strouf,214285 +MOBG_Branch_Of_Dead_Tree,1066,Vadon,357142 +MOBG_Branch_Of_Dead_Tree,1067,Cornutus,214285 +MOBG_Branch_Of_Dead_Tree,1068,Hydra,357142 +MOBG_Branch_Of_Dead_Tree,1069,Swordfish,214285 +MOBG_Branch_Of_Dead_Tree,1070,Kukre,357142 +MOBG_Branch_Of_Dead_Tree,1071,Pirate Skeleton,214285 +MOBG_Branch_Of_Dead_Tree,1072,Kaho,71428 +MOBG_Branch_Of_Dead_Tree,1073,Crab,214285 +MOBG_Branch_Of_Dead_Tree,1074,Shellfish,357142 +MOBG_Branch_Of_Dead_Tree,1076,Skeleton,357142 +MOBG_Branch_Of_Dead_Tree,1077,Poison Spore,357142 +MOBG_Branch_Of_Dead_Tree,1078,Red Plant,71428 +MOBG_Branch_Of_Dead_Tree,1079,Blue Plant,71428 +MOBG_Branch_Of_Dead_Tree,1080,Green Plant,71428 +MOBG_Branch_Of_Dead_Tree,1081,Yellow Plant,71428 +MOBG_Branch_Of_Dead_Tree,1082,White Plant,71428 +MOBG_Branch_Of_Dead_Tree,1083,Shining Plant,71428 +MOBG_Branch_Of_Dead_Tree,1084,Black Mushroom,71428 +MOBG_Branch_Of_Dead_Tree,1085,Red Mushroom,71428 +MOBG_Branch_Of_Dead_Tree,1088,Vocal,71428 +MOBG_Branch_Of_Dead_Tree,1089,Toad,71428 +MOBG_Branch_Of_Dead_Tree,1090,Mastering,71428 +MOBG_Branch_Of_Dead_Tree,1091,Dragon Fly,71428 +MOBG_Branch_Of_Dead_Tree,1092,Vagabond Wolf,71428 +MOBG_Branch_Of_Dead_Tree,1093,Eclipse,71428 +MOBG_Branch_Of_Dead_Tree,1094,Ambernite,357142 +MOBG_Branch_Of_Dead_Tree,1095,Andre,357142 +MOBG_Branch_Of_Dead_Tree,1096,Angeling,71428 +MOBG_Branch_Of_Dead_Tree,1097,Ant Egg,71428 +MOBG_Branch_Of_Dead_Tree,1098,Anubis,71428 +MOBG_Branch_Of_Dead_Tree,1099,Argiope,71428 +MOBG_Branch_Of_Dead_Tree,1100,Argos,214285 +MOBG_Branch_Of_Dead_Tree,1101,Baphomet Jr.,71428 +MOBG_Branch_Of_Dead_Tree,1102,Bathory,71428 +MOBG_Branch_Of_Dead_Tree,1103,Caramel,214285 +MOBG_Branch_Of_Dead_Tree,1104,Coco,357142 +MOBG_Branch_Of_Dead_Tree,1105,Deniro,357142 +MOBG_Branch_Of_Dead_Tree,1106,Desert Wolf,214285 +MOBG_Branch_Of_Dead_Tree,1107,Baby Desert Wolf,71428 +MOBG_Branch_Of_Dead_Tree,1108,Deviace,71428 +MOBG_Branch_Of_Dead_Tree,1109,Deviruchi,71428 +MOBG_Branch_Of_Dead_Tree,1110,Dokebi,214285 +MOBG_Branch_Of_Dead_Tree,1111,Drainliar,214285 +MOBG_Branch_Of_Dead_Tree,1113,Drops,357142 +MOBG_Branch_Of_Dead_Tree,1114,Dustiness,214285 +MOBG_Branch_Of_Dead_Tree,1116,Eggyra,214285 +MOBG_Branch_Of_Dead_Tree,1117,Evil Druid,71428 +MOBG_Branch_Of_Dead_Tree,1118,Flora,214285 +MOBG_Branch_Of_Dead_Tree,1119,Frilldora,214285 +MOBG_Branch_Of_Dead_Tree,1120,Ghostring,71428 +MOBG_Branch_Of_Dead_Tree,1121,Giearth,214285 +MOBG_Branch_Of_Dead_Tree,1122,Goblin,214285 +MOBG_Branch_Of_Dead_Tree,1123,Goblin,214285 +MOBG_Branch_Of_Dead_Tree,1124,Goblin,214285 +MOBG_Branch_Of_Dead_Tree,1125,Goblin,214285 +MOBG_Branch_Of_Dead_Tree,1126,Goblin,214285 +MOBG_Branch_Of_Dead_Tree,1127,Hode,214285 +MOBG_Branch_Of_Dead_Tree,1128,Horn,357142 +MOBG_Branch_Of_Dead_Tree,1129,Horong,214285 +MOBG_Branch_Of_Dead_Tree,1130,Jakk,214285 +MOBG_Branch_Of_Dead_Tree,1131,Joker,71428 +MOBG_Branch_Of_Dead_Tree,1132,Khalitzburg,71428 +MOBG_Branch_Of_Dead_Tree,1133,Kobold,214285 +MOBG_Branch_Of_Dead_Tree,1134,Kobold,214285 +MOBG_Branch_Of_Dead_Tree,1135,Kobold,214285 +MOBG_Branch_Of_Dead_Tree,1138,Magnolia,214285 +MOBG_Branch_Of_Dead_Tree,1139,Mantis,214285 +MOBG_Branch_Of_Dead_Tree,1140,Marduk,214285 +MOBG_Branch_Of_Dead_Tree,1141,Marina,214285 +MOBG_Branch_Of_Dead_Tree,1142,Marine Sphere,214285 +MOBG_Branch_Of_Dead_Tree,1143,Marionette,71428 +MOBG_Branch_Of_Dead_Tree,1144,Marse,214285 +MOBG_Branch_Of_Dead_Tree,1145,Martin,357142 +MOBG_Branch_Of_Dead_Tree,1146,Matyr,214285 +MOBG_Branch_Of_Dead_Tree,1148,Medusa,71428 +MOBG_Branch_Of_Dead_Tree,1149,Minorous,71428 +MOBG_Branch_Of_Dead_Tree,1151,Myst,214285 +MOBG_Branch_Of_Dead_Tree,1152,Orc Skeleton,214285 +MOBG_Branch_Of_Dead_Tree,1153,Orc Zombie,214285 +MOBG_Branch_Of_Dead_Tree,1154,Pasana,71428 +MOBG_Branch_Of_Dead_Tree,1155,Petite,71428 +MOBG_Branch_Of_Dead_Tree,1156,Petite,71428 +MOBG_Branch_Of_Dead_Tree,1158,Phen,214285 +MOBG_Branch_Of_Dead_Tree,1160,Piere,357142 +MOBG_Branch_Of_Dead_Tree,1161,Plankton,357142 +MOBG_Branch_Of_Dead_Tree,1163,Raydric,71428 +MOBG_Branch_Of_Dead_Tree,1164,Requiem,214285 +MOBG_Branch_Of_Dead_Tree,1165,Sandman,214285 +MOBG_Branch_Of_Dead_Tree,1166,Savage,214285 +MOBG_Branch_Of_Dead_Tree,1167,Savage Babe,357142 +MOBG_Branch_Of_Dead_Tree,1169,Skeleton Worker,214285 +MOBG_Branch_Of_Dead_Tree,1170,Sohee,214285 +MOBG_Branch_Of_Dead_Tree,1174,Stainer,357142 +MOBG_Branch_Of_Dead_Tree,1175,Tarou,357142 +MOBG_Branch_Of_Dead_Tree,1176,Vitata,214285 +MOBG_Branch_Of_Dead_Tree,1177,Zenorc,214285 +MOBG_Branch_Of_Dead_Tree,1178,Zerom,214285 +MOBG_Branch_Of_Dead_Tree,1179,Whisper,71428 +MOBG_Branch_Of_Dead_Tree,1180,Nine Tail,71428 +MOBG_Branch_Of_Dead_Tree,1182,Thief Mushroom,71428 +MOBG_Branch_Of_Dead_Tree,1185,Whisper,71428 +MOBG_Branch_Of_Dead_Tree,1186,Giant Whisper,71428 +MOBG_Branch_Of_Dead_Tree,1188,Bongun,214285 +MOBG_Branch_Of_Dead_Tree,1189,Orc Archer,71428 +MOBG_Branch_Of_Dead_Tree,1191,Mimic,71428 +MOBG_Branch_Of_Dead_Tree,1192,Wraith,71428 +MOBG_Branch_Of_Dead_Tree,1193,Alarm,71428 +MOBG_Branch_Of_Dead_Tree,1194,Arclouze,71428 +MOBG_Branch_Of_Dead_Tree,1195,Rideword,71428 +MOBG_Branch_Of_Dead_Tree,1196,Skeleton Prisoner,71428 +MOBG_Branch_Of_Dead_Tree,1197,Zombie Prisoner,71428 +MOBG_Branch_Of_Dead_Tree,1199,Punk,71428 +MOBG_Branch_Of_Dead_Tree,1200,Zealotus,71428 +MOBG_Branch_Of_Dead_Tree,1201,Rybio,71428 +MOBG_Branch_Of_Dead_Tree,1202,Phendark,71428 +MOBG_Branch_Of_Dead_Tree,1203,Mysteltainn,71428 +MOBG_Branch_Of_Dead_Tree,1204,Ogretooth,71428 +MOBG_Branch_Of_Dead_Tree,1205,Executioner,71428 +MOBG_Branch_Of_Dead_Tree,1206,Anolian,71428 +MOBG_Branch_Of_Dead_Tree,1207,Sting,71428 +MOBG_Branch_Of_Dead_Tree,1208,Wanderer,71428 +MOBG_Branch_Of_Dead_Tree,1209,Cramp,71428 +MOBG_Branch_Of_Dead_Tree,1211,Brilight,71428 +MOBG_Branch_Of_Dead_Tree,1212,Iron Fist,71428 +MOBG_Branch_Of_Dead_Tree,1213,High Orc,71428 +MOBG_Branch_Of_Dead_Tree,1214,Choco,71428 +MOBG_Branch_Of_Dead_Tree,1215,Stem Worm,214285 +MOBG_Branch_Of_Dead_Tree,1216,Penomena,71428 +MOBG_Branch_Of_Dead_Tree,1219,Abysmal Knight,71428 +MOBG_Branch_Of_Dead_Tree,1242,Marin,357142 +MOBG_Branch_Of_Dead_Tree,1243,Sasquatch,214285 +MOBG_Branch_Of_Dead_Tree,1245,Christmas Goblin,71428 +MOBG_Branch_Of_Dead_Tree,1246,Christmas Cookie,214285 +MOBG_Branch_Of_Dead_Tree,1248,Cruiser,214285 +MOBG_Branch_Of_Dead_Tree,1249,Myst Case,214285 +MOBG_Branch_Of_Dead_Tree,1250,Chepet,71428 +MOBG_Branch_Of_Dead_Tree,1253,Gargoyle,71428 +MOBG_Branch_Of_Dead_Tree,1254,Raggler,214285 +MOBG_Branch_Of_Dead_Tree,1255,Nereid,214285 +MOBG_Branch_Of_Dead_Tree,1256,Pest,214285 +MOBG_Branch_Of_Dead_Tree,1257,Injustice,71428 +MOBG_Branch_Of_Dead_Tree,1258,Goblin Archer,214285 +MOBG_Branch_Of_Dead_Tree,1259,Gryphon,71428 +MOBG_Branch_Of_Dead_Tree,1260,Dark Frame,71428 +MOBG_Branch_Of_Dead_Tree,1261,Wild Rose,214285 +MOBG_Branch_Of_Dead_Tree,1262,Mutant Dragonoid,71428 +MOBG_Branch_Of_Dead_Tree,1263,Wind Ghost,71428 +MOBG_Branch_Of_Dead_Tree,1264,Merman,71428 +MOBG_Branch_Of_Dead_Tree,1265,Cookie,214285 +MOBG_Branch_Of_Dead_Tree,1266,Aster,357142 +MOBG_Branch_Of_Dead_Tree,1267,Carat,71428 +MOBG_Branch_Of_Dead_Tree,1268,Bloody Knight,71428 +MOBG_Branch_Of_Dead_Tree,1269,Clock,71428 +MOBG_Branch_Of_Dead_Tree,1270,Clock Tower Manager,71428 +MOBG_Branch_Of_Dead_Tree,1271,Alligator,71428 +MOBG_Branch_Of_Dead_Tree,1273,Orc Lady,214285 +MOBG_Branch_Of_Dead_Tree,1274,Megalith,71428 +MOBG_Branch_Of_Dead_Tree,1275,Alice,71428 +MOBG_Branch_Of_Dead_Tree,1276,Raydric Archer,71428 +MOBG_Branch_Of_Dead_Tree,1277,Greatest General,214285 +MOBG_Branch_Of_Dead_Tree,1278,Stalactic Golem,71428 +MOBG_Branch_Of_Dead_Tree,1279,Tri Joint,214285 +MOBG_Branch_Of_Dead_Tree,1280,Goblin Steamrider,214285 +MOBG_Branch_Of_Dead_Tree,1281,Sage Worm,71428 +MOBG_Branch_Of_Dead_Tree,1282,Kobold Archer,214285 +MOBG_Branch_Of_Dead_Tree,1283,Chimera,71428 +MOBG_Branch_Of_Dead_Tree,1289,Maya Purple,71428 +MOBG_Branch_Of_Dead_Tree,1290,Skeleton General,71428 +MOBG_Branch_Of_Dead_Tree,1291,Wraith Dead,71428 +MOBG_Branch_Of_Dead_Tree,1292,Mini Demon,71428 +MOBG_Branch_Of_Dead_Tree,1293,Creamy Fear,71428 +MOBG_Branch_Of_Dead_Tree,1294,Killer Mantis,71428 +MOBG_Branch_Of_Dead_Tree,1295,Owl Baron,71428 +MOBG_Branch_Of_Dead_Tree,1296,Kobold Leader,71428 +MOBG_Branch_Of_Dead_Tree,1297,Ancient Mummy,71428 +MOBG_Branch_Of_Dead_Tree,1298,Zombie Master,71428 +MOBG_Branch_Of_Dead_Tree,1299,Goblin Leader,71428 +MOBG_Branch_Of_Dead_Tree,1300,Caterpillar,71428 +MOBG_Branch_Of_Dead_Tree,1301,Am Mut,71428 +MOBG_Branch_Of_Dead_Tree,1302,Dark Illusion,71428 +MOBG_Branch_Of_Dead_Tree,1303,Giant Hornet,71428 +MOBG_Branch_Of_Dead_Tree,1304,Giant Spider,71428 +MOBG_Branch_Of_Dead_Tree,1305,Ancient Worm,71428 +MOBG_Branch_Of_Dead_Tree,1306,Leib Olmai,71428 +MOBG_Branch_Of_Dead_Tree,1307,Cat o' Nine Tails,71428 +MOBG_Branch_Of_Dead_Tree,1308,Panzer Goblin,71428 +MOBG_Branch_Of_Dead_Tree,1309,Gajomart,71428 +MOBG_Branch_Of_Dead_Tree,1310,Majoruros,71428 +MOBG_Branch_Of_Dead_Tree,1311,Gullinbursti,71428 +MOBG_Branch_Of_Dead_Tree,1313,Mobster,71428 +MOBG_Branch_Of_Dead_Tree,1314,Permeter,71428 +MOBG_Branch_Of_Dead_Tree,1315,Assaulter,71428 +MOBG_Branch_Of_Dead_Tree,1316,Solider,71428 +MOBG_Branch_Of_Dead_Tree,1317,Seal,71428 +MOBG_Branch_Of_Dead_Tree,1318,Heater,71428 +MOBG_Branch_Of_Dead_Tree,1319,Freezer,71428 +MOBG_Branch_Of_Dead_Tree,1320,Owl Duke,71428 +MOBG_Branch_Of_Dead_Tree,1321,Dragon Tail,71428 +MOBG_Branch_Of_Dead_Tree,1322,Spring Rabbit,71428 +MOBG_Branch_Of_Dead_Tree,1323,Sea Otter,71428 +MOBG_Branch_Of_Dead_Tree,1365,Apocalypse,71428 +MOBG_Branch_Of_Dead_Tree,1366,Lava Golem,71428 +MOBG_Branch_Of_Dead_Tree,1367,Blazer,71428 +MOBG_Branch_Of_Dead_Tree,1368,Geographer,71428 +MOBG_Branch_Of_Dead_Tree,1369,Grand Peco,71428 +MOBG_Branch_Of_Dead_Tree,1370,Succubus,71428 +MOBG_Branch_Of_Dead_Tree,1371,False Angel,71428 +MOBG_Branch_Of_Dead_Tree,1372,Goat,71428 +MOBG_Branch_Of_Dead_Tree,1374,Incubus,71428 +MOBG_Branch_Of_Dead_Tree,1375,The Paper,71428 +MOBG_Branch_Of_Dead_Tree,1376,Harpy,71428 +MOBG_Branch_Of_Dead_Tree,1377,Elder,71428 +MOBG_Branch_Of_Dead_Tree,1378,Demon Pungus,71428 +MOBG_Branch_Of_Dead_Tree,1379,Nightmare Terror,71428 +MOBG_Branch_Of_Dead_Tree,1380,Driller,71428 +MOBG_Branch_Of_Dead_Tree,1381,Grizzly,71428 +MOBG_Branch_Of_Dead_Tree,1382,Diabolic,71428 +MOBG_Branch_Of_Dead_Tree,1383,Explosion,71428 +MOBG_Branch_Of_Dead_Tree,1384,Deleter,71428 +MOBG_Branch_Of_Dead_Tree,1385,Deleter,71428 +MOBG_Branch_Of_Dead_Tree,1386,Sleeper,71428 +MOBG_Branch_Of_Dead_Tree,1387,Gig,71428 +MOBG_Branch_Of_Dead_Tree,1390,Violy,71428 +MOBG_Branch_Of_Dead_Tree,1391,Galapago,71428 +MOBG_Branch_Of_Dead_Tree,1392,Rotar Zairo,214285 +MOBG_Branch_Of_Dead_Tree,1400,Karakasa,214285 +MOBG_Branch_Of_Dead_Tree,1401,Shinobi,71428 +MOBG_Branch_Of_Dead_Tree,1402,Poison Toad,71428 +MOBG_Branch_Of_Dead_Tree,1403,Firelock Soldier,71428 +MOBG_Branch_Of_Dead_Tree,1404,Miyabi Doll,214285 +MOBG_Branch_Of_Dead_Tree,1405,Tengu,71428 +MOBG_Branch_Of_Dead_Tree,1406,Kapha,71428 +MOBG_Branch_Of_Dead_Tree,1408,Bloody Butterfly,71428 +MOBG_Branch_Of_Dead_Tree,1409,Dumpling Child,214285 +MOBG_Branch_Of_Dead_Tree,1410,Enchanted Peach Tree,71428 +MOBG_Branch_Of_Dead_Tree,1412,Taoist Hermit,71428 +MOBG_Branch_Of_Dead_Tree,1413,Hermit Plant,71428 +MOBG_Branch_Of_Dead_Tree,1415,Baby Leopard,214285 +MOBG_Branch_Of_Dead_Tree,1416,Evil Nymph,71428 +MOBG_Branch_Of_Dead_Tree,1417,Zipper Bear,214285 +MOBG_Branch_Of_Dead_Tree,1493,Dryad,71428 +MOBG_Branch_Of_Dead_Tree,1494,Beetle King,214285 +MOBG_Branch_Of_Dead_Tree,1495,Stone Shooter,71428 +MOBG_Branch_Of_Dead_Tree,1497,Wooden Golem,71428 +MOBG_Branch_Of_Dead_Tree,1498,Wootan Shooter,214285 +MOBG_Branch_Of_Dead_Tree,1499,Wootan Fighter,71428 +MOBG_Branch_Of_Dead_Tree,1500,Parasite,214285 +MOBG_Branch_Of_Dead_Tree,1503,Gibbet,71428 +MOBG_Branch_Of_Dead_Tree,1504,Dullahan,71428 +MOBG_Branch_Of_Dead_Tree,1505,Loli Ruri,71428 +MOBG_Branch_Of_Dead_Tree,1506,Disguise,71428 +MOBG_Branch_Of_Dead_Tree,1507,Bloody Murderer,71428 +MOBG_Branch_Of_Dead_Tree,1508,Quve,214285 +MOBG_Branch_Of_Dead_Tree,1509,Lude,214285 +MOBG_Branch_Of_Dead_Tree,1510,Heirozoist,71428 +MOBG_Branch_Of_Dead_Tree,1512,Yao Jun,71428 +MOBG_Branch_Of_Dead_Tree,1513,Mao Guai,71428 +MOBG_Branch_Of_Dead_Tree,1514,Zhu Po Long,71428 +MOBG_Branch_Of_Dead_Tree,1515,Baby Hatii,71428 +MOBG_Branch_Of_Dead_Tree,1516,Mi Gao,71428 +MOBG_Branch_Of_Dead_Tree,1517,Jing Guai,71428 +MOBG_Branch_Of_Dead_Tree,1519,Green Maiden,71428 +MOBG_Branch_Of_Dead_Tree,1520,Boiled Rice,71428 +MOBG_Branch_Of_Dead_Tree,1582,Deviling,71428 +MOBG_Branch_Of_Dead_Tree,1584,Tamruan,71428 +MOBG_Branch_Of_Dead_Tree,1586,Leaf Cat,71428 +MOBG_Branch_Of_Dead_Tree,1587,Kraben,71428 +MOBG_Branch_Of_Dead_Tree,1613,Metaling,71428 +MOBG_Branch_Of_Dead_Tree,1614,Mineral,71428 +MOBG_Branch_Of_Dead_Tree,1615,Obsidian,71428 +MOBG_Branch_Of_Dead_Tree,1616,Pitman,71428 +MOBG_Branch_Of_Dead_Tree,1617,Old Stove,71428 +MOBG_Branch_Of_Dead_Tree,1618,Ungoliant,71428 +MOBG_Branch_Of_Dead_Tree,1619,Porcellio,71428 +MOBG_Branch_Of_Dead_Tree,1620,Noxious,71428 +MOBG_Branch_Of_Dead_Tree,1621,Venomous,71428 +MOBG_Branch_Of_Dead_Tree,1622,Teddy Bear,71428 +MOBG_Branch_Of_Dead_Tree,1627,Anopheles,71428 +MOBG_Branch_Of_Dead_Tree,1628,Holden,71428 +MOBG_Branch_Of_Dead_Tree,1629,Hill Wind,71428 +MOBG_Branch_Of_Dead_Tree,1631,Green Maiden,71428 +MOBG_Branch_Of_Dead_Tree,1632,Gremlin,71428 +MOBG_Branch_Of_Dead_Tree,1633,Beholder,71428 +MOBG_Branch_Of_Dead_Tree,1634,Seyren Windsor,71428 +MOBG_Branch_Of_Dead_Tree,1635,Eremes Guile,71428 +MOBG_Branch_Of_Dead_Tree,1636,Howard Alt-Eisen,71428 +MOBG_Branch_Of_Dead_Tree,1637,Margaretha Sorin,71428 +MOBG_Branch_Of_Dead_Tree,1638,Cecil Damon,71428 +MOBG_Branch_Of_Dead_Tree,1639,Kathryne Keyron,71428 +MOBG_Branch_Of_Dead_Tree,1652,Egnigem Cenia,71428 +MOBG_Branch_Of_Dead_Tree,1653,Wickebine Tres,71428 +MOBG_Branch_Of_Dead_Tree,1654,Armeyer Dinze,71428 +MOBG_Branch_Of_Dead_Tree,1655,Errende Ebecee,71428 +MOBG_Branch_Of_Dead_Tree,1656,Kavach Icarus,71428 +MOBG_Branch_Of_Dead_Tree,1657,Laurell Weinder,71428 +MOBG_Branch_Of_Dead_Tree,1664,Photon Cannon,71428 +MOBG_Branch_Of_Dead_Tree,1665,Photon Cannon,71428 +MOBG_Branch_Of_Dead_Tree,1666,Photon Cannon,71428 +MOBG_Branch_Of_Dead_Tree,1667,Photon Cannon,71428 +MOBG_Branch_Of_Dead_Tree,1668,Archdam,71428 +MOBG_Branch_Of_Dead_Tree,1669,Dimik,71428 +MOBG_Branch_Of_Dead_Tree,1670,Dimik,71428 +MOBG_Branch_Of_Dead_Tree,1671,Dimik,71428 +MOBG_Branch_Of_Dead_Tree,1672,Dimik,71428 +MOBG_Branch_Of_Dead_Tree,1673,Dimik,71428 +MOBG_Branch_Of_Dead_Tree,1675,Venatu,71428 +MOBG_Branch_Of_Dead_Tree,1676,Venatu,71428 +MOBG_Branch_Of_Dead_Tree,1677,Venatu,71428 +MOBG_Branch_Of_Dead_Tree,1678,Venatu,71428 +MOBG_Branch_Of_Dead_Tree,1679,Venatu,71428 +MOBG_Branch_Of_Dead_Tree,1680,Hill Wind,71428 +MOBG_Branch_Of_Dead_Tree,1681,Gemini-S58,71428 +MOBG_Branch_Of_Dead_Tree,1682,Remover,71428 +MOBG_Branch_Of_Dead_Tree,1686,Orc Baby,71428 +MOBG_Branch_Of_Dead_Tree,1687,Grove,71428 +MOBG_Branch_Of_Dead_Tree,1692,Breeze,71428 +MOBG_Branch_Of_Dead_Tree,1693,Plasma,71428 +MOBG_Branch_Of_Dead_Tree,1694,Plasma,71428 +MOBG_Branch_Of_Dead_Tree,1695,Plasma,71428 +MOBG_Branch_Of_Dead_Tree,1696,Plasma,71428 +MOBG_Branch_Of_Dead_Tree,1699,Ancient Mimic,71428 +MOBG_Branch_Of_Dead_Tree,1703,Lady Solace,71428 +MOBG_Branch_Of_Dead_Tree,1704,Odium of Thanatos,71428 +MOBG_Branch_Of_Dead_Tree,1705,Despero of Thanatos,71428 +MOBG_Branch_Of_Dead_Tree,1706,Maero of Thanatos,71428 +MOBG_Branch_Of_Dead_Tree,1707,Dolor of Thanatos,71428 +MOBG_Branch_Of_Dead_Tree,1713,Acidus,71428 +MOBG_Branch_Of_Dead_Tree,1714,Ferus,71428 +MOBG_Branch_Of_Dead_Tree,1715,Novus,71428 +MOBG_Branch_Of_Dead_Tree,1717,Ferus,71428 +MOBG_Branch_Of_Dead_Tree,1718,Novus,71428 +MOBG_Branch_Of_Dead_Tree,1720,Hydrolancer,71428 +MOBG_Branch_Of_Dead_Tree,1721,Dragon Egg,71428 +MOBG_Branch_Of_Dead_Tree,1736,Aliot,71428 +MOBG_Branch_Of_Dead_Tree,1737,Aliza,71428 +MOBG_Branch_Of_Dead_Tree,1738,Constant,71428 +MOBG_Branch_Of_Dead_Tree,1752,Skogul,71428 +MOBG_Branch_Of_Dead_Tree,1753,Frus,71428 +MOBG_Branch_Of_Dead_Tree,1754,Skeggiold,71428 +MOBG_Branch_Of_Dead_Tree,1755,Skeggiold,71428 +MOBG_Branch_Of_Dead_Tree,1769,Agav,71428 +MOBG_Branch_Of_Dead_Tree,1770,Echio,71428 +MOBG_Branch_Of_Dead_Tree,1771,Vanberk,71428 +MOBG_Branch_Of_Dead_Tree,1772,Isilla,71428 +MOBG_Branch_Of_Dead_Tree,1773,Hodremlin,71428 +MOBG_Branch_Of_Dead_Tree,1774,Seeker,71428 +MOBG_Branch_Of_Dead_Tree,1775,Snowier,71428 +MOBG_Branch_Of_Dead_Tree,1776,Siroma,71428 +MOBG_Branch_Of_Dead_Tree,1777,Ice Titan,71428 +MOBG_Branch_Of_Dead_Tree,1778,Gazeti,71428 +MOBG_Branch_Of_Dead_Tree,1780,Muscipular,71428 +MOBG_Branch_Of_Dead_Tree,1781,Drosera,71428 +MOBG_Branch_Of_Dead_Tree,1782,Roween,71428 +MOBG_Branch_Of_Dead_Tree,1783,Galion,71428 +MOBG_Branch_Of_Dead_Tree,1784,Stapo,142857 +MOBG_Branch_Of_Dead_Tree,1789,Iceicle,71428 +MOBG_Branch_Of_Dead_Tree,1796,Aunoe,142857 +MOBG_Branch_Of_Dead_Tree,1797,Fanat,142857 +MOBG_Branch_Of_Dead_Tree,1829,Sword Guardian,71428 +MOBG_Branch_Of_Dead_Tree,1830,Bow Guardian,71428 +MOBG_Branch_Of_Dead_Tree,1831,Salamander,71428 +MOBG_Branch_Of_Dead_Tree,1833,Kasa,71428 +MOBG_Branch_Of_Dead_Tree,1836,Magmaring,214285 +MOBG_Branch_Of_Dead_Tree,1837,Imp,71428 +MOBG_Branch_Of_Dead_Tree,1838,Knocker,71428 +MOBG_Branch_Of_Dead_Tree,1839,Byrogue,71428 +MOBG_Branch_Of_Dead_Tree,1864,Zombie Slaughter,71428 +MOBG_Branch_Of_Dead_Tree,1865,Ragged Zombie,71428 +MOBG_Branch_Of_Dead_Tree,1866,Hellhound,71428 +MOBG_Branch_Of_Dead_Tree,1867,Banshee,71428 +MOBG_Branch_Of_Dead_Tree,1869,Flame Skull,71428 +MOBG_Branch_Of_Dead_Tree,1870,Necromancer,71428 +MOBG_Branch_Of_Dead_Tree,1872,Hell Fly,71428 +MOBG_Branch_Of_Dead_Tree,1880,Wood Goblin,71428 +MOBG_Branch_Of_Dead_Tree,1881,Les,71428 +MOBG_Branch_Of_Dead_Tree,1882,Baba-Yaga,71428 +MOBG_Branch_Of_Dead_Tree,1883,Uzhas,71428 +MOBG_Branch_Of_Dead_Tree,1884,Mavka,71428 +MOBG_Branch_Of_Dead_Tree,1918,Incarnation of Morroc,71428 +MOBG_Branch_Of_Dead_Tree,1919,Incarnation of Morroc,71428 +MOBG_Branch_Of_Dead_Tree,1920,Incarnation of Morroc,71428 +MOBG_Branch_Of_Dead_Tree,1921,Incarnation of Morroc,71428 +MOBG_Branch_Of_Dead_Tree,1974,Banshee Master,71428 +MOBG_Branch_Of_Dead_Tree,1975,Beholder Master,71428 +MOBG_Branch_Of_Dead_Tree,1976,Cobalt Mineral,71428 +MOBG_Branch_Of_Dead_Tree,1977,Heavy Metaling,71428 +MOBG_Branch_Of_Dead_Tree,1978,Hell Vesper,71428 +MOBG_Branch_Of_Dead_Tree,1979,Zakudam,71428 +MOBG_Branch_Of_Dead_Tree,1986,Tatacho,71428 +MOBG_Branch_Of_Dead_Tree,1987,Centipede,71428 +MOBG_Branch_Of_Dead_Tree,1988,Nepenthes,71428 +MOBG_Branch_Of_Dead_Tree,1989,Hillthrion,71428 +MOBG_Branch_Of_Dead_Tree,1990,Hardrock Mammoth,71428 +MOBG_Branch_Of_Dead_Tree,1991,Tendrillion,71428 +MOBG_Branch_Of_Dead_Tree,1992,Cornus,71428 +MOBG_Branch_Of_Dead_Tree,1993,Naga,71428 +MOBG_Branch_Of_Dead_Tree,1994,Luciola Vespa,71428 +MOBG_Branch_Of_Dead_Tree,1995,Pinguicula,71428 +MOBG_Branch_Of_Dead_Tree,1999,Centipede Larva,71428 +MOBG_Branch_Of_Dead_Tree,2013,Draco,71428 +MOBG_Branch_Of_Dead_Tree,2015,Dark Pinguicula,71428 +MOBG_Branch_Of_Dead_Tree,2016,Aqua Elemental,71428 +MOBG_Branch_Of_Dead_Tree,2017,Rata,71428 +MOBG_Branch_Of_Dead_Tree,2018,Duneyrr,71428 +MOBG_Branch_Of_Dead_Tree,2019,Ancient Tree,71428 +MOBG_Branch_Of_Dead_Tree,2020,Rhyncho,71428 +MOBG_Branch_Of_Dead_Tree,2021,Phylla,71428 +MOBG_Branch_Of_Dead_Tree,2023,Dark Shadow,71428 +MOBG_Branch_Of_Dead_Tree,2024,Bradium Golem,71428 +MOBG_Branch_Of_Dead_Tree,2069,Iara,71428 +MOBG_Branch_Of_Dead_Tree,2070,Piranha,71428 +MOBG_Branch_Of_Dead_Tree,2071,Headless Mule,71428 +MOBG_Branch_Of_Dead_Tree,2072,Jaguar,71428 +MOBG_Branch_Of_Dead_Tree,2073,Toucan,71428 +MOBG_Branch_Of_Dead_Tree,2074,Curupira,71428 +MOBG_Branch_Of_Dead_Tree,2083,One-Horned Scaraba,71428 +MOBG_Branch_Of_Dead_Tree,2084,Two-Horned Scaraba,71428 +MOBG_Branch_Of_Dead_Tree,2085,Antler Scaraba,71428 +MOBG_Branch_Of_Dead_Tree,2086,Rake Scaraba,71428 +MOBG_Branch_Of_Dead_Tree,2088,Scaraba Egg,71428 +MOBG_Branch_Of_Dead_Tree,2089,Scaraba Egg,71428 +MOBG_Branch_Of_Dead_Tree,2090,Antler Scaraba Egg,71428 +MOBG_Branch_Of_Dead_Tree,2091,Rake Scaraba Egg,71428 +MOBG_Branch_Of_Dead_Tree,2092,Dolomedes,71428 +MOBG_Branch_Of_Dead_Tree,2093,Botaring,142857 diff --git a/db/re/mob_db.txt b/db/re/mob_db.txt index 90ebf0262f..e6c0d0e6e6 100644 --- a/db/re/mob_db.txt +++ b/db/re/mob_db.txt @@ -677,12 +677,12 @@ 1632,GREMLIN,Gremlin,Gremlin,118,20313,1,3091,2318,1,606,744,76,25,141,75,48,61,90,37,10,12,2,6,47,0x191,140,432,540,432,0,0,0,0,0,0,0,7340,3000,938,3000,719,100,2406,1,1265,1,0,0,603,2,0,0,0,0,4355,1 1633,BEHOLDER,Beholder,Beholder,120,19280,1,3285,2463,6,588,718,50,30,96,82,65,107,94,82,10,12,0,0,44,0x91,190,336,840,360,0,0,0,0,0,0,0,576,3000,605,100,996,100,985,10,0,0,0,0,603,2,0,0,0,0,4356,1 // Normal advanced class mobs -1634,SEYREN,Seyren,Seyren Windsor,142,194962,1,10386,7790,1,1670,1987,166,12,142,69,86,49,132,55,10,12,1,6,63,0x3195,170,76,384,288,0,0,0,0,0,0,0,7345,3000,13001,2,1163,200,6223,10,2229,12,2317,1,13421,100,0,0,0,0,4358,1 -1635,EREMES,Eremes,Eremes Guile,140,190525,1,10329,6846,1,1503,1674,122,12,145,87,59,67,127,76,10,12,1,6,85,0x3195,180,76,384,288,0,0,0,0,0,0,0,7347,2000,6223,1,2514,1,1262,3,1264,30,678,110,1284,100,0,0,0,0,4360,1 -1636,HARWORD,Harword,Howard Alt-Eisen,142,348100,1,10854,7241,1,1308,1590,131,10,138,79,62,53,82,48,10,12,1,7,81,0x3095,180,76,384,288,0,0,0,0,0,0,0,7345,3000,2514,1,1311,100,1361,110,2104,10,2318,1,6223,10,0,0,0,0,4362,1 -1637,MAGALETA,Magaleta,Margaretha Sorin,140,220800,1,9895,7421,1,851,1405,108,93,126,74,71,123,99,65,10,12,1,7,66,0x3295,180,1152,384,288,0,0,0,0,0,0,0,7347,2000,1647,100,6223,1,1561,10,2327,1,603,50,2504,10,0,0,0,0,4364,1 -1638,SHECIL,Shecil,Cecil Damon,141,190255,1,10103,7577,14,1158,1406,76,15,121,126,67,80,165,42,10,12,1,7,64,0x3095,180,76,384,288,0,0,0,0,0,0,0,7345,3000,12014,110,2331,10,1711,100,12007,150,6223,1,1745,100,0,0,0,0,4368,1 -1639,KATRINN,Katrinn,Kathryne Keyron,141,219780,1,9207,6905,1,726,1449,77,74,108,78,55,144,139,49,10,12,1,7,68,0x3295,150,1152,384,288,0,0,0,0,0,0,0,7345,3000,6223,1,1646,100,1620,5,2102,30,5085,1,2404,20,0,0,0,0,4366,1 +1634,SEYREN,Seyren,Seyren Windsor,142,194962,1,10386,7790,1,1670,1987,166,12,142,69,86,49,132,55,10,12,1,6,63,0x3195,170,76,384,288,0,0,0,0,0,0,0,7345,1500,13030,1,12623,5,6223,1,6471,1,6469,200,13421,100,0,0,0,0,4358,1 +1635,EREMES,Eremes,Eremes Guile,140,190525,1,10329,6846,1,1503,1674,122,12,145,87,59,67,127,76,10,12,1,6,85,0x3195,180,76,384,288,0,0,0,0,0,0,0,7347,2000,6223,1,2514,1,1262,3,1264,30,6471,2,1284,100,0,0,0,0,4360,1 +1636,HARWORD,Harword,Howard Alt-Eisen,142,348100,1,10854,7241,1,1308,1590,131,10,138,79,62,53,82,48,10,12,1,7,81,0x3095,180,76,384,288,0,0,0,0,0,0,0,7345,3000,6471,1,1311,200,12818,55,6469,100,2318,1,6223,10,0,0,0,0,4362,1 +1637,MAGALETA,Magaleta,Margaretha Sorin,140,220800,1,9895,7421,1,851,1405,108,93,126,74,71,123,99,65,10,12,1,7,66,0x3295,180,1152,384,288,0,0,0,0,0,0,0,7347,1000,1647,200,6471,1,1561,5,2162,5,1659,10,6469,200,0,0,0,0,4364,1 +1638,SHECIL,Shecil,Cecil Damon,141,190255,1,10103,7577,14,1158,1406,76,15,121,126,67,80,165,42,10,12,1,7,64,0x3095,180,76,384,288,0,0,0,0,0,0,0,7345,1500,12014,55,18110,10,12623,3,6469,200,6471,1,1745,200,0,0,0,0,4368,1 +1639,KATRINN,Katrinn,Kathryne Keyron,141,219780,1,9207,6905,1,726,1449,77,74,108,78,55,144,139,49,10,12,1,7,68,0x3295,150,1152,384,288,0,0,0,0,0,0,0,7345,1500,6223,1,1646,200,12623,5,6469,200,5085,1,6471,20,0,0,0,0,4366,1 // MVP Slaves 1640,G_SEYREN,Lord Knight Seyren,Lord Knight Seyren,160,2680000,1,0,0,1,4290,6632,567,155,303,165,181,110,178,66,10,12,1,7,83,0x37B5,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6223,100,0,0,0,0,617,10 1641,G_EREMES,Assassin Cross Eremes,Assassin Cross Eremes,160,1230000,1,0,0,1,4055,5433,445,98,211,181,114,83,225,60,10,12,1,7,85,0x37B5,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6223,100,0,0,0,0,617,10 @@ -691,12 +691,12 @@ 1644,G_SHECIL,Sniper Shecil,Sniper Cecil,160,4140000,1,0,0,14,2770,4320,178,135,176,258,155,132,309,95,10,12,1,7,84,0x37B5,100,76,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6223,100,0,0,0,0,617,10 1645,G_KATRINN,High Wizard Katrinn,High Wizard Kathryne,160,4500000,1,0,0,1,1398,6652,215,456,165,190,142,236,199,93,10,12,1,7,68,0x37B5,150,1152,384,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6223,100,0,0,0,0,617,10 // MVP Monsters -1646,B_SEYREN,Lord Knight Seyren,Lord Knight Seyren,160,4680000,1,4642560,3481920,1,4290,6632,567,155,303,165,181,110,178,66,10,12,1,7,83,0x37B5,100,76,384,288,2321280,617,5500,603,5000,732,2000,1132,2500,2342,3500,2412,9000,1470,3500,1469,3000,1166,2500,1415,1500,0,0,0,0,4357,1 -1647,B_EREMES,Assassin Cross Eremes,Assassin Cross Eremes,160,4230000,1,4185000,3147120,1,4055,5433,445,98,211,181,114,83,225,60,10,12,1,7,85,0x37B5,100,76,384,288,2092500,617,5500,603,5000,732,2000,1234,1500,1230,1500,2319,9000,1233,3500,1232,3500,1265,3500,13002,3500,0,0,0,0,4359,1 -1648,B_HARWORD,Whitesmith Harword,Whitesmith Howard,160,6750000,1,3555000,2664000,1,3500,4965,301,106,275,148,156,72,177,60,10,12,1,7,82,0x37B5,100,76,384,288,1777500,617,5500,603,5000,732,2000,1138,3500,1140,2500,2318,9000,1365,3500,1364,3500,1369,2500,1368,3500,0,0,0,0,4361,1 -1649,B_MAGALETA,High Priest Magaleta,High Priest Margaretha,160,4800000,1,3465000,2520000,1,1666,5062,231,349,172,150,164,203,155,88,10,12,1,7,86,0x37B5,125,1152,384,288,1732500,617,5500,603,5000,732,2000,1814,3500,2615,2500,2513,9000,1557,3500,1527,3500,1528,2500,1560,3500,0,0,0,0,4363,1 -1650,B_SHECIL,Sniper Shecil,Sniper Cecil,160,4140000,1,4106880,3080160,14,2770,4320,178,135,176,258,155,132,309,95,10,12,1,7,84,0x37B5,100,76,384,288,2053440,617,5500,603,5000,1723,2000,1228,3500,1236,3500,617,9000,1234,1500,1237,3500,1720,1500,1724,2500,0,0,0,0,4367,1 -1651,B_KATRINN,High Wizard Katrinn,High Wizard Kathryne,160,4500000,1,3240000,2430000,1,1398,6652,215,456,165,190,142,236,199,93,10,12,1,7,68,0x37B5,150,1152,384,288,1620000,617,5500,603,5000,732,2000,1241,3500,1242,3500,2616,9000,2343,2500,2513,2500,1618,3000,2319,3500,0,0,0,0,4365,1 +1646,B_SEYREN,Lord Knight Seyren,Lord Knight Seyren,160,4680000,1,4642560,3481920,1,4290,6632,567,155,303,165,181,110,178,66,10,12,1,7,83,0x37B5,100,76,384,288,2321280,617,5500,603,5000,732,2000,1132,2500,6471,10000,2412,9000,1470,3500,1469,3000,1166,2500,1415,1500,0,0,0,0,4357,1 +1647,B_EREMES,Assassin Cross Eremes,Assassin Cross Eremes,160,4230000,1,4185000,3147120,1,4055,5433,445,98,211,181,114,83,225,60,10,12,1,7,85,0x37B5,100,76,384,288,2092500,617,5500,603,5000,732,2000,1234,1500,1230,1500,2319,9000,1233,3500,1232,3500,6471,10000,12623,10000,0,0,0,0,4359,1 +1648,B_HARWORD,Whitesmith Harword,Whitesmith Howard,160,6750000,1,3555000,2664000,1,3500,4965,301,106,275,148,156,72,177,60,10,12,1,7,82,0x37B5,100,76,384,288,1777500,617,5500,603,5000,732,2000,1138,3500,1140,2500,6471,10000,1365,3500,12623,10000,1369,2500,1368,3500,0,0,0,0,4361,1 +1649,B_MAGALETA,High Priest Magaleta,High Priest Margaretha,160,4800000,1,3465000,2520000,1,1666,5062,231,349,172,150,164,203,155,88,10,12,1,7,86,0x37B5,125,1152,384,288,1732500,617,5500,603,5000,732,2000,1814,3500,2615,2500,2513,9000,12623,10000,1527,3500,1528,2500,6471,10000,0,0,0,0,4363,1 +1650,B_SHECIL,Sniper Shecil,Sniper Cecil,160,4140000,1,4106880,3080160,14,2770,4320,178,135,176,258,155,132,309,95,10,12,1,7,84,0x37B5,100,76,384,288,2053440,617,5500,603,5000,1723,2000,1228,3500,6471,10000,617,9000,12623,10000,1237,3500,1720,1500,1724,2500,0,0,0,0,4367,1 +1651,B_KATRINN,High Wizard Katrinn,High Wizard Kathryne,160,4500000,1,3240000,2430000,1,1398,6652,215,456,165,190,142,236,199,93,10,12,1,7,68,0x37B5,150,1152,384,288,1620000,617,5500,603,5000,732,2000,1241,3500,1242,3500,6471,10000,2616,9000,2343,2500,6471,2000,12623,10000,2319,3500,0,0,4365,1 // 1'st Class Mobs 1652,YGNIZEM,Ygnizem,Egnigem Cenia,136,44327,1,5229,4461,1,790,1018,124,8,144,92,86,69,99,68,10,12,1,7,43,0x3885,145,576,432,288,0,0,0,0,0,0,0,7347,1000,1170,1,1158,20,1127,20,2313,10,1152,80,2317,1,0,0,0,0,4346,1 1653,WHIKEBAIN,Whikebain,Wickebine Tres,132,43191,1,5094,4721,1,876,1020,114,66,114,91,69,42,85,55,10,12,1,7,65,0x3885,120,576,432,288,0,0,0,0,0,0,0,7345,2000,1223,1,2306,40,1220,10,2315,2,2620,1,13004,10,0,0,0,0,4348,1 diff --git a/db/re/mob_poring.txt b/db/re/mob_poring.txt index 7435ea4134..4e14184a7c 100644 --- a/db/re/mob_poring.txt +++ b/db/re/mob_poring.txt @@ -1,19 +1,19 @@ // Poring Box Summonable Monsters Database // // Structure of Database: -// MobID,DummyName,Rate +// MobRandomGroupID,MobID,DummyName,Rate -0,Poring,1002 -1002,Poring,1000000 -1031,Poporing,1000000 -1062,Santa Poring,200000 -1090,Mastering,400000 -1096,Angeling,200000 -1113,Drops,1000000 -1120,Ghostring,200000 -1242,Marin,1000000 -1388,Arc Angeling,200000 -1582,Deviling,200000 -1613,Metaling,1000000 -1784,Stapo,1000000 -2093,Botaring,400000 +MOBG_Poring_Box,0,Poring,1002 +MOBG_Poring_Box,1002,Poring,1000000 +MOBG_Poring_Box,1031,Poporing,1000000 +MOBG_Poring_Box,1062,Santa Poring,200000 +MOBG_Poring_Box,1090,Mastering,400000 +MOBG_Poring_Box,1096,Angeling,200000 +MOBG_Poring_Box,1113,Drops,1000000 +MOBG_Poring_Box,1120,Ghostring,200000 +MOBG_Poring_Box,1242,Marin,1000000 +MOBG_Poring_Box,1388,Arc Angeling,200000 +MOBG_Poring_Box,1582,Deviling,200000 +MOBG_Poring_Box,1613,Metaling,1000000 +MOBG_Poring_Box,1784,Stapo,1000000 +MOBG_Poring_Box,2093,Botaring,400000 diff --git a/db/re/mob_random_db.txt b/db/re/mob_random_db.txt new file mode 100644 index 0000000000..35692adf1e --- /dev/null +++ b/db/re/mob_random_db.txt @@ -0,0 +1,5 @@ +import: db/re/mob_branch.txt +import: db/re/mob_poring.txt +import: db/re/mob_boss.txt +import: db/mob_pouch.txt +import: db/mob_classchange.txt diff --git a/db/re/pet_db.txt b/db/re/pet_db.txt index abf4a2191c..49f5ae62dd 100644 --- a/db/re/pet_db.txt +++ b/db/re/pet_db.txt @@ -78,8 +78,8 @@ 1148,MEDUSA,Medusa,12368,9050,10032,6108,80,60,10,100,250,20,200,150,0,0,300,300,800,{},{ bonus bVit,1; bonus2 bResEff,Eff_Stone,500; } 1179,WHISPER,Whisper,12363,9045,10027,6100,80,60,20,100,250,20,500,150,0,0,300,300,800,{},{ bonus bFlee,7; bonus bDef,-3; } 1299,GOBLIN_LEADER,Goblin Leader,12364,9046,10028,6104,80,60,10,100,250,20,50,150,0,0,300,300,800,{},{ bonus2 bAddRace,RC_DemiHuman,3; } -1370,SUCCUBUS,Succubus,12373,9055,10037,6113,80,60,10,100,250,20,200,150,0,0,300,300,800,{ /*bonus3 bHPDrainRate,10,5,0;*/ },{ /*bonus3 bHPDrainRate,30,5,0;*/ bonus bMaxHPrate,1; } -1374,INCUBUS,Incubus,12370,9052,10034,6110,80,60,10,100,250,20,50,150,0,0,300,300,800,{ bonus bMaxSPRate,3; bonus3 bSPDrainRate,10,1,0; },{ bonus bMaxSPRate,5; bonus3 bSPDrainRate,30,1,0; } +1370,SUCCUBUS,Succubus,12373,9055,10037,6113,80,60,10,100,250,20,200,150,0,0,300,300,800,{ bonus2 bHPDrainRate,10,5; },{ bonus2 bHPDrainRate,30,5; bonus bMaxHPrate,1; } +1374,INCUBUS,Incubus,12370,9052,10034,6110,80,60,10,100,250,20,50,150,0,0,300,300,800,{ bonus bMaxSPRate,3; bonus2 bSPDrainRate,10,1; },{ bonus bMaxSPRate,5; bonus2 bSPDrainRate,30,1; } 1379,NIGHTMARE_TERROR,Nightmare Terror,12372,9054,10036,6112,80,60,10,100,250,20,200,150,0,0,300,300,800,{},{ bonus2 bResEff,Eff_Sleep,10000; } 1401,SHINOBI,Shinobi,12362,9044,10026,6099,80,60,20,100,250,20,500,150,0,0,300,300,800,{},{ bonus bAgi,2; } 1404,MIYABI_NINGYO,Miyabi Doll,12366,9048,10030,6106,80,60,15,100,250,20,200,150,0,0,300,300,800,{},{ bonus bInt,1; bonus bCastrate,-3; } diff --git a/db/re/quest_db.txt b/db/re/quest_db.txt new file mode 100644 index 0000000000..d5437612a0 --- /dev/null +++ b/db/re/quest_db.txt @@ -0,0 +1,3132 @@ +// Quest Database +// +// Structure of Database: +// Quest ID,Time Limit,Target1,Val1,Target2,Val2,Target3,Val3,MobID1,NameID1,Rate1,MobID2,NameID2,Rate2,MobID3,NameID3,Rate3,Quest Title +// +// The MobID*, NameID*, and Rate* reflect special values for quests that can drop an item at given rate from given mob. +// If no MobID* is given, then any mob has a chance to drop the given ItemID*. + +1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Transcend" +1001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Acolyte" +1002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Acolyte" +1003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Acolyte" +1004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Archer" +1005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Mage" +1006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Mage" +1007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Mage" +1008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Mage" +1009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Merchant" +1010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Merchant" +1011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Merchant" +1012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Merchant" +1013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Thief" +1014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Swordman" +1015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Your first quest" +1016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaining base levels" + +// 2010 Headgear Quests +1100,0,1178,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo in the Sphinx Dungeon!" +1101,0,1164,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soloing Sphinx Dungeon!" +1102,0,1194,40,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soloing Clock Tower!" +1103,0,1213,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soloing Clock Tower!" +1104,0,1519,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Louyang!" +1105,0,1513,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Louyang!" +1106,0,1375,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Amatsu Dungeon!" +1107,0,1403,40,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Amatsu Dungeon!" +1108,0,1631,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solo at Louyang!" + +// Ropewa & Yuridi Quest +1109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Survivors of the Labyrinth" +1110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Victims of the Labyrinth" +1111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Maze in the Labyrinth" +1112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Lost in the Labyrinth" +1113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Torn Apart" +1114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - The Cost of Restoration" +1115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Song of the Abyss" +1116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Dead Man's Song" +1117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ropewa & Yuridi - Eternal Promise, Broken Ring" +1118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Neighborhood Knight - I Need Clues" +1119,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Neighborhood Knight - Cooldown" + +1145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1152,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1154,0,2197,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the poor cat" +1174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend" +1175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend" +1176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend" +1177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend" +1178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend" +1179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rumor, Time and Legend" +1180,0,0,0,0,0,0,0,2314,6520,3000,0,0,0,0,0,0,"Get Rid of Bakonawa" +1181,0,0,0,0,0,0,0,2314,6520,3000,0,0,0,0,0,0,"Get Rid of Bakonawa" +1182,0,0,0,0,0,0,0,2314,6520,3000,0,0,0,0,0,0,"Get Rid of Bakonawa" +1183,0,0,0,0,0,0,0,2314,6520,3000,0,0,0,0,0,0,"Get Rid of Bakonawa" +1184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1186,0,2313,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" +1193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" + +// 2011 X-Mas Event +1194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" +1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Look out the window, Cheers for Raccoon Hurray team!" + +// Find Professor Worm's Memory +1214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1216,0,0,0,0,0,0,0,2364,6522,3000,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1225,0,2367,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1227,0,0,0,0,0,0,0,2364,6522,3000,0,0,0,0,0,0,"Getting back Professor Worm's memory" +1228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting back Professor Worm's memory" + +2000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Blacksmith" +2017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Rogue" +2028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Alchemist" +2041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Sage" +2063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 1" +2064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 2" +2065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 3" +2066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 4" +2067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 5" +2068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 6" +2069,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tierra Gorge Battle" +2070,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flavius Battle" +2071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property" +2072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property" +2073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property" +2074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property" +2075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property" +2076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property" +2077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property" +2078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cursed Property" +2079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong" +2080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong" +2081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong" +2082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong" +2083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong" +2084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong" +2085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The past went wrong" +2086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Enterprise" +2109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon" +2110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon" +2111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon" +2112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon" +2113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon" +2114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thor Volcano base camp" +2132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Arunafeltz" +2143,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guild Dungeon Event" +2144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guild Dungeon Event" + +2147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2150,0,1995,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2151,0,1992,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2157,0,1986,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Attitude to the New" +2158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding a Fairy" +2159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding a Tree Giant" +2179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dr. Lifeguard's request" +2180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dr. Lifeguard's request" +2181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dr. Lifeguard's request" +2182,64800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rough Minerals" +2183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flower of Alfheim" +2184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flower of Alfheim" +2185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spirit of Alfheim" +2186,64800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helping Grenouille" + +2187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest" +2188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest" +2189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest" +2190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest" +2191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arch Bishop job changing quest" + +2192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarana quest" +2201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily" +2202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily" +2203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily" +2204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily" +2205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily" +2206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily" +2207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brasilis Water Lily" +2208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost" + +2209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" +2218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest" +2219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest" +2220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest" +2221,600,1718,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest" +2222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanderer Job Change Quest" +2223,0,1428,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Generic Job Change Quest" + +// Secret in the Woods +2271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret in the Woods" +2281,0,2319,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Buwaya" + +// Pyramid (Nightmare) +2289,0,2355,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Verit Hunting (Nightmare)" +2290,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Verit Hunting - Cooldown" +2291,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mummy Hunting - Cooldown" +2292,0,2360,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mummy Hunting (Nightmare)" + +// New Novice Ground +2299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training Center: Talk to Lisa" +2300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training Center: Talk to General Reindeer" +2301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training Center: Leave the boat" +2302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training Center: Formation" + +//2315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" + +3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard" +3001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard" +3002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard" +3003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard" +3004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Bard" +3006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Crusader" +3016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk - Marathon" +3029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk - Final test" +//3030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk" +3031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk - Spiritual Training" +3032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Monk - Become a Monk" +3040,43200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Curse of Baphomet" +3041,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Curse of Baphomet" +3042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Cursed Baphomet Doll" +3043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Gigantic Magestic Goat" +3044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Gigantic Magestic Goat" +3045,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sealed Shrine" +3046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sealed Shrine After-effect" + +3050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 1" +3051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 2" +3052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 3" +3053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 4" +3054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 5" +3055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 6" +3056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 7" +3060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Where's the Little Sis?" +3061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Find a way to unlock the shackles!" +3062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Find the Locksmith!" +3063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Mr. Lockenlock?" +3064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Organic Chamelepu Soap" +3065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Soap Ingredients" +3066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - To make a Chamelepu Soap..." +3067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Camel Appetite Stimulants" +3068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Getting the Camel Dung" +3069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Where's the Silk Sand Camel?" +3070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Silk Sand Camel is gone!" +3071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Silk Sand Camel is found!" +3072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 1 lump of Camel dung obtained" +3073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 2 lumps of Camel dung obtained" +3074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 3 lumps of Camel dung obtained" +3075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 4 lumps of Camel dung obtained" +3076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - 5 lumps of Camel dung obtained" +3077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Go to Ms. Ivory" +3078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Chamalepu Soap is completed!" +3079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Making the key mold" +3080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Bringing the key mold" +3081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - All you need is Steel!" +3082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - The Key is Made!" +3083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kids in Veins - Mr. Lockenlock's key" +3085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Call from the commander" +3086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Commander's Duty" +3087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Rune Midgard" +3088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Accident!" +3089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - How to restore" +3090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Location of reports" +3091,1800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Location of reports" +3092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Success to restore!" +3093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Report to the continent" +3094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the continent - Return to the expedition" + +3100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Lost Bond of Debt" +3101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Strange Heap of Earth" +3102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Bond of Debt Found, but..." +3103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Inventor Dorian" +3104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repair Materials of Magic Dryer" +3105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer" +3106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer Failed" +3107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer Successful" +3108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Let's Run the Magic Dryer" +3109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Restoring the Bond of Debt" +3110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Tracking the Diamond" +3111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Leblo's Favor" +3112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor" +3113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor" +3114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor" +3115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Leblo's Information" +3116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Information from Rogue Investigator" +3117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Odd Switches" +3118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Diamond - Diamond Found!" +3119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Wanted Notice" +3120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - About Z Gang" +3121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Valdes's Favor" +3122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Information from Valdes" +3123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Marybell's Test" +3124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Challenging Moonho Ahn" +3125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Challenging Moonho Ahn" +3126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Information from Marybell" +3127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Z Gang's Attack" +3128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Z Gang's Attack" +3129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Strange Letter" +3130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Decrypting the letter..." +3131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Code's Broken!" +3132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Find the Z Gang's Agit" +3133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Agit Found!" +3134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z Gang Wanted - Clean Sweep of Z Gang" +3135,259200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nidhoggur's Nest" +3136,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nidhoggur's Nest Time Limit" + +3200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Recommendation for Rune knight" +3201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Secret rendezvous of Rune knight" +3202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The first test" +3203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The first test" +3204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the first test" +3205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" +3206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" +3207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" +3208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" +3209,0,1504,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy1" +3210,0,1506,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy2" +3211,0,1508,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy3" +3212,0,1510,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy4" +3213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" +3214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test" +3215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the second test" +3216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The final test" +3217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The final test" +3218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the final test" +3219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - The end of all test" +3220,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Rune knight - Waiting time of test" + +3250,0,1041,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - What is this bandage for?" +3251,0,1271,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - An alligator of Counterattack" +3252,0,1264,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - My mermaid don't do like this way!" +3253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Missing occult mania" +3254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A country wants you" +3255,0,1166,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A wild boar subjugate operation" +3256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Ready for waiting summer" +3257,0,1170,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A grudge of women" +3258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A material of delicacy" +3259,0,1143,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A agony of a doll master" +3260,0,1035,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Tiresome flies" +3261,0,1026,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Unclean girl" +3262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Queer hobby" +3263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - A mallet of goblin" +3265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Missing occult mania" + +4000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sherin's Job Interview" +4001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter - Test" +4012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" +4013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Hunter" + +// Following entries are depreciated - use 10000-10025 +//4015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Becoming an Adventurer Appraiser" +//4016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Proof of Qualification" +//4017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Qualification Test" +//4018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Preparations for Meeting Princes" +//4020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince" +//4021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince" +//4022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince" +//4023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince" +//4024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince" +//4025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince" +//4026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince" +//4027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interview with the Prince" +//4028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The prince, Peter's Favor" +//4029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Girl's Favor" +//4030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Story of Ahrum and Ernst" +//4031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Story of Ahrum and Ernst" +//4032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conspiracy of the two families" +//4033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Death of Ahrum" + +4133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Iara" +4134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Iara" +4135,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Iara" + +4154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus Researcher" +4155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 1" +4156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 2" +4157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 3" +4158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 4" +4159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 5" +4160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 6" + +4161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Siege Expert" +4162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Party Recruiting Expert" +4163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battleground Expert" +4164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memorial Dungeon Expert" +4165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Map Expert" +4166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Passing Grades" + +// Paradise 86 - 90 [Chilly] +4167,0,1321,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Dragon Tail Handling" +4168,0,1322,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Spring Rabbit Handling" +4169,0,1256,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Pest Handling" +4170,0,1102,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Bathory Handling" +4171,0,1193,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Alarm Handling" +4172,0,1882,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Babayaga Handling" +4173,0,1512,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Hyegun Handling" +4174,0,1403,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Antique Firelock Handling" +4175,0,1417,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Zipper Bear Handling" +4176,0,1155,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Earth Petite Handling" +4177,0,1162,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Rafflesia Handling" +4178,0,1621,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Venomous Handling" +4179,0,1616,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Pitman Handling" +4180,0,1718,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Yellow Novus Handling" + +// Paradise 91 - 99 [Chilly] +4181,0,1316,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Solider Handling" +4182,0,1319,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Freezer Handling" +4183,0,1318,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Heater Handling" +4184,0,1257,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Injustice Handling" +4185,0,1201,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Rybio Handling" +4186,0,1198,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Dark Priest Handling" +4187,0,1784,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Stapo Handling" +4188,0,1782,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Roween Handling" +4189,0,1776,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Siroma Handling" +4190,0,1401,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Shinobi Handling" +4191,0,1416,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Evil Nymph Handling" +4192,0,1109,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Deviruchi Handling" +4193,0,1614,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Mineral Handling" +4194,0,1072,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Kaho Handling" +4195,0,1255,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Neraid Handling" +4196,0,1506,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise: Disguise Handling" + +4197,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Octopus" + +// Paradise Cooldowns +4198,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4199,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4200,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4201,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4202,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4203,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4204,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4205,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4206,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4207,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4208,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4209,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4210,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4211,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"86-90 Mission Board Timer" +4212,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4213,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4214,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4215,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4216,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4217,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4218,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4219,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4220,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4221,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4222,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4223,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4224,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4225,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4226,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" +4227,10800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"91-99 Mission Board Timer" + +4229,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Devil in the Cave" + +4254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fairy with a stomache" +4255,0,2363,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revenge!" +4256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An accomplice?" +4257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conspiracy" +4258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eirinn" +4259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bourbon" +4260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bee" +4261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Counterattack (1)" +4262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Counterattack (2)" +4263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Counteroffensive (1)" +4264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Counteroffensive (2)" +4265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bookshelf use" +4266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"????? ??" +4267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"????? ??" +//4303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//4304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//4305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +4999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Extermination Crisis" +5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crow of the Fate - 7" +5001,0,1037,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"King Froggie VII's revenge" +5002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The hero of the frogs" +5003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Frog Hiding Skill" +5004,0,1099,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Food Shortage" + +// Researcher's Quest +5016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bring me a Research Tool Bag" +5017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revenge of the Reseacher" +5018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revenge of the Reseacher" +5019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Sample Studying" +5020,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sample Researching" +5021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sample Collecting" +5022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sample Collecting" +5023,21600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of the Sample" +5024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eastern Pool Research" +5025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Western Pool Research" +5026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Southern Pool Research" +5027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Northern Pool Research" +5028,43200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of the Sample" +5029,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unidentified Creature" +5030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The creature's family" +5031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The creature's family" +5032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The creature's family" +5033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The creature's family" +5034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"News from the family" +5035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5043,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5044,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help the old man!" +5052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Weapon" +5053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Weapon" +5054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Weapon" +5055,0,2071,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Local Rising - Headless Horse" +5056,0,1584,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Local Rising - Tamruan" +5057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Local Rising - Ready the Festival" +5058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The mood of the players-(1)" +5059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The mood of the players-(2)" +5060,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Shock" +5061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Am I scared?" +5062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I met Eryu." +5063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I met Stew." +5064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I met Ketchup." +5065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I met Eff." +5066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scary image-(1)" +5067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scary image-(2)" +5068,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting complaint" +5069,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Token of honor" +5070,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rock Paper Scissors" +5071,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Chamchamcham" +5072,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kkongnyangkkong" +5073,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Challenging of flag wave" +5074,0,1158,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat's Meal" +5075,0,1144,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Health food" +5076,0,1282,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Enemies" +5077,0,1209,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reaction Training" +5078,0,1019,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Light bird food" +5079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to stabilize the mind" +5080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lack of Snack" +5081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Banned foods" +5082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cool food" +5083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Eryu-(1)" +5084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Eryu-(2)" +5085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Stew-(1)" +5086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Stew-(2)" +5087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Ketchup-(1)" +5088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Ketchup-(2)" +5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Eff-(1)" +5090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Please come back Eff-(2)" +5091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Go Malangdo" + +5092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" +5093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" +5094,0,1002,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" +5095,0,1063,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" +5096,0,1007,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" +5097,0,1049,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" +5098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" +5099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" +5100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity" + +5109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Light but Unconfirmed Rumor" +5110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Rumored Character" +5111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the Lab..." +5112,259200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laboratory Restricted Access" +5113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Lord Knight" +5114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Paladin" +5115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] High Priest" +5116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Champion" +5117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] High Wizard" +5118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Professor" +5119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Whitesmith" +5120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Creator" +5121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Assassin Cross" +5122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Stalker" +5123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Sniper" +5124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Clown" +5125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"[Rest] Gypsy" + +// Kagerou/Oboro Job Quest +5131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Conversation" +5132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Family Business-(1)" +5133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Family Business-(2)" +5134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New path" +5135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"4 tests" +5136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Knowledge test" +5137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Survival test" +5138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Weapons test" +5139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The guy looks familiar!!" +5140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Uncertain chilliness" +5141,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Got a curse!!" +5142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prototype-(1)" +5143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prototype-(2)" +5144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prototype-(2)" +5145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prototype-(3)" +5146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle test" + +// 2012 Headgear Quests +5161,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request[Stand by]" +5162,0,1164,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request" +5163,0,1102,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request" +5164,0,1322,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request" +5165,0,1386,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request" +5166,0,1117,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request" +5167,0,1155,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request" +5168,0,1269,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Low Level collection request" +5169,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request[Stand by]" +5170,0,1776,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request" +5171,0,1198,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request" +5172,0,1784,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request" +5173,0,1316,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mid-Level collection request" +5174,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collectiong request[Stand by]" +5175,0,1106,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collection request" +5176,0,1148,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collection request" +5177,0,1995,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collection request" +5178,0,1310,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"High level collection request" +5179,0,1163,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Highest level collection request" +5180,0,1993,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Highest level collection request" +5181,0,1297,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Highest level collection request" +5182,0,1699,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Highest level collection request" +5222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving the energy crystals" +5223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving the energy crystals" +5224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving the energy crystals" +5225,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving energy crystal[Stand by]" +5226,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving energy crystal[Stand by]" +5227,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Saving energy crystal[Stand by]" + +6000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Taekwon" +6001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Taekwon" +6002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Taekwon" +6005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Soul-Linker" +6006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Soul-Linker" +6007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Soul-Linker" +6008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Soul-Linker" +6010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Super Novice" +6015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A favor from Cougar" +6016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A favor from a Suspicious Man" +6017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red Leopard Joe's Reply" +6018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cougar's Madness" +6020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Master Miller's Letter" +6021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wise Bull Horn's voucher" +6022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Making a voucher" +6023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wise Bull Horn's Favor" +6024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Gunslinger!" +6025,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"KVM Guillaume" +6026,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"KVM Croix" +6027,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"KVM Indicator" +7000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!" +7001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!" +7002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!" +7003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!" +7004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!" +7005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!" +7006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Dancer!" +7007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars" +7008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - Nature" +7009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - the Altar" +7010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - Stars?" +7011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars" +7012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pursuing Rayan Moore" +7037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Case closed?" +7038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Passion for Baked Sweet Potatoes" +7039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dodging the conversation" +7040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dodging the conversation" +7041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Politics is for the Politicians" +7042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Tatacho's feed" +7043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Cornus's feed" +7044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Hillthrion's feed1" +7045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Hillthrion's feed2" +7046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - warm rugs" +7047,18000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Part-time Job - Let's call it a day!" +7048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Burled's Favor" +7049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower" +7050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower" +7051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower" +7052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower" +7053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower - What they want is.." +7054,0,1282,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,"Myu's Favor - Teach them a lesson!" +7055,0,1261,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Myu's Favor - Not the cat!" +7056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Arc's Favor" +7057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Arc's Favor" +7058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Arc's Favor" +7059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" +7060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" +7061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" +7062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" +7063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" +7064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" +7065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts" +7066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Prove the Truth" +7067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Prove the Truth" +7068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Prove the Truth" +7069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Too late!" +7070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Terra's Return" +7071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger - Invitation" +//7072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7073,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +7074,0,2017,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rata Hunt" +7075,0,2018,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Duneyrr Hunt" +7076,0,2026,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wanted: Dandelion" +7077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting Dragon Eggs" +7078,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting Dragon Eggs" +7079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Refined Bradium" +7080,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Refined Bradium" +7081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helping the Laphine Craftsman" +7082,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helping the Laphine Craftsman" + +7091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 01" +7092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 02" +7093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 03" +7094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 04" +7095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An advice of Diora 05" +7096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A proof of new requirement" +7097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A proof of new requirement" +7098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A proof of new requirement" +7099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A proof of new requirement" +7100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A message of Bercascell" +7101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 1" +7102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 2" +7103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 3" +7104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 4" +7105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 4" +7106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 5" +7107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 6" +7108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 7" +7109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 8" +7110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 9" +7111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special task of an assassin guild 10" +7112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of Madelle" +7113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of Crave" +7114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of Trovan" +7115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of a peddler" +7116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information of a old man" + +// Novice Training Grounds +7117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Your first quest!" +7118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Novice Training" +7119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Novice Training" +7120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Novice Training" +7121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Novice Training" +7122,0,1002,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"First battle - Poring Hunt" +7123,0,1049,2,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle Basics -Swordman" +7124,0,1063,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle Basics -Mage" +//7125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"not used" +7126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Selling items" +7127,0,1010,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Battle Basics -Thief" + +7128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Training course 'conquest a desert!' -start" +7129,0,1009,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - A real battle 1" +7130,0,1107,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - A real battle 2" +7131,0,1001,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - A real battle 3" +7132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - Complete a quest" +7133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - Start" +7134,0,1051,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 1" +7135,0,1175,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 2" +7136,0,1005,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 3" +7137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - Complete a quest" +7138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - Start" +7139,0,1076,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - A real battle 1" +7140,0,1031,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - A real battle 2" +7141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - Complete a quest" +7142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - Start" +7143,0,1160,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 1" +7144,0,1095,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 2" +7145,0,1176,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 3" +7146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - Complete a quest" +7147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - start" +7148,0,1686,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 1" +7149,0,1023,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 2" +7150,0,1273,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 3" +7151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - Complete a quest" +7152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!' - start" +7153,0,1153,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!' - A real battle 1" +7154,0,1152,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!'- A real battle 2" +7155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!' - complete a quest" +7156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - start" +7157,0,1264,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - A real battle 1" +7158,0,1065,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - A real battle 2" +7159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - Complete a quest" + +7160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram" +7161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd" +7162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd" +7163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd" +7164,0,2076,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt for shadow of deception" +7165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Key of deception" +7166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rachel Branch of Shadow Workshop" +7167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd" +7168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd" +7169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd" +7170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd" +7171,0,2077,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt for shadow of delusion" +7172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Key of delusion" +7173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Message to Halled from Paul" +7174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Cryptogram - 4th" +7175,0,2078,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunft for shadow of gaiety" +7176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Key of Gaiety" +7177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A young guy in Lighthalzen" +7178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Destination of Deception, Delusion and Gaiety" +7179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vicente, you dare!" +7180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Message from Doomk" + +7181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Karakas's ring" + +// El Dicastes +7182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sapha's Visit" +7183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Invitation from Sapha" +7184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To El Dicastes!" +7185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspector Doha" +7186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Order from Doha - Investigation" +7187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Order from Doha - Shay" +7188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information Gathering - in the Plaza" +7189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information Gathering - in the Factory" +7190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information Gathering - at the Guards" +7191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shay's designation - BK" +7192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"BK's Information" +7193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dimensional Crack Investigation" +7194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What's this bloodstain?" +7195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What's this skin piece?" +7196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What's this suspicious magic power?" +7197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sapha Certifications?" +7198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Audience with Ahat" +7199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Order from Ahat" +7200,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cheshire's call" +7201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Removing traces" +7202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret order from Doha - Collect proof" +7203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret order from Doha - Final Report" +7206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Day for Cheshire" +7207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cheshire's Box" +7208,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wait for Cheshire?" +7209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Forget the box." +7210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Daily delivery" + +// Misty Forest Labyrinth +7211,9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Misty Forest Labyrinth Exploration" +7212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loki's Search" +7213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wandering Protector" + +// Paradise Gear Advanced Quests [Chilly] +7214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Training" +7215,0,1278,3,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Hunt 1" +7216,0,1278,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Hunt 2" +7217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Hunt 3" +7218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Complete" +7219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Johan Training" +7220,0,1192,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Johan Hunt 1" +7221,0,1117,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Johan Hunt 2" +7222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Johan Complete" +7223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Training" +7224,0,1619,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Hunt 1" +7225,0,1620,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Removed" +7226,0,1621,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Hunt 2 (Part A)" +7227,0,1622,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Hunt 2 (Part B)" +7228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Complete" +7229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Training" +7230,0,1776,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Hunt 1" +7231,0,1776,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Hunt 2" +7232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Complete" +7233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Training" +7234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret's Favor" +7235,0,1988,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Hunt 1" +7236,0,1995,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Hunt 2" +7237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Complete" +7238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toren's Errands (Easy)" +7239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toren's Errands (Normal)" +7240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strengthening Equipment" +7241,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toren's Errands - Tomorrow" +7242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Play with the baby cat" +7243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Duruduru Compass" +7244,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Duruduru Race" +7245,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Duruduru Race" +7246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-I'm coming now." +7247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Stop the Bang!" +//7248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +7249,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Bang! See you next time" +7250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Hidden Treasure?" +7251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The First piece of Painting" +7252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Second piece of Painting" +7253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Third piece of Painting" +7254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Fourth piece of Painting" +7255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Fifth piece of Painting" +7256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-The Sixth piece of Painting" +7257,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Race, Come back tomorrow!" +7258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nyadventure-Painting completed" +7259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gift from the Mew Bravery Team" +7260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The origin of Bugs" +7261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Table" +7262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Mattress" +7263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Grill" +7264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Chef Nyas" +7265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rage of Chef Nyas" +7266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Declaration of Chef Nyas" +7267,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Appointed time with Cleanyang" +7268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Cat's hard biscuits!" +7269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Resting Place" +7270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Sand" +7271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Bottom of the Stairs" +7272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Corner" +7273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Locker" +7274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Foothold" +7275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cat Biscuits - Sand" +7276,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Promise to deliver more food" +7281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" +7346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"List of Errands" + +// Hall of Abyss +7349,1800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vote" + +// Port Malaya +7350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cautious Village" +7351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Better than My Old Button" +7352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sailor Wants a Button" +7353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Man Wants a Button" +7354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Young Man Wants a Button" +7355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Merchant Wants a Button" +7356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Little Kid Wants a Button" +7357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Middle-aged Guy Wants a Button" +7358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Why do they want my Buttons?" +7359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Sailor" +7360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Old Man" +7361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Young Man" +7362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Merchant" +7363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Little Kid" +7364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Holy Item to Middle-aged Man" +7365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Better than My Old Button-2" +7366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Spiritual Protection and Impudent Girl-1" +7367,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traditional Spiritual Protection and Impudent Girl-2" +7368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Pedro" +7369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Nardo" +7370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Pandoi" +7371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Woeon" +7372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Talah" +7373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Romel" +7374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Love and Spiritual Protection for All" +7375,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Love and Spiritual Protection Continues" +7376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-1" +7377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-2" +7378,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-Regular Trades" +7379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Peace Preacher" +7380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Smith a Traditional Spiritual Protection" +7381,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"High Demand on Spiritual Protection Material" +7382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Pedro" +7383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Nardo" +7384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Pandoi" +7385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Woeon" +7386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Talah" +7387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver to Romel" +7388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Maries's Child" +7389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Give the Shirt to Maries's Child" +7390,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Worried about Maries's Child" +7391,0,0,0,0,0,0,0,2316,6498,5000,0,0,0,0,0,0,"Jejeling and Jejellopy" +7392,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect Jejellopy Regularly" +7393,0,2314,10,2311,10,0,0,0,0,0,0,0,0,0,0,0,"Shiny Silver Blade" +7394,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shiny Tomorrow" +7395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ghost on the Ferry Ship" +7396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Angry Soul on Ferry Ship" +7397,0,0,0,0,0,0,0,2310,6510,3000,0,0,0,0,0,0,"Mumbaki Phong's Advice" +7398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Offering Bouquet Recommended by Mumbaki" +7399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soul Diwata's Story" +7400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mumbaki of Port Malaya" +7401,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"All Aboard for Perry Sailing" +7402,0,0,0,0,0,0,0,2310,6510,3000,0,0,0,0,0,0,"Bouquet for Diwata" +7403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stabilized Perry" +7404,0,2316,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Jejeling" +7405,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Jejeling - Same Time Tomorrow" +7406,0,0,0,0,0,0,0,2309,6507,5000,2313,6507,5000,2314,6507,5000,"Agree to Collecting Bones!" +7407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Purified Bone" +7408,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Agree to Come Back Tomorrow?" +7409,0,2309,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cannot Meet Eyes with Him!" +7410,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Teach Another Lesson Tomorrow!" + +// Eclage +7411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The traveler, Fome's story" +7412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The traveler, Litrip's story" +7413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The traveler, Chiba's story" +7414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eclage guard's message" +7415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laphine's Chief of Staff" +7416,600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Waiting to meet" +7417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kardui's request" +7418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Eclage 1" +7419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Eclage 2" +7420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For Eclage 3" +7421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"That's enough" +7422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kardui's gift" +7423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A rumor about the King 1" +7424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A rumor about the King 2" +7425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A rumor about the King 3" +7426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A rumor about the King 4" +7427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"At times like this, face it straight on!" +7428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Yai of the wild" +7429,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wild recent trend!" +7430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliveryman that runs through space" +7431,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A mailman never rests!" +7432,0,2363,5,2364,5,0,0,0,0,0,0,0,0,0,0,0,"The troublemakers in the land of blooming flowers" +7433,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Need constant guidance" + +// Twins and Scholar of Magics +7434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kardui's big brother" +7435,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Time for reading the letter" +7436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Avant the Scholar of Magics" +7437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shenime's favor" +7438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret sponsorship" +7439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The scholar of magics sponsored by Shenime" +7440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Minuel's witness" +7441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mail is here!" +7442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The identity of the scholar of magics" +7443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interfere with the research!" +7444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"What Avant was researching" + +// Orb +7445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Avant's back" +7446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unfruitful conversation" +7447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dilemma surrounding the Orb" +7448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Something's not right" +7449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Temptation toward the Orb" +7450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orb's lighting room" +7451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Betrayal" +7452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the chief of staff!" +7453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The last of the chief of staff" + +//7619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//7629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" + +8000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quitting Job Change" +8001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin" +8002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin" +8003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin" +8004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin" +8005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin" +8006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Guild Master!" +8007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Acceptance from the Guild Master" +8008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Assassin" +8009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Applying for Job Change to Priest" +8010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest" +8011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest" +8012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest" +8013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest" +8014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest" +8015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest" +8016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Priest" +8017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Factory Inspection" +8032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tarlock's Favor" +8033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ferlock's Favor" +8034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ferlock's Favor" +8035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How the Airship Works" +8036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hallen's Favor" +8037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Dice Roller" +8038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Dice Roller" +8039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships" +8040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships" +8041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships" +8042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships" +8043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret of Airships" +8044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Euslan's Fiancee" +8045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tips from Kaci" +8046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ferlock's Passengers list" +8047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Euslan's Favor" +8048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eukran's Testimony" +8049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thierry's Favor" +8050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Danger coming on to Thierry" +8051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Euslan's Medicine" +8052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thierry's Favor" +8053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Postell" +8054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Message from Postell" +8055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nursing Allen" +8056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Little something in return" +8057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Grumbling Manainne" +8058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with El Schatt" +8059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Perfitz" +8060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stubborn El Schatt" +8061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stories of the past" +8062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kanainne" +8063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kanainne's spirit" +8064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup" +8076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Klitzer and Calla" +8089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Gemstone" +8090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mr. Manson" +8091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jenny the gardener" +8092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching the Market" +8093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Message" +8094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Double Crossed?" +8095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Phobe" +8096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen Gemstone Found" +8097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Informing Jenny" +8098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Keeping the Secret" +8099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vincent's Recommendation" +8100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" +8101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" +8102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" +8103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" +8104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" +8105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed" +8106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mr. Shendar's daughter" +8107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lachellen's Testimony" +8108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Foreigner, Katinshuell" +8109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's scent" +8110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's scent" +8111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lachellen's Testimony" +8112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Freya's Spring" +8113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's Diary" +8114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's Diary" +8115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Suspicious Katinshuell" +8116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lachellen's Testimony" +8117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Freya's Spring" +8118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Mr. Shendar" +8119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's Diary" +8120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Katinshuell" +8121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with Katinshuell" +8122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bruspetti's resting place" +8123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ayotaya's world famous dish, Tom Yum Goong" +8124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ayotaya's world famous dish, Tom Yum Goong" +8125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ayotaya's world famous dish, Tom Yum Goong" +8126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ayotaya's world famous dish, Tom Yum Goong" +8127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Momotaro Field Trip" +8128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Momotaro Field Trip" +8129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Momotaro Field Trip" +8130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Momotaro Field Trip" +8131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The mother of lord in Amatsu" +8132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The mother of lord in Amatsu" +8133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Song of the fox" +8134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Boy at the Northern Shrine" +8135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fox Expelled" +8136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Gray Wolf's Warning" +8137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Keymaker" +8138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Blacksmith's Request" +8139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Golden Key" +8140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Red Ring" +8141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mashenka's Red Ring" +8142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching the Marsh" +8143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Flute's Voice" +8144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ryubaba's Confession" +8145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Worried Mother's Request" +8146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Lusalka" +8147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lusalka's Beloved" +8148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lusalka's Beloved" +8149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Igor" +8150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Igor's message" +8151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Marozka's Cave" +8152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Golden Thread" +8153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of mind and wisdom" +8154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Keymaker" +8155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Favor" +8167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Golden Key" +8168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Koshei, the Immortal" +8169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Living and Dead Water" +8170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Living and Dead Water" +8171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Living and Dead Water" + +8181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sight Blaster" +8182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Push Back Theory" +8183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sight Blaster" +8184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Elemental Converter" +8185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Elemental Change" +8186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fire Elemental Change" +8187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Earth Elemental Change" +8188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wind Elemental Change" +8189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Water Elemental Change" +8190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Charming Wink" +8191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Charming Advisor" +8192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Selfish Advisor" +8193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Selfish Advisor" +8194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Drunken Advisor" +8195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kind Canell" +8196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Tripartite Union's Feud" +8197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Document Delivery" +8198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the United Research Official" +8199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"United Research Official's Favor" +8200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ryosen's Document Requests" +8201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Document" +8202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Document Restoration" +8203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Document Restoration" +8204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ryosen" +8205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the United Research Official" +8206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Researchers' Meeting" +8207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hansenne is not guilty." +8208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hansenne's Favor" +8209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hue's Report" +8210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to the United Research Official" +8211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Order" +8217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dequ'ee's Message" +8218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's order" +8223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dequ'ee's order" +8224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The clue" +8225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dequ'ee's Reasoning" +8226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bankley's Death" +8227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Return to Shurank" +8228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shurank's Lecture" +8229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prontera Market Research" +8235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Guarnien's Lecture" +8241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collection of Red Jewel" +8242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collection of blue Jewel" +8243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Learning new languages" +8244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fairies and Tree Giants" +8245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Language sample investigation" +8246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Language sample investigation" +8247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Research progress" +8248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Research progress" +8249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Compressing Information" +8250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Storage Gem" +8251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Injection of Magic" +8252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Handworked jewels" +8253,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Language translation device" + +8254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"with a light heart and body" +8255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The test of power for existence" +8256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The test of power for existence" +8257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Providing food of Teardrop" +8258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Providing food of Teardrop" +8259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"to a place for taking a practical technique test" +8260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mission! Documents delivery" +8261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"When you play the flute,then the wolf show up!" +8262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ranger master never again" + +8265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"One time a one hour!" + +8266,0,1077,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting poison spore!" +8267,0,1056,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting smokie!" +8268,0,1033,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt elder wilow!" +8269,0,1104,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt coco!" +8270,0,1034,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt tharafrog!" +8271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toxic sprays delivery!" +8272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver a honey!" +8273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver a blanket!" +8274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect bones!" +8275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect feet!" +8276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect scell!" +8277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect tails!" +8278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect cookies!" +8279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collect mustache!" + +9000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Knight" +9001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loyalty of a Knight" +9002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loyalty of a Knight" +9003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Honor of a Knight" +9004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Honor of a Knight" +9005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tenacity of a Knight" +9006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tenacity of a Knight" +9007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Honor of a Knight" +9008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Etiquette as a Knight" +9009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Life as a Knight" +9010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quality of reverence" +9011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Life as a Knight" +9012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glory of a Knight!" +9013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard" +9014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard" +9015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard" +9016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard" +9017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Change to Wizard" +9018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Certified as a Wizard!" +9058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"O'Riley's Request" +9059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Happy St. Patrick's Day" +9117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse" +9118,0,1109,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse - Deviruchi Hunt" +9119,0,1291,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse - Wraith Dead Hunt" +9120,0,1504,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse - Dullahan Hunt" +9121,0,1379,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse - Nightmare Terror Hunt" +9122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse" +9123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lina's Curse" +9024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An errand boy from Einbroch" +// kRO +//9028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"strange Mouse" +//9029,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Mouse : present conditions" +// iRO/cRO +9028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"strange Hydra" +9029,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Hydra : present conditions" +9030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find a puppy" +9031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find a puppy" +9032,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find a puppy" + +9155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Getting materials for the Jaty Crown" +9156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Make the Jaty Crown" +9157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reward from Sage, Kasyapa" +9158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery of Good News(1)" +9159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Paiko" +9160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery of Good News(2)" +9161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Paiko" +9162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery of Good News(3)" +9163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Paiko" +9164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery of Good News(4)" +9165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reward from Paiko for success of Jaty Crown" + +9167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tutorial - Mercenary for Hire" +9168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest Window Check" +9169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Window Shopper Catalogue" +9170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Window Shopper Catalogue" +9171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Enchanting Items" +9172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Enchanted Items" +9173,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tutorial Timer Cooldown" + +9222,0,2327,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bangungot from Hospital 2F" +9223,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Will there be Peace at the Hospital?" +9224,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Explore Hospital 2F" + +9225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 1" +9226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 2" +9227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 3" +9228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 4" +9229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 5" +9230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 6" +9231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 7" +9232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 8" +9233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 9" +9234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 10" +9235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 11" +9236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 12" +9237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 13" +9238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 14" +9239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 15" +9240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luen's statement notes" +9241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luen's statement notes" +9242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luen's statement notes" +9243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luen's statement notes" +9244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dames's statement notes" +9245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dames's statement notes" +9246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dames's statement notes" +9247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dames's statement notes" +9248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rosa's statement notes" +9249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rosa's statement notes" +9250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rosa's statement notes" +9251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rosa's statement notes" +9252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Observing Poppy" +9253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a messy bookshelf" +9254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a damaged book" +9255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a container for soda cans" +9256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a messed up table" +9257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Examining a foreign object" +9258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Field examination results" +9259,0,2363,5,2364,30,0,0,0,0,0,0,0,0,0,0,0,"Confirming Cruyan's statements" +9260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Survey investigation notes" +9262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystery Robbery Incident 16" + +//9327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//9328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//9329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//9330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//9331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//9332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//9333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//9334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" + +10000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the Prontera Royal Court" +10001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Qualification Test" +10002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Qualification Review" +10003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Instructions on what to do" +10004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interim Report" +10005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Eigen Ahrum" +10006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Ernst" +10007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Poe" +10008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Peter" +10009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Urugen" +10010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Helmut" +10011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Prince Erich" +10012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation of the two princes" +10013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for the unknown girl" +10014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Peter" +10015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test 15" +10016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Guest from the Walter Family" +10017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conspiracy" +10018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Poe" +10019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Peter" +10020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Erich" +10021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Urugen" +10022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Villainous Ahrum - Helmut" +10023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eigen Ahrum and Ernst -Former-" +10024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eigen Ahrum and Ernst -Latter-" +10025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Good-bye, dear!" +10026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto" +10027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto" +10028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto" +10029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto" +10030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto" +10031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto" +10032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto" +10033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reforming Meto" +10034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Search the knife" +10035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deliver the knife" +10036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-Candy" +10037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-Crap Shells" +10038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-Conch" +10039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-Fish Tail" +10040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-White Platter" +10041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Material Supply-?" +10042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keys-5 remained" +10043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keys-5 remained" +10044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keys-4 remained" +10045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-4 remained" +10046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-3 remained" +10047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-3 remained" +10048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-2 remained" +10049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-2 remained" +10050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-1 remained" +10051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-1 remained" +10052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-To the piano" +10053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find the Piano Keyboard-Fill the empty spot" +10054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"On the Verge of the Escape-Clint Kana" +10055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Understanding the culture of Utan" +10056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Learning Utan Language" +10057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Onward to the Other World" +10079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10085,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10087,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" +10089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Escape from the reality, into the broad world" + +10090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" +10101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changes to Mechanic" + +10102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of the sphinx dungeon" +10103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of Glast heim" +10104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of Yuno" +10105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of a clock tower" +10106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To client - the chapter of localizing " +10107,0,1164,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sphinx dungeon - Requiem" +10108,0,1140,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sphinx dungeon - Marduk" +10109,0,1154,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sphinx dungeon - Pasana" +10110,0,1260,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glast heim - Dark Frame" +10111,0,1117,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glast heim - Evil druid" +10112,0,1192,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glast heim - Wraith" +10113,0,1276,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glast Heim - Raydric Archer" +10114,0,1369,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno - Grand Peco" +10115,0,1386,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno - sleeper" +10116,0,1372,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno - Goat" +10117,0,1376,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno - Harpy" +10118,0,1269,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"clock tower - Clock" +10119,0,1199,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"clock tower - Punk" +10120,0,1195,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"clock tower - Rideword" +10121,0,1883,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Localizing - Uzhas" +10122,0,1404,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Localizing - Miyabi Doll" +10123,0,1516,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Localizing - Mi Gao" + +11000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Inspection of Odin Shrine" +11009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morriphen's Request" +11010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching the medicine" +11011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Medicine for two" +11012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Makkie" +11013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red Plant Stem Powder" +11014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The researcher's medicine" +11015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Siria's cure" +11016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morriphen's story" +11017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos" +11018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos" +11019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos" +11020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos" +11021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos" +11022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Exploring Juperos" +// iRO Event Quest +//11023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 1" +//11024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 2" +//11025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 3" +//11026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 4" +//11027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 5" +//11028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 6" +11029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Going to the Turtle Island.." +11038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead" +11039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead" +11040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead" +11041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead" +11042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead" +11043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet the Dead" +11044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance" +11070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Poison King" +11084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Surroundings" +11085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Surroundings" +11086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"New Surroundings" +11087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing the Tent" +11088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing the Tent" +11089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing the Tent" +11090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing the Tent" +11091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies" +11092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies" +11093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies" +11094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies" +11095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies" +11096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies" +11097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies" +11098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivering Supplies" +11099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To My Friend" +11100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To My Friend" +11101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret note of Bazet" +11102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret note of Bazet" +11103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret note of Bazet" +11104,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resting time" +11105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilrion skin" + +11106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock" +11107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock" +11108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock" +11109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock" +11110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock" +11111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock" +11112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job changing to Warlock" +11113,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Until radering is functioning" + +11114,0,1004,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Honet" +11115,0,1009,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Condor" +11116,0,1052,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Grasshopper's Leg" +11117,0,1024,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Worm tail" +11118,0,1014,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Spore" +11119,0,1048,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Pest Control" +11120,0,1055,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Muka" +11121,0,1005,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Farmiliar" +11122,0,1019,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Collect Feather" +11123,0,1077,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Collect Poison Spore" +11124,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Honet - Complete" +11125,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Condor - Complete" +11126,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Grasshopper's Leg - Complete" +11127,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Worm Tail - Complete" +11128,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Spore - Complete" +11129,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Pest Control - Complete" +11130,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Muka - Complete" +11131,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Hunt Farmiliar - Complete" +11132,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Collect Feather - Complete" +11133,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request : Collect Poison Spore - Complete" + +11135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song" +11136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song" +11137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song" +11138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song" +11139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song" +11140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The sky, plane and travel sickness." +11141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Human & gossip is towarding to the bar" +11142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fearful metalic sound" +11143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos tower" +11144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juno manager : click" +11145,0,1622,33,0,0,0,0,0,0,0,0,0,0,0,0,0,"I want to get the " +11146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"to ice tunnel..." +11147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lared's dew" +11148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Toward Comodo with the bow" +11149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Just pour the water. Pour! Pour!..." +11150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song" +11151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Looking for Maestro Song" +11152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"to the quiet place!..." +11153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing watch top" +11154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I will remember the memories with you...." +11155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"undefinable battler" +11156,0,1106,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"annoying homework" +11157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Helmes valley " +11158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"On the way for meditation" + +11159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Brian" +11160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of John" +11161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Tyler" +11162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Rose" +11163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Bain" +11164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Story of Lash" +11165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Brian" +11166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to John" +11167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Tyler" +11168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Rose" +11169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Bain" +11170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery to Lash" +11171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request from Frede" +11172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request from Frede" +11173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request from Frede" +11174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Supply Shortage" +11175,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Supply Shortage" +11176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"For my friends" + +// Mora +11182,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Theore's Report" +11183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Theore's Favor" +11184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Runaway Laphine" +11185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch" +11186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch" +11187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch" +11188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch" +11189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Roast Beef" +11190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Roast Beef" +11191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shortage of Roast Beef" +11192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Village..." +11193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sonya's Friend" +11194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Runaway Laphine" +11195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch" +11196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch" +11197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch" +11198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Village..." +11199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Theo's Friend" +11200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouch" +11201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Roast Beef" +11202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Roast Beef" +11203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shortage of Roast Beef" +11206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quick Delivery Yoneseu" +11207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Very Heavy Burden" +11208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Daphne" + +// Malangdo +11209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hardships of Thomas" +11210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Reunion" +11221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Fruits" +11239,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Malangdo Fruits" +11240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11243,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repair of cracks" +11244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soft Jelly" +11245,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soft Jelly" + +11284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-1" +11285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-2" +11286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-3" +11287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-4" +11288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-5" +11289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-6" +11290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-7" +11291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-8" +11292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-9" +11293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-10" +11294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-11" +11295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-12" +11296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-13" +11297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-14" +11298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-15" +11299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-16" +11300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-17" +11301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-18" +11302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-19" +11303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-20" +11304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-21" +11305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-22" +11306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-23" +11307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-24" +11308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-25" +11309,0,2327,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nurse at Port Malaya-26" + +11310,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eclage's Entrance" +11311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Eclage's Entrance" +11312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Goliath" +11313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Goliath" +11314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Goliath" +11315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"And time keeps on flowing" +11325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg" +11326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg" +11327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg" +11328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg" +11329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg" +11330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg" +11331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg" +11332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The chicken or the egg" +11333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red seed and green seed" +11334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red seed and green seed" +11335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dreaming boy" +11336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dreaming boy" +11337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dreaming boy" + +//11366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +11378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Trick or treat" // Halloween Event 2013 + +12000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An old friend" +12001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Digotz, Maku's old friend" +12002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Messenger of Friendship" +12003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Digotz's message" +12004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Maku's other friend" +12005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein" +12006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein's lost item" +12007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kazien" +12008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Researcher Garins" +12009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Failed mission" +12010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"No entrance" +12011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lyozien" +12012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet Mr. Ahman" +12013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery complete" +12014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"More missions" +12015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ghalstein" +12016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sneaking into the Laboratory" +12017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Membership approved" +12018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meeting the President" +12019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The President's Mission" +12020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rescuing a Secret Wing Member" +12021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sealed File Folder" +12022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sealed File Folder" +12023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shinokas the researcher" +12024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kafra Corporation Agent" +12025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rekenber's Secret Archive" +12026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rekenber's Secret Archive" +12027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rekenber's Secret Archive" +12028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kurelle the traitor" +12029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lost Engagement Ring" +12030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Engagement Ring Found" +12031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Annon" +12032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Annon" +12033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Traces of blood" +12034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Annon's side of the story" +12035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Holy Threads" +12036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Stone Slate Message" +12037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Holier Threads" +12038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for the Sa-mhing Tiger" +12039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Boonthom's Comrade" +12040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein's Journal" +12041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein's Journal" +12042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Benkaistein's Journal" +12043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pass to the Slums" +12044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 1" +12045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 2" +12046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 3" +12047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 4" +12048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Soothing a crying child 5" +12049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 1 - Rogue" +12050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 2 - Rogue" +12051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 3 - Rogue" +12052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 4 - Rogue" +12053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 5 - Rogue" +12054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest 6 - Rogue" +12055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest - Assassin" +12056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Job Quest - Assassin" +12057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pass to the Lab" +12058,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Admission Restricted to the 102 Tower" +12059,7200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orc's Memory Time Limit" +12060,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Today's Fishing Closed" +12061,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Concentration" +12062,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Today's Mining Closed" +12070,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Limited time for enter" +12071,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stamp a seal on the attendance book" +12072,0,1034,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt tharafrog" +12073,0,1248,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Cruiser" +12074,0,1070,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Kukre" +12075,0,1686,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove orcbaby" +12076,0,1023,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove orcwarroir" +12077,0,1066,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt vadon" +12078,0,1064,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Megalodon" +12079,0,1144,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Marse" +12080,0,1067,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Cornutus" +12081,0,1151,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Myst" +12082,0,1074,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt shellfish" +12083,0,1142,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Marine sphere" +12084,0,1158,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Phen" +12085,0,1152,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove orcskeleton" +12086,0,1177,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Zenorc" +12087,0,1041,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove mummy" +12088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Accomplishing a request" + +12090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious guy" +12091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Just save the burning heart" +12092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Long lasting story" +12093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"the record the intelligence Lyoda left" +12094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The damaged shield letter" +12096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Towards Karakas" +12097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Basic preparation" +12098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tour of dungeon" +12099,0,2014,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Remove Root Cause" +12100,0,1994,12,0,0,0,0,0,0,0,0,0,0,0,0,0,"Violent Winged Insect" +12101,0,2013,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Work Interference" +12102,0,1993,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Intelligent Snakes" +12103,0,1992,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Legendary Creature" +12104,0,1987,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"Insects with an Appetite" +12105,0,2024,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Moving Rocks" +12106,0,1995,15,0,0,0,0,0,0,0,0,0,0,0,0,0,"A child on a flower" +12107,0,2015,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Twisted Love" +12108,0,1988,12,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dangerous Plant Removal" +12109,0,1999,14,0,0,0,0,0,0,0,0,0,0,0,0,0,"Larva Extermination" +12110,0,2016,7,0,0,0,0,0,0,0,0,0,0,0,0,0,"Demon of Water" +12111,0,1986,10,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bird with ugly face" +12117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Withered Flower" +12118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Welcomed Mineral" +12119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Valuable Textile" +12120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Curious Meat" +12121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Materials to Clear Snow" +12122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Best Cooler Material" +12123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Best Paint" +12124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rare Valuable" +12125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Armory Material" +12126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Advanced Armory Material" +12127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Supervisor's Tool" +12128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Preparation for Heating" +12129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Suspicious Food" +12130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Useful Material" +12131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Essential Material for Construction" +12132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Essential Material for Construction 2" +12133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Decoration arrangement" +12134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Instant Receptacle" +12135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Not enough medicine" +12136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Honey robber" +12137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tools for Experiment" +12138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fine Gift Samples" +12139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Respect for Taste!" +12140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Courtesy for Regulars" +12141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Special Package" +12142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dangerous Request" +12143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Strange Trend" +12144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unknown Usage" +12145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Other World Cuisine" +12146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Filling in Cracks" +12147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Adhesive Material" +12148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bait for Tatacho Hunting" +12149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Swordmanship Practice" +12150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pretty reddish vegetable" +12151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tenacity of the pub owner" +12152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tastes like home cooking" +12153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hazardous plant when burnt" +12154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unexpectedly Normal" +12155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gift with heart" +12156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Respect personal appetite!" +12157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resolution of the pub owner" +12158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rage of the pub owner" +12159,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Laponte" +12160,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Kalipo" +12161,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Pura" +12162,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Tragis" +12163,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Calyon" +12164,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quest record from Moltuka" +12165,21600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dizziness" +12166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tree Root Doc." +12167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reptile Tongue Doc." +12168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scorpion Tail Doc." +12169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stem Doc." +12170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pointed Scale Doc." +12171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Resin Doc." +12172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Spawn Doc." +12173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jellopy Doc." +12174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fish Tail Doc." +12175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Worm Peeling Doc." +12176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gill Doc." +12177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tooth of Bat Doc." +12178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fluff Doc." +12179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Chrysalis Doc." +12180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Feather of Birds Doc." +12181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Talon Document Doc." +12182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sticky Webfoot Doc." +12183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Animal Skin Doc." +12184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wolf Claw Doc." +12185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mushroom Spore Doc." +12186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orc's Fang Doc." +12187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Evil Horn Doc." +12188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Powder of Butterfly Doc." +12189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bill of Birds Doc." +12190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snake Scale Doc." +12191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Insect Feeler Doc." +12192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Immortal Heart Doc." +12193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rotten Bandage Doc." +12194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Decayed Nail Doc." +12195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Horrendous Mouth Doc." +12196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tentacle Doc." +12197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shell Doc." +12198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scale Shell Doc." +12199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Venom Canine Doc." +12200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sticky Mucus Doc." +12201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bee Sting Doc." +12202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Grasshopper's Leg Doc." +12203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Royal Jelly Doc." +12204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Yoyo Tail Doc." +12205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Solid Shell Doc." +12206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Yam Doc." +12207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Raccoon Leaf Doc." +12208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snail's Shell Doc." +12209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Horn Doc." +12210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bear's Footskin Doc." +12211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Feather Doc." +12212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Red Herb Doc." +12213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Carrot Doc." +12214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cactus Needle Doc." +12215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stone Heart Doc." +12216,21600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pouty Jahbong" +12217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Request - Traces of wild boar hunt" +12218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to make lava elixir" +12219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to creat flame elixir" +12220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to create glaicer elixir" +12221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to create fossil elixir" +12222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"How to create storm elixir" + +// Mora Coin Daily Quests +12225,0,2132,3,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pom Spider Hunting" +12226,0,2133,4,0,0,0,0,0,0,0,0,0,0,0,0,0,"Angra Mantis Hunting" +12227,0,2134,5,0,0,0,0,0,0,0,0,0,0,0,0,0,"Parus Hunting" +12228,0,2136,6,0,0,0,0,0,0,0,0,0,0,0,0,0,"Little Fatam Hunting" +12229,0,2137,7,0,0,0,0,0,0,0,0,0,0,0,0,0,"Miming Hunting" +12230,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Monster Hunt" +12231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Insect Feeler Collecting" +12232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Immortal Heart Collecting" +12233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rotten Bandage Collecting" +12234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orcish Voucher Collecting" +12235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Skeleton Bone Collecting" +12236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Memento Collecting" +12237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shell Collecting" +12238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Scale Shell Collecting" +12239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Venom Canine Collecting" +12240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sticky Mucus Collecting" +12241,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Item Request 1" +12242,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mora Item Request 2" + +// Missing Person Quests +12243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Tajareu" +12244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Tokenizer" +12245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Mesile" +12246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Noir" +12247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Pajama God" +12248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Mendel" +12249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Miles" +12250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Kunmune" +12251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Chayihokin" +12252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Information on Tuale" +12253,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing Person Search Time Limit" + +// Malangdo Culverts +12254,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Now it's cleaning" +12255,0,2176,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea crab" +12256,0,2175,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea squid" +12257,0,2174,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Ancient crustacean" +12258,0,2178,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea shell" +12259,0,2179,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt ancient kukre" +12260,0,2177,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea conch" +12261,0,2182,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea horse" +12262,0,2181,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt ancient sword fish" +12263,0,2180,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt ancient sea god" +12264,0,2183,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt mutation anolian" +12265,0,2184,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt deep sea mermaid" +12266,0,2185,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt transformable kapha" +12267,0,2188,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt weird coelacanth" +12268,0,2187,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt dark coelacanth" +12269,0,2190,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt Cruel coelacanth" +12270,0,2189,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunt mutation coelacanth" +12271,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In progress general culvert single day service" +12272,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In progress hard culvert single day service" +12273,579600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In progress general culvert weekly service" +12274,579600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In progress hard culvert weekly service" + +12278,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Towards Bakonawa Lake..." +12279,0,2322,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Get Rid of Bakonawa" + +12280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A suspicious prisoner" +12281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An unwanted favor" +12282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gossip king Clever" +12283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The rift researcher" +12284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A cat merchant's source of information" +12285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A way to calm down a cat" +12286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Information traded for some canned foods" +12287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A weird experience" +12288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A successful experience" +12289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Another visitation" +12290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clever's historical documents" +12291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hidden historical documents (?)" +12292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The unknown ones" +12293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Figures in history" +12294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tour of Eclage" +12295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Error" +12296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fun times with the reactor" +12297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Encountering Etran" +12298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Two wishes" +12299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revisiting Robert" +12300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Revisiting Etran" +12301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Two remaining friends" + +// Old Glast Heim +12317,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fake Keyblade" +12318,0,2475,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Upper Cats: annoying guy" +12319,0,2476,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Upper Cats: annoying guy" + +12363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"?????? ?? ??" + +13000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"RWC2011Card Gathering" +13001,82800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"RWC2011Card Gathering - Hold" + +// eden 100-110 +13002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Brigan collecting" +13003,0,1267,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Carat Request" +13004,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Carat Request timer" +13005,0,1194,22,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arclouse Request" +13006,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Arclouse Request timer" +13007,0,1206,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anolian Request" +13008,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anolian Request timer" +13009,0,1207,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sting Request" +13010,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sting Request timer" +13011,0,1310,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Majoruros Request" +13012,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Majoruros Request timer" +13013,0,1995,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pinguicula Request" +13014,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pinguicula Request timer" +13015,0,1994,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luciola Vespa Request" +13016,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Luciola Vespa Request timer" +13017,0,1106,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Desert Wolf Request" +13018,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Desert Wolf Request timer" +13019,0,1775,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snowier Request" +13020,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snowier Request timer" +13021,0,1777,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ice Titan Request" +13022,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ice Titan Request Timer" +13023,0,1379,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nightmare Terror Request" +13024,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nightmare Terror Request Timer" +13025,0,1384,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Flying Deleter Request" +13026,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Deleter Request Timer" +13040,0,1505,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loli Ruri Request" +13041,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Loli Ruri Request Timer" +13042,0,1148,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Medusa Request" +13043,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Medusa Request Timer" +13044,0,1098,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anubis Request" +13045,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Anubis Request Timer" +13046,0,1991,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilion Request" +13047,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilion Request Timer" +13048,0,1991,1,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilion Request" +13049,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Tendrilion Request Timer" + +13050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Laphine that loves the land" +13051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The singing Laphine" +13052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The watering Laphine" +13053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The dancing Laphine" +13054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The smiling Laphine" +13055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"See if all the adventurers are safe" +13056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reporter Rossi" +13057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Adventurer Euncheong" +13058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Troublemaker New Oz" +13059,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"End of project" +13060,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Safety confirmation complete!" +13061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Food support" +13062,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Food support - complete" +13063,0,2365,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dusting off" +13064,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dusting off - complete" +13065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Collecting a souvenir" +13066,79200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"This is enough for souvenirs" + +// eden 111-120 +13067,0,1163,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Raydric research" +13068,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Raydric research - timer" +13069,0,1132,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Khalitzburg research" +13070,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Khalitzburg research - timer" +13071,0,1208,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wander Man research" +13072,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wander Man research - timer" +13073,0,1699,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Mimic research" +13074,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Mimic research - timer" +13075,0,1698,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Death Word research" +13076,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Death Word research - timer" +13077,0,1295,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Owl Baron research" +13078,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Owl Baron research - timer" +13079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bloody Page Research" +13080,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bloody Page Research - Wait" +13081,0,2015,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dark Pinguicula research" +13082,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dark Pinguicula research - timer" +13083,0,1988,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nepenthes research" +13084,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nepenthes research - timer" +13085,0,1993,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Naga research" +13086,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Naga research - timer" +13087,0,1999,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Centipede Larva research" +13088,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Centipede Larva research - timer" +13089,0,1992,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cornus research" +13090,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Cornus research - timer" +13091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystic Horn Research" +13092,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mystic Horn Research - Wait" +13093,0,1297,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Mummy research" +13094,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Mummy research - timer" +13095,0,1374,10,1370,10,1390,10,0,0,0,0,0,0,0,0,0,"Geffenia expedition" +13096,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffenia expedition - Wait" +13097,0,1677,30,1678,30,1679,30,0,0,0,0,0,0,0,0,0,"Juperos expedition" +13098,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Juperos expedition - Wait" +13099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fragments and Rusty Screw" +13100,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fragments and Rusty Screw - Wait" + +// eden 121-130 +13107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower Search" +13108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rachel holy ground Search" +13109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unknown island Search" +13110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake Search" +13111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower Search - Reporting results" +13112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rachel holy ground Search - Reporting results" +13113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Nameless Island Search - Reporting results" +13114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake Search - Reporting results" +13115,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Thanatos Tower Search - Wait" +13116,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rachel holy ground Search - Wait" +13117,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Unknown island Search - Wait" +13118,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake Search - Wait" +13119,0,1702,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Baroness of Retribution" +13120,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Baroness of Retribution - Wait" +13121,0,1703,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Lady Solace" +13122,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Lady Solace - Wait" +13123,0,1701,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Mistress of Shelter" +13124,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Mistress of Shelter - Wait" +13125,0,1700,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Dame of Sentinel" +13126,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Dame of Sentinel - Wait" +13127,0,1771,20,1772,20,0,0,0,0,0,0,0,0,0,0,0,"Combat Vanberk and Isilla" +13128,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Vanberk and Isilla - Wait" +13129,0,1773,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Hodremlin" +13130,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Hodremlin - Wait" +13131,0,1769,20,1770,20,0,0,0,0,0,0,0,0,0,0,0,"Combat Agav and Echio" +13132,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Agav and Echio - Wait" +13133,0,1865,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Ragged Zombie" +13134,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Ragged Zombie - Wait" +13135,0,1864,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Zombie Slaughter" +13136,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Zombie Slaughter - Wait" +13137,0,1867,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Banshee" +13138,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Banshee - Wait" +13139,0,1714,30,1717,30,0,0,0,0,0,0,0,0,0,0,0,"Combat Ferus and Bewler" +13140,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Ferus and Bewler - Wait" +13141,0,1713,30,1716,30,0,0,0,0,0,0,0,0,0,0,0,"Combat Acidus" +13142,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combat Acidus - Wait" + +// eden 131-140 +13143,0,1652,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Egnigem Story" +13144,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Egnigem Story - Wait" +13145,0,1654,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Armeyer Story" +13146,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Armeyer Story - Wait" +13147,0,1653,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whikebain Story" +13148,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whikebain Story - Wait" +13149,0,1656,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kavach Story" +13150,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kavach Story - Wait" +13151,0,1655,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Errende Story" +13152,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Errende Story - Wait" +13153,0,1657,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laurell Story" +13154,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Laurell Story - Wait" +13155,0,1918,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story1" +13156,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story1 - Wait" +13157,0,1919,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story2" +13158,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story2 - Wait" +13159,0,1921,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story3" +13160,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Morocc Story3 - Wait" +13161,0,2083,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Uni-horn Scaraba Story" +13162,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Uni-horn Scaraba Story - Wait" +13163,0,2084,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Horn Scaraba Story" +13164,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Horn Scaraba Story - Wait" +13165,0,2085,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Antler Scaraba Story" +13166,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Antler Scaraba Story - Wait" +13167,0,2086,30,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rake horn Scaraba Story" +13168,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rake horn Scaraba Story - Wait" + +14118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wuhari's concern" +14119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of patience" +14120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of patience 2" +14121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of patience 3" +14122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Time for two" +14123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wuharu's favor" +14125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Surveying the area" +14126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Ms. Goatie" +14127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Ms. Goatie's husband" +14128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Obtaining the research report" +14131,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Analysis time" +14133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Another favor" +14134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sharp Ms. Goatie" +14135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Searching for Mr. Pompe" +14136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A terrible scene in the field" +14137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"An interesting proposition" +14138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The big corpse" +14139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Wuhuru" +14140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To Wuhari" +14141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ingredients for research" + +//14254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//14291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" +//15045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"" + +// 2013 Christmas Event +15055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : We are the great Single Union Army!" +15056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Declare war against couples!" +15057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Prepare the festival!" +15059,86400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Cooldown Timer" +15060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Kwami has joined" +15061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Willer has joined" +15062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Rinka has joined" +15063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Jee has joined" +15064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Christmas : Marty has joined" + +16000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Metz Brayde's Notice" +16001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"First examination" +16002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -1" +16003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -2" +16004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -3" +16005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -4" +16006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -5" +16007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fetching Items for Arian -6" +16008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quiz time!" +16009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quiz time!" +16010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Daewoon's Test" +16011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Jore's Test" +16012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Jore's Materials" +16013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Stone of Sage" +16014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Stone of Sage" +16015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lady Jesqurienne" +16016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jesquerinne's Quiz Challenge" +16017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Failed Quiz Challenge" +16018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Quiz Challenge Triumph" +16019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Search for Dearles" +16020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dearles' Test" +16021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test of Appreciation" +16022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dearles' Test Part Two" +16023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rhythm Test Passed" +16024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Bakerlan" +16025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bakerlan's delivery" +16026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mahatra's delivery" +16027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bakerlan's Receipt" +16028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Find Seylin" +16029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigorgra Medicine" +16030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigorgra Ingredients" +16031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vigorgra Ingredients" +16032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Seylin's Request" +16033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Seylin" +16034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to Mahatra" +16035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Bakerlan" +16036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The last Crumb" +16037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding Engel Howard" +16038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Liana's Letter" +16039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combining the Starlight" +16040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Letter to Engel's Family" +16041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Talk to Liana" +16042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sobbing Starlight Progress" +16043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Restored Sobbing Starlight" +16044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Combining the Starlight" +16045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Starlight message" +16046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The man in Umbala" +16047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Into the Tree" +16048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Ancient Papers" +16049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Record of Ancient Language" +16050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Fastidious Old Man" +16051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Blurry Vision" +16052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Translating the Document" +16053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Translated Ancient Language" +16054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Where the rejected live" +16055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Misfortunate of Niflheim" +16056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Removed Curse" +16057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meeting the witch" +16058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wing Of Crow" +16059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Wing Of Crow" +16060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Misfortunate of Niflheim" +16061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bard in Niflheim" +16062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gen of Niflheim" +16063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Witch's Aid" +16064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Misfortunate of Niflheim" +16065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Queen's Symbol" +16066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Knowledge of the Symbol" +16067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Knowledge of Asgard" +16068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces" +16069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces" +16070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces" +16071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces" +16072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Finding the Soul Pieces" +16073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Agrboda's Soul" +16074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Symbol of the Nine Realms" +16075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Serin's Ambitions" +16076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Witch's Tonic" +16077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Serin's Release" +16078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Visit with Lady Hell" +16079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sign" +16080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dark Lord's return" +16081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Serin's Ambitions" +16082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dark Lord's return" +16083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Serin's Realization" +16084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sign" +16085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sign" +16086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sign" +16087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Sign" +16101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious World Map" +16118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hidden poem" +16119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Snake swords" +16120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A dream?" +16121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Secret Code?" +16122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Old Copper Key" +16123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Green Keycard" +16124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Steel Box" +16125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kiel Hyre Academy" +16200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Limberg's Request" +16201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"TPS Report" +16202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"TPS Report" +16203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"TPS Report" +16204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Crack in the Wall" +16205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Empty Lava Tube" +17000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet with Father Bamph" +17001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Meet with Larjes" +17002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Father Bamph" +17003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Travel to Rachel" +17004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Travel to Veins" +17005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Frustrated Magistrate" +17006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Interrogated Smugglers" +17007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Written Orders" +17008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigating" +17009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"More Investigating" +17010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Further Investigations" +17011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Kurdi's Father" +17012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Karyn's Boat" +17013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"To the Island" +17014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigating the Island" +17015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Research Note" +17016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Regicide" +17017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Reporting the King's Death" + +18001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery for Rooney" +18002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery for Rooney" +18003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Delivery for Rooney" +18004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lasda's Request" +18005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jesse's Request" +18006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Krieg's Approval" +18007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Krieg's Trust" +18008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Sir Krieg's Trust" +18009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Into the prison" +18010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jail Break" +18011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work" +18012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work" +18013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work" +18014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work" +18015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work" +18016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bodyguard work" +18017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jail Break" +18018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Jail Break" +18019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre's Songs" +18020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre's Songs" +18021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre's Songs" +18022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre's Songs" +18023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Vitre the Spy" +18030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gaebolg Family Curse" +18060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing boy Mikhail" +18061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mikhail's Whereabouts" +18062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Missing boy Mikhail" +18063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The isolated swamp" +18064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to the Village" +18065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"High-strength Adhesive" +18066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Back to the swamp" +18067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Make the paste" +18068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Fixing the Matrushka" +18069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Report to Gallina" +18070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Banishing Winter" +18071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Making the magic dust" +18072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Making the magic dust" +18073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Dragon's Lair" +18074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Magic Gourd Bottle" +18075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Containing People's Speech" +18076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Containing People's Speech" +18077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Csar's Request" +18078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Baba Yaga's Secret Medicine" +18079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Winter is Banished" +18100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Legends from Moscovia" +18101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Moving Island" +18102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In Search of The Moving Island" +18103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"In Search of The Moving Island" +18104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mr. Ibanoff's New Friend" +18105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Repairing Charabel" +18106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"As the Tide Turns" +18107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Departing" +18108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Moving Island?" +18109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Moving Island???" +18110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Aged Stranger" +18111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whale Island!" +18112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Story for the Csar" +18113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Evidence for the Csar" +18114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Before Sunset" +18115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Departing" +18116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Whale Island!" +18117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Materials for Evidence" +18118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Mysterious Musical Instrument" +18119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gusli" +18120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Gusli" +18121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Shafka" +19101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" +19129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Eye of Hellion" + +50000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Pirate Dagger materials" +50001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Weather Beaten Old Man" +50002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lost Treasure?" +50003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lost Treasure?" +50004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure" +50005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure" +50006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure" +50007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure" +50008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure" +50009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Old Man's Treasure" +50010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A special lock pick" +50011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The special lock pick" +50012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Use the lock pick" +50013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Broken lock pick" +50015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box" +50016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box" +50017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box" +50018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box" +50019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box" +50020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The empty treasure box" +50021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"J Roger" +50022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"J Roger's key materials" +50023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Conversation with J Roger" +50024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bury the treasure" +50025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bury the treasure" +50026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bury the treasure" +50027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Buried treasure" +50028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Stolen treasure!" +50029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A Pirate's Spirit!" + +//60000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"60000" +60001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination" +60002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination" +60003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination" +60004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination" +60005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination" +60006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Extermination" +60007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Endless Tower Effect" +60008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Endless Tower Time Limit" +60009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Orc Hero" +60010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Derik Ver's Request" +60011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Byalan" +60012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Abyss" +60013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Investigation" +60014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation" +60015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation" +60016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation" +60017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation" +60018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation" +60019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation" +60020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation" +60021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation" +60022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation" +60023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation" +60024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation" +60025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation" +60026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Continuing the Investigation" +60027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigating Aldebaran" +60028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Investigation" +60029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Aldebaran Monster Investigation" +60030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" +60031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" +60032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Lutie Field Monster Investigation" +60033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" +60034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" +60035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Aldebaran Monster Investigation" +60036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" +60037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Clock Tower Monster Investigation" +60038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Aldebaran Monster Investigation" +60039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim" +60040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim" +60041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Monster Investigation" +60042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim" +60043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim" +60046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim" +60049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim" +60052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Investigation of Glastheim" +60055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Glastheim Monster Investigation" +60058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Derik Ver's Brother" +60059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A history lesson" +60060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"The Crown of Deceit" +60061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A magic solvent" +60062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rendering the crown Inert" +60101,0,1019,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Peco Pecos" +60102,0,1019,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Peco Pecos" +60103,0,1019,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Peco Pecos" +60104,0,1127,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Hodes" +60105,0,1127,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Hodes" +60106,0,1127,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Hodes" +60107,0,1007,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Fabres" +60108,0,1007,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Fabres" +60109,0,1007,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Fabres" +60110,0,1008,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Pupa" +60111,0,1008,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Pupa" +60112,0,1008,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Pupa" +60113,0,1104,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Cocos" +60114,0,1104,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Cocos" +60115,0,1104,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Cocos" +60116,0,1103,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Caramels" +60117,0,1103,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Caramels" +60118,0,1103,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Caramels" +60119,0,1271,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Alligators" +60120,0,1271,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Alligators" +60121,0,1271,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Alligators" +60122,0,1018,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Creamys" +60123,0,1018,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Creamys" +60124,0,1018,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Creamys" +60125,0,1378,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Demon Pungus" +60126,0,1378,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Demon Pungus" +60127,0,1378,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Demon Pungus" +60128,0,1110,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dokebi" +60129,0,1110,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dokebi" +60130,0,1110,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dokebi" +60131,0,1493,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dryads" +60132,0,1493,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dryads" +60133,0,1493,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dryads" +60134,0,1119,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Frilldora" +60135,0,1119,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Frilldora" +60136,0,1119,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Frilldora" +60137,0,1372,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Goats" +60138,0,1372,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Goats" +60139,0,1372,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Goats" +60140,0,1040,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Golems" +60141,0,1040,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Golems" +60142,0,1040,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Golems" +60143,0,1586,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Leaf Cats" +60144,0,1586,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Leaf Cats" +60145,0,1586,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Leaf Cats" +60146,0,1076,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Skeletons" +60147,0,1076,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Skeletons" +60148,0,1076,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Skeletons" +60149,0,1026,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Munaks" +60150,0,1026,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Munaks" +60151,0,1026,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Munaks" +60152,0,1170,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Sohees" +60153,0,1170,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Sohees" +60154,0,1170,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Sohees" +60155,0,1403,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Firelock Soldiers" +60156,0,1403,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Firelock Soldiers" +60157,0,1403,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Firelock Soldiers" +60158,0,1405,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Tengus" +60159,0,1405,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Tengus" +60160,0,1405,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Tengus" +60161,0,1675,25,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Venatu" +60162,0,1675,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Venatu" +60163,0,1675,75,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Venatu" +60164,0,1668,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Archdam" +60165,0,1668,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Archdam" +60166,0,1668,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Archdam" +60167,0,1776,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Siromas" +60168,0,1776,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Siromas" +60169,0,1776,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Siroma" +60170,0,1777,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Ice Titans" +60171,0,1777,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Ice Titans" +60172,0,1777,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Ice Titans" +60173,0,1506,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Disguises" +60174,0,1506,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Disguises" +60175,0,1506,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Disguises" +60176,0,1505,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Loli Ruri" +60177,0,1505,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Loli Ruri" +60178,0,1505,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Loli Ruri" +60179,0,1139,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Mantis" +60180,0,1139,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Mantis" +60181,0,1139,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Mantis" +60182,0,1514,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dancing Dragons" +60183,0,1514,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dancing Dragons" +60184,0,1514,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Dancing Dragons" +60185,0,1870,20,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Necromancers" +60186,0,1870,40,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Necromancers" +60187,0,1870,60,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Necromancers" +60188,0,1365,50,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Apocalypse" +60189,0,1365,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Apocalypse" +60190,0,1365,150,0,0,0,0,0,0,0,0,0,0,0,0,0,"Hunting Apocalypse" + +60200,604800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Endless Tower Effect" +60201,14400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Endless Tower Time Limit" +60301,0,1155,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60302,0,1155,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60303,0,1714,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60304,0,1714,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60305,0,1717,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60306,0,1717,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60307,0,1713,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60308,0,1713,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60309,0,1716,100,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" +60310,0,1716,200,0,0,0,0,0,0,0,0,0,0,0,0,0,"Dragon Hunting" + +// iRO expanded upon the log entries of this quest. +60351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost" +60352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost" +60353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost" +60354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost" +60355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Bathroom Ghost" + +62238,3600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Midgardian Mercenary timer" diff --git a/db/re/skill_cast_db.txt b/db/re/skill_cast_db.txt index f68851e1a3..5950cc77a1 100644 --- a/db/re/skill_cast_db.txt +++ b/db/re/skill_cast_db.txt @@ -51,7 +51,7 @@ //-- MG_LIGHTNINGBOLT 20,640:960:1280:1600:1920:2100:1560:2880:3200:3520,1000:1200:1400:1600:1800:2000:2200:2400:2600:2800,0,0,0,0,160:240:320:400:480:700:640:720:800:880 //-- MG_THUNDERSTORM -21,640:1280:1920:2560:3200:3840:4480:5120:5760:6400,2000:2000:2000:2000:2000:2000:2000:2000:2000:2000,0,500,0,0,160:320:480:640:800:960:1120:1280:1440:1600 +21,640:1280:1920:2560:3200:3840:4480:5120:5760:6400,2000,0,500,0,0,160:320:480:640:800:960:1120:1280:1440:1600 //========================================== @@ -63,7 +63,7 @@ //-- AL_TELEPORT 26,0,0,0,0,0,0,0 //-- AL_WARP -27,0,0,0,5000:10000:15000:20000:25000:30000:35000:40000:45000:50000,0,0,1000 +27,0,1000,0,10000:15000:20000:25000,0,0,1000 //-- AL_HEAL 28,0,1000,0,0,0,0,0 //-- AL_INCAGI @@ -103,7 +103,7 @@ //===== First planned to be shared ========= //-- ALL_RESURRECTION -54,4800:3200:1600:0,0:1000:2000:3000,0,0,0,0,1200:800:400:0 +54,4800:3200:1600:0,0:1000:2000:3000,0,0,0,0,1200:800:400:-1 //========================================== @@ -166,7 +166,7 @@ //-- WZ_VERMILION 85,9600:9280:8960:8640:8320:8000:7680:7360:7040:6720,5000,0,4000,5500:6000:6500:7000:7500:8000:8500:9000:9500:10000,0,2400:2320:2240:2160:2080:2000:1920:1840:1760:1680 //-- WZ_WATERBALL -86,640:1280:1920:2560:3200:3200:3200:3200:3200:3200,0,0,0,0,0,160:320:480:640:800:800:800:800:800:800 +86,640:1280:1920:2560:3200,0,0,0,0,0,160:320:480:640:800 //-- WZ_ICEWALL 87,0,0,0,5000:10000:15000:20000:25000:30000:35000:40000:45000:50000,0,0,0 //-- WZ_FROSTNOVA @@ -174,9 +174,9 @@ //-- WZ_STORMGUST 89,3840:4480:5120:5760:6400:7040:7680:8320:8960:9600,5000,0,4600,12000,0,960:1120:1280:1440:1600:1760:1920:2080:2240:2400 //-- WZ_EARTHSPIKE -90,448:896:1344:1792:2240:2240:2240:2240:2240:2240,1000:1200:1400:1600:1800:2000:2200:2400:2600:2800,0,0,0,0,112:224:336:448:560:560:560:560:560:560 +90,448:896:1344:1792:2240,1000:1200:1400:1600:1800:2000:2200:2400:2600:2800,0,0,0,0,112:224:336:448:560 //-- WZ_HEAVENDRIVE -91,640:1280:1920:2560:3200:3200:3200:3200:3200:3200,1000,0,500,0,0,160:320:480:640:800:800:800:800:800:800 +91,640:1280:1920:2560:3200,1000,0,500,0,0,160:320:480:640:800 //-- WZ_QUAGMIRE 92,0,1000,0,5000:10000:15000:20000:25000,5000:10000:15000:20000:25000,0,0 //========================================== @@ -328,13 +328,13 @@ //-- RG_RAID 214,0,0,0,5000,8000:9000:10000:11000:12000,0,0 //-- RG_STRIPWEAPON -215,560:720:880:1140:1200:1200:1200:1200:1200:1200,1000,0,75000:90000:105000:120000:135000,0,0,140:180:220:260:300:300:300:300:300:300 +215,560:720:880:1140:1200,1000,0,75000:90000:105000:120000:135000,0,0,140:180:220:260:300 //-- RG_STRIPSHIELD -216,560:720:880:1140:1200:1200:1200:1200:1200:1200,1000,0,75000:90000:105000:120000:135000,0,0,140:180:220:260:300:300:300:300:300:300 +216,560:720:880:1140:1200,1000,0,75000:90000:105000:120000:135000,0,0,140:180:220:260:300 //-- RG_STRIPARMOR -217,560:720:880:1140:1200:1200:1200:1200:1200:1200,1000,0,75000:90000:105000:120000:135000,0,0,140:180:220:260:300:300:300:300:300:300 +217,560:720:880:1140:1200,1000,0,75000:90000:105000:120000:135000,0,0,140:180:220:260:300 //-- RG_STRIPHELM -218,560:720:880:1140:1200:1200:1200:1200:1200:1200,1000,0,75000:90000:105000:120000:135000,0,0,140:180:220:260:300:300:300:300:300:300 +218,560:720:880:1140:1200,1000,0,75000:90000:105000:120000:135000,0,0,140:180:220:260:300 //-- RG_GRAFFITI 220,0,0,0,180000,0,0,0 //========================================== @@ -404,7 +404,7 @@ //-- MO_EXPLOSIONSPIRITS 270,0,0,0,180000,0,0,0 //-- MO_EXTREMITYFIST -271,2000:1750:1500:1250:1000:500:1000:1000:1000:1000,3000:2500:2000:1500:1000,0,10000,300000,0,2000:1750:1500:1250:1000:500:1000:1000:1000:1000 +271,2000:1750:1500:1250:1000,3000:2500:2000:1500:1000,0,10000,300000,0,2000:1750:1500:1250:1000 //========================================== @@ -542,7 +542,7 @@ //===== High Priest ======================== //-- HP_ASSUMPTIO -361,800:1200:1600:2000:2400:2400:2400:2400:2400:2400,1100:1200:1300:1400:1500,0,20000:40000:60000:80000:100000,0,0,200:300:400:500:600 +361,800:1200:1600:2000:2400,1100:1200:1300:1400:1500,0,20000:40000:60000:80000:100000,0,0,200:300:400:500:600 //-- HP_BASILICA 362,0,2000:3000:4000:5000:6000,0,20000:25000:30000:35000:40000,20000:25000:30000:35000:40000,0,5000:6000:7000:8000:9000 //========================================== @@ -552,7 +552,7 @@ //-- HW_MAGICCRASHER 365,240,300,0,0,0,0,60 //-- HW_MAGICPOWER -366,0,0,0,30000,0,0,0 +366,0,0,0,30000,0,0,700 //========================================== @@ -574,7 +574,7 @@ //===== Professor ========================== //-- PF_HPCONVERSION -373,1000:1200:1400:1600:1800,0,0,0,0,0,0 +373,0,1000:1200:1400:1600:1800,0,0,0,0,0 //-- PF_SOULCHANGE 374,0,0,0,0,0,0,3000 //-- PF_SOULBURN @@ -629,7 +629,7 @@ //===== Mixed Advanced Skills ============== //-- LK_SPIRALPIERCE -397,150:250:350:450:500:500:500:500:500:500,1200:1400:1600:1800:2000,0,0,1000,0,150:250:350:450:500:500:500:500:500:500 +397,150:250:350:450:500,1200:1400:1600:1800:2000,0,0,1000,0,150:250:350:450:500 //-- LK_HEADCRUSH 398,0,500,0,0,120000,0,0 //-- LK_JOINTBEAT @@ -669,7 +669,7 @@ //===== Taekwon ============================ //-- TK_RUN -411,3000:2500:2000:1500:100:500:0:0:0:0,300,0,1000,150000,0,3000:2500:2000:1500:1000:500:0:0:0:0 +411,3000:2500:2000:1500:1000:500:0:0:0:0,300,0,1000,150000,0,3000:2500:2000:1500:1000:500:-1-1-1-1 //-- TK_DOWNKICK 415,0,0,0,0,3000,0,0 //-- TK_TURNKICK @@ -679,7 +679,7 @@ //-- TK_SEVENWIND 425,0,0,0,300000,0,0,0 //-- TK_HIGHJUMP -426,2500:2000:1500:1000:500:500:500:500:500:500,0,0,0,0,0,2500:2000:1500:1000:500:500:500:500:500:500 +426,2500:2000:1500:1000:500,0,0,0,0,0,2500:2000:1500:1000:500 //========================================== //===== Star Gladiator ===================== @@ -747,13 +747,13 @@ //-- SL_SOULLINKER 461,0,0,0,150000:200000:250000:300000:350000,0,0,1000 //-- SL_KAIZEL -462,3600:3200:2800:2400:2000:2000:2000:2000:2000:2000,0,0,1800000,2000,0,900:800:700:600:500:500:500:500:500:500 +462,3600:3200:2800:2400:2000,0,0,1800000,2000,0,900:800:700:600:500 //-- SL_KAAHI 463,0,0,0,350000,0,0,0 //-- SL_KAUPE 464,400,0,0,600000,0,0,100 //-- SL_KAITE -465,4800:4400:4000:3600:3200:2800:2400:2400:2400:2400,0,0,60000:120000:180000:240000:300000:360000:600000,0,0,1200:1100:1000:900:800:700:600:600:600:600 +465,4800:4400:4000:3600:3200:2800:2400,0,0,60000:120000:180000:240000:300000:360000:600000,0,0,1200:1100:1000:900:800:700:600 //-- SL_STIN 467,80,500,0,0,0,0,20 //-- SL_STUN @@ -763,9 +763,9 @@ //-- SL_SWOO 470,800,500,0,1000:2000:3000:4000:5000:6000:7000,0,0,200 //-- SL_SKE -471,2400:1600:800:800:800:800:800:800:800:800,500,0,10000:20000:30000,3000,0,600:400:200:200:200:200:200:200:200:200 +471,2400:1600:800,500,0,10000:20000:30000,3000,0,600:400:200 //-- SL_SKA -472,2400:1600:800:800:800:800:800:800:800:800,500,0,10000:20000:30000,0,0,600:400:200:200:200:200:200:200:200:200 +472,2400:1600:800,500,0,10000:20000:30000,0,0,600:400:200 //========================================== //-- SM_SELFPROVOKE 473,0,0,0,30000,0,0,0 @@ -790,7 +790,7 @@ //-- HW_GANBANTEIN 483,0,5000,0,0,0,0,3000 //-- HW_GRAVITATION -484,0,0,0,5000:6000:7000:8000:9000,0,0,5000 +484,0,2000,0,5000:6000:7000:8000:9000,0,0,5000 //-- WS_CARTTERMINATION 485,0,0,0,0,5000,0,0 @@ -818,7 +818,7 @@ 493,0,0,0,0,0,0,1000 //-- SL_HIGH -494,0,0,0,150000:200000:250000:300000:350000,0,0,0 +494,0,0,0,150000:200000:250000:300000:350000,0,0,1000 //-- KN_ONEHAND 495,0,0,0,300000,0,0,0 @@ -840,6 +840,8 @@ 500,0,0,0,600000,0,0,0 //-- GS_FLING 501,0,0,0,30000,0,0,0 +//-- GS_TRIPLEACTION +502,0,1000,0,0,0,0,0 //-- GS_BULLSEYE 503,800,1000,0,0,0,0,200 //-- GS_MADNESSCANCEL @@ -848,6 +850,8 @@ 505,800,2000,0,30000,0,0,200 //-- GS_INCREASING 506,0,1000,0,60000,0,0,0 +//-- GS_MAGICALBULLET +507,0,500,0,0,0,0,0 //-- GS_CRACKER 508,0,1000,0,0,5000,0,0 //-- GS_TRACKING @@ -866,6 +870,8 @@ 518,1200,1000,0,0,0,0,300 //-- GS_FULLBUSTER 519,800,1200:1400:1600:1800:2000:2200:2400:2600:2800:3000,0,0,10000,0,200 +//-- GS_SPREADATTACK +520,800,1000,0,0,0,0,200 //-- GS_GROUNDDRIFT 521,800,1000,0,3000:6000:9000:12000:15000:18000:21000:24000:27000:30000,10000,0,200 //========================================== @@ -875,7 +881,7 @@ //-- NJ_KUNAI 524,0,1000,0,0,0,0,0 //-- NJ_HUUMA -525,2400:2400:2400:2400:2400:2400:2400:2400:2400:2400,2000,0,100,0,0,600 +525,2400,2000,0,100,0,0,600 //-- NJ_ZENYNAGE 526,0,5000,0,0,0,0,0 //-- NJ_TATAMIGAESHI @@ -899,7 +905,7 @@ //-- NJ_SUITON 538,2400,2000,0,15000:20000:25000:30000:35000:40000:45000:50000:55000:60000,15000:20000:25000:30000:35000:40000:45000:50000:55000:60000,0,600 //-- NJ_HYOUSYOURAKU -539,1600:2000:2400:2800:3200:3200:3200:3200:3200:3200,2000,0,0,10000:11000:12000:13000:14000:15000:16000:17000:18000:19000,0,400:500:600:700:800:800:800:800:800:800 +539,1600:2000:2400:2800:3200,2000,0,0,10000:11000:12000:13000:14000:15000:16000:17000:18000:19000,0,400:500:600:700:800 //-- NJ_HUUJIN 540,800:1200:1600:2000:2400:2800:3200:3600:4000:4400,1000,0,0,0,0,200:300:400:500:600:700:800:900:1000:1100 //-- NJ_RAIGEKISAI @@ -907,7 +913,7 @@ //-- NJ_KAMAITACHI 542,3200,0,0,0,0,0,800 //-- NJ_NEN -543,4000:3200:2400:1600:800:800:800:800:800:800,0,0,30000:45000:60000:75000:90000,0,0,1000:800:600:400:200:200:200:200:200:200 +543,4000:3200:2400:1600:800,0,0,30000:45000:60000:75000:90000,0,0,1000:800:600:400:200 //========================================== //===== Gangsi Branch and Other Skills ===== @@ -1020,10 +1026,10 @@ 690,0,0,0,60000:80000:100000:120000:140000:160000:180000:200000:220000:240000,0,0,-1 //-- CASH_ASSUMPTIO 691,0,0,0,20000:40000:60000:80000:100000,0,0,-1 - //-- ALL_CATCRY 692,0,5000,0,0,0,0,-1 - +//-- ALL_PARTYFLEE +693,0,0,0,0,0,300000,-1 //-- ALL_ANGEL_PROTECTION 694,0,0,0,30000,0,0,-1 //-- ALL_DREAM_SUMMERNIGHT @@ -1078,7 +1084,7 @@ //-- RK_SONICWAVE 2002,0,1000,0,0,0,2000,-1 //-- RK_DEATHBOUND -2003,0,2000,0,2000,0,3000,-1 +2003,0,2000,0,3000,2000,3000,-1 //-- RK_HUNDREDSPEAR 2004,1000:900:800:700:600:500:400:300:200:100,500,0,0,0,3000,-1 //-- RK_WINDCUTTER @@ -1090,11 +1096,11 @@ //-- RK_DRAGONHOWLING 2009,0,0,0,15000,0,10000,-1 //-- RK_MILLENNIUMSHIELD -2011,0,1000,0,180000,60000,60000,-1 +2011,0,1000,0,180000,60000,0,-1 //-- RK_CRUSHSTRIKE -2012,0,0,0,30000,30000,30000,1000 +2012,0,0,0,180000,30000,0,1000 //-- RK_REFRESH -2013,0,0,0,60000,120000,120000,1000 +2013,0,0,0,60000,120000,0,1000 //-- RK_GIANTGROWTH 2014,0,0,0,180000,0,0,1000 //-- RK_STONEHARDSKIN @@ -1102,7 +1108,7 @@ //-- RK_VITALITYACTIVATION 2016,0,0,0,180000,0,0,-1 //-- RK_STORMBLAST -2017,2000,1000,0,0,0,0,-1 +2017,2000,0,0,0,0,0,-1 //-- RK_FIGHTINGSPIRIT 2018,0,0,0,180000,0,0,-1 //-- RK_ABUNDANCE @@ -1113,7 +1119,7 @@ 5005,0,0,0,60000,0,0,-1 //========================================== -//===== Guillotine Cross ==================== +//===== Guillotine Cross =================== //-- GC_VENOMIMPRESS 2021,0,3000:2500:2000:1500:1000,0,10000:20000:30000:40000:50000,0,0,-1 //-- GC_CROSSIMPACT @@ -1125,7 +1131,7 @@ //-- GC_POISONINGWEAPON 2027,0,1000,0,60000:120000:180000:240000:300000,300000,0,-1 //-- GC_WEAPONBLOCKING -2028,0,2000,0,180000,0,0,-1 +2028,0,2000,0,180000,2000,0,-1 //-- GC_COUNTERSLASH 2029,0,2000,0,0,0,0,-1 //-- GC_WEAPONCRUSH @@ -1197,27 +1203,27 @@ //-- WL_JACKFROST 2204,2000:2500:3000:3500:4000,1000,0,10000:15000:20000:25000:30000,0,0,1000 //-- WL_MARSHOFABYSS -2205,2500,1000,0,25000,0,0,500 +2205,2500,1000,0,30000,0,0,500 //-- WL_RECOGNIZEDSPELL 2206,1000,1000,0,60000:90000:120000:150000:180000,0,50000:80000:110000:140000:170000,1000 //-- WL_SIENNAEXECRATE 2207,2000,2000,0,10000:12000:14000:16000:18000,0,0,-1 //-- WL_STASIS -2209,3000,1000,0,10000:15000:20000:25000:30000,0,300000,1000 +2209,3000,2000,0,10000:15000:20000:25000:30000,0,180000:190000:200000:210000:220000,1000 //-- WL_DRAINLIFE 2210,4000,0,0,0,0,2000,1000 //-- WL_CRIMSONROCK -2211,5000,2000,0,3000:4000:5000:6000:7000,0,5000,2000 +2211,5000,2000,0,5000,0,5000,1000 //-- WL_HELLINFERNO 2212,3000,1000,0,15000,0,0,1000 //-- WL_COMET -2213,10000:11000:12000:13000:14000,0,0,15000,0,60000,1000:1500:2000:2500:3000 +2213,10000:11000:12000:13000:14000,2000,0,100,42000,60000,1000:1500:2000:2500:3000 //-- WL_CHAINLIGHTNING 2214,3500:4000:4500:5000:5500,0,0,100,0,3000,1000 //-- WL_EARTHSTRAIN -2216,2000:3000:4000:5000:6000,1000,0,150,75000:90000:105000:120000:135000,10000,2000 +2216,2000:3000:4000:5000:6000,1000,0,100,75000:90000:105000:120000:135000,10000,2000 //-- WL_TETRAVORTEX -2217,5000:6000:7000:8000:9000,2000,0,20000,0,15000,2000 +2217,5000:6000:7000:8000:9000,2000,0,0,0,15000,2000 //-- WL_SUMMONFB 2222,2000,0,0,120000:160000:200000:240000:280000,0,0,-1 //-- WL_SUMMONBL @@ -1227,7 +1233,7 @@ //-- WL_SUMMONSTONE 2229,2000,0,0,120000:160000:200000:240000:280000,0,0,-1 //-- WL_READING_SB -2231,5000,500,0,0,0,0,1000 +2231,5000,500,0,30000,0,0,1000 //-- WL_TELEKINESIS_INTENSE 5012,1000,0,0,180000,0,300000,-1 //========================================== @@ -1236,7 +1242,7 @@ //-- RA_ARROWSTORM 2233,2000:2200:2400:2600:2800:3000:3200:3400:3600:3800,0,0,0,0,5000:4800:4600:4400:4200:4000:3800:3600:3400:3200,-1 //-- RA_FEARBREEZE -2234,2000,0,0,60000:90000:120000:150000:180000,0,0,0 +2234,0,0,0,60000:90000:120000:150000:180000,0,0,2000 //-- RA_AIMEDBOLT 2236,4000,1000,0,0,0,0,500 //-- RA_DETONATOR @@ -1266,7 +1272,7 @@ //-- RA_FIRINGTRAP 2253,0,0,0,15000,15000,0,-1 //-- RA_ICEBOUNDTRAP -2254,0,0,0,20000,15000,0,-1 +2254,0,0,0,15000,20000,0,-1 //-- RA_UNLIMIT 5002,0,500,0,60000,0,300000,1000 //========================================== @@ -1281,7 +1287,7 @@ //-- NC_FLAMELAUNCHER 2259,500:1000:1500,1500:1000:500,0,7000:14000:21000,0,0,500 //-- NC_COLDSLOWER -2260,1000,1000:2000:3000,0,7000:14000:21000,0,0,-1 +2260,1000,1000:2000:3000,0,7000:14000:21000,40000,0,-1 // -- NC_ARMSCANNON 2261,1400:1600:1800,500:1000:2000,0,0,0,0,600:400:200 //-- NC_ACCELERATION @@ -1301,7 +1307,7 @@ //-- NC_INFRAREDSCAN 2270,0,500,0,3000,0,3000,-1 //-- NC_ANALYZE -2271,0,1000,0,20000,0,0,-1 +2271,0,1000,0,20000,0,0,1000 //-- NC_MAGNETICFIELD 2272,0,0,0,4000:6000:8000,0,20000:15000:10000,-1 //-- NC_NEUTRALBARRIER @@ -1323,7 +1329,7 @@ //-- NC_DISJOINT 2283,2000,0,0,0,0,0,-1 //-- NC_MAGMA_ERUPTION (dur1=stun, dur2=burning) -5006,1000,0,0,10000,42000,0,-1 +5006,1000,0,0,10000,42000,10000:9000:8000:7000:6000,-1 //========================================== //===== Shadow Chaser ====================== @@ -1338,7 +1344,7 @@ //-- SC_TRIANGLESHOT 2288,1000,500,0,0,0,0,-1 //-- SC_BODYPAINT -2289,0,1000,0,5000:7000:9000:11000:13000,0,2000,-1 +2289,0,1000,0,5000:7000:9000:11000:13000,10000,2000,-1 //-- SC_INVISIBILITY 2290,1000,1000,0,0,0,20000:30000:40000:50000:60000,-1 //-- SC_DEADLYINFECT @@ -1355,7 +1361,7 @@ 2296,2000,1000,0,10000:15000:20000,0,2000,-1 //-- SC_WEAKNESS 2297,2000,1000,0,10000:15000:20000,0,2000,-1 -//-- SC_STRIPACCESORY +//-- SC_STRIPACCESSARY 2298,1000,1000,0,60000:70000:80000:90000:100000,0,0,-1 //-- SC_MANHOLE 2299,1000,2000,0,5000:10000:15000,5000:10000:15000,0,-1 @@ -1365,49 +1371,49 @@ 2301,2000,2000,0,5000:10000:15000,4000:8000:12000,0,-1 //-- SC_MAELSTROM 2302,2000,2000,0,7000:14000:21000,0,0,-1 -//-- SC_BLOODYLUST //dur2=intr +//-- SC_BLOODYLUST 2303,2000,2000,0,10000:20000:30000,0,180000,-1 //-- SC_FEINTBOMB 2304,1000,0,0,500,1500,5000,-1 //-- SC_ESCAPE -5010,0,0,0,1000,0,15000,-1 +5010,0,500,0,50000,20000,10000:8000:6000:4000:2000,-1 //========================================== //==== Royal Guard skills ================== //-- LG_CANNONSPEAR 2307,0,0,0,0,0,2000,-1 //-- LG_TRAMPLE -2309,0,0,0,0,0,1000,-1 +2309,0,1000,0,0,0,0,-1 //-- LG_SHIELDPRESS 2310,0,0,0,3500:4000:4500:5000:5500,0,2000,-1 //-- LG_REFLECTDAMAGE 2311,0,0,0,300000,0,0,-1 //-- LG_PINPOINTATTACK -2312,0,1000,0,5000,0,5000,-1 +2312,0,1000,0,12000,0,5000,-1 //-- LG_FORCEOFVANGUARD -2313,0,1000,0,300000,0,0,-1 +2313,0,1000,0,300000,0,0,1000 //-- LG_RAGEBURST 2314,0,3000,0,0,0,0,-1 -//-- LG_SHIELDSPELL //TODO apply proper duration [malufett] -2315,1000,1000,0,3000:30000:30000,0,2000,0 +//-- LG_SHIELDSPELL +2315,1000,1000,0,3000:30000:30000,0,2000,-1 //-- LG_EXEEDBREAK -2316,5000:5500:6000:6500:7000,1000,0,300000,0,0,0 +2316,5000:5500:6000:6500:7000,1000,0,300000,0,0,-1 //-- LG_OVERBRAND -2317,500,2000,0,0,0,0,0 +2317,500,2000,0,0,0,0,-1 //-- LG_PRESTIGE 2318,1000,0,0,30000:45000:60000:75000:90000,0,60000,2000 //-- LG_BANDING 2319,0,0,0,-1,2000:4000:6000:8000:10000,0,-1 //-- LG_MOONSLASHER -2320,1000,1000,0,0,0,6000:5000:4000:3000:2000,0 +2320,1000,1000,0,0,0,6000:5000:4000:3000:2000,-1 //-- LG_RAYOFGENESIS 2321,2000:2500:3000:3500:4000,2000,0,10000,0,5000,500 //-- LG_PIETY -2322,3000:2500:2000:1500:1000,0,0,60000:80000:100000:120000:140000,0,0,0 +2322,3000:2500:2000:1500:1000,0,0,60000:80000:100000:120000:140000,0,0,-1 //-- LG_EARTHDRIVE -2323,1000,1000,0,3000:6000:9000:12000:15000,0,7000:6000:5000:4000:3000,0 +2323,1000,1000,0,3000:6000:9000:12000:15000,0,7000:6000:5000:4000:3000,-1 //-- LG_HESPERUSLIT -2324,1000,3000,0,0,0,20000,0 +2324,1000,3000,0,0,0,20000,-1 //-- LG_INSPIRATION 2325,2000,2000,0,30000:45000:60000:75000:90000,0,540000:480000:420000:360000:300000,1000 //-- LG_KINGS_GRACE @@ -1470,7 +1476,7 @@ //==== Minstresl skills ==================== //-- MI_RUSH_WINDMILL -2381,0,2000,0,60000,0,0,-1 +2381,1000,2000,0,60000,0,0,-1 //-- MI_ECHOSONG 2382,1000,2000,0,60000,0,0,-1 //-- MI_HARMONIZE @@ -1485,13 +1491,13 @@ //-- WM_DOMINION_IMPULSE 2417,0,1000,0,0,0,0,-1 //-- WM_SEVERE_RAINSTORM -2418,1500:2000:2500:3000:3500,1000,0,3300,0,5000:5500:6000:6500:7000,500 +2418,1500:2000:2500:3000:3500,1000,0,3400,0,5000:5500:6000:6500:7000,500 //-- WM_POEMOFNETHERWORLD 2419,3000,0,0,9000:11000:13000:15000:17000,8000:10000:12000:14000:16000,0,-1 //-- WM_VOICEOFSIREN 2420,2000:2200:2400:2600:2800,1000,0,15000:18000:21000:24000:27000,0,5000,-1 //-- WM_DEADHILLHERE -2421,4000:3500:3000:2500:2000,1000,0,0,0,0,1000 +2421,3000:2500:2000:1500:1000,1000,0,0,0,0,1000 //-- WM_LULLABY_DEEPSLEEP 2422,2000,1000,0,12000:14000:16000:18000:20000,0,10000,1000 //-- WM_SIRCLEOFNATURE @@ -1507,7 +1513,7 @@ //-- WM_DANCE_WITH_WUG 2428,1500:2000:2500:3000:3500,1000,0,30000:60000:90000:120000:150000,0,90000,500 //-- WM_SOUND_OF_DESTRUCTION -2429,0:500:1000:1500:2000,1000,0,0,0,6000:7000:8000:9000:10000,500 +2429,0:500:1000:1500:2000,1000,0,5000,0,6000:7000:8000:9000:10000,500 //-- WM_SATURDAY_NIGHT_FEVER 2430,1000:2000:3000:4000:5000,1000,0,10000:15000:20000:25000:30000,10000:8000:6000:4000:2000,180000,1000 //-- WM_LERADS_DEW @@ -1523,10 +1529,10 @@ //========================================== //==== Sorcerer skills ===================== -//-- SO_FIREWALK //CHECK Duration 2 needs to be added for the PROPERTYWALK status ID. Ask me for more info. [Rytech] -2443,1000,1000,0,12000,0,0,-1 -//-- SO_ELECTRICWALK //CHECK Duration 2 needs to be added for the PROPERTYWALK status ID. Ask me for more info. [Rytech] -2444,1000,1000,0,12000,0,0,-1 +//-- SO_FIREWALK +2443,1000,1000,0,30000,12000,0,-1 +//-- SO_ELECTRICWALK +2444,1000,1000,0,30000,12000,0,-1 //-- SO_SPELLFIST 2445,0,1000,0,20000:25000:30000:35000:40000,0,0,0 //-- SO_EARTHGRAVE @@ -1534,11 +1540,11 @@ //-- SO_DIAMONDDUST 2447,5000:5500:6000:6500:7000,1000,0,500,12000:14000:16000:18000:20000,5000,800:600:400:200:-1 //-- SO_POISON_BUSTER -2448,2200:3400:4600:5800:7000,1000,0,0,0,2000,800:600:400:200:-1 +2448,2200:3400:4600:5800:6000,1000,0,0,0,2000,800:600:400:200:-1 //-- SO_PSYCHIC_WAVE 2449,8000:9000:10000:11000:12000,1000,0,1200:1700:2200:2700:3200,0,5000,1000:900:800:700:600 //-- SO_CLOUD_KILL -2450,2300:2500:2700:2900:3100,1000,0,8000:10000:12000:14000:16000,10000:15000:20000:25000:30000,5000,700:500:300:100:-1 +2450,2300:2500:2700:2900:3100,1000,0,8000:10000:12000:14000:16000,4000:8000:12000:16000:20000,5000,700:500:300:100:-1 //-- SO_STRIKING 2451,1000,1000,0,60000,0,2000,-1 //-- SO_WARMER @@ -1546,7 +1552,7 @@ //-- SO_VACUUM_EXTREME 2453,1000:1500:2000:2500:3000,1000,0,4000:6000:8000:10000:12000,2000,5000,-1 //-- SO_VARETYR_SPEAR -2454,2200:2400:2600:2800:3000,1000,0,0,2200:2400:2600:2800:3000,2000,1800:1600:1400:1200:1000 +2454,2200:2400:2600:2800:3000,1000,0,2200:2400:2600:2800:3000,0,2000,1800:1600:1400:1200:1000 //-- SO_ARRULLO 2455,2200:2400:2600:2800:3000,1000,0,8000:10000:12000:14000:16000,0,5000:6000:7000:8000:9000,800:600:400:200:-1 //-- SO_EL_CONTROL @@ -1573,8 +1579,6 @@ 2467,1000,0,0,60000,0,60000,1000 //-- SO_EARTH_INSIGNIA 2468,1000,0,0,60000,0,60000,1000 -//-- SO_ELEMENTAL_SHIELD -5008,1000,0,0,10000,0,10000,-1 //========================================== //==== Genetic skills ====================== @@ -1627,58 +1631,58 @@ //===== Misc. Skills ======================= //-- ALL_ODINS_RECALL -2533,10000,0,0,0,0,300000,0 +2533,0,0,0,0,0,0,10000 //-- RETURN_TO_ELDICASTES -2534,3000,0,0,0,0,300000,0 +2534,0,0,0,0,0,300000,2000 //-- ALL_GUARDIAN_RECALL -2536,3000,0,0,0,0,300000,0 +2536,0,0,0,0,0,300000,3000 //-- ALL_ODINS_POWER 2537,0,0,0,60000,0,0,0 //========================================== -//===== Rebellion ========================== +//===== Rebellion Skills =================== //-- RL_GLITTERING_GREED //2551,0,0,0,0,0,0,-1 //-- RL_RICHS_COIN -2552,0,1000,0,600000,0,0,-1 +2552,0,1000,0,600000,0,3000,-1 //-- RL_MASS_SPIRAL -2553,2000,1000,0,0,30000,1000,-1 +2553,1000,1000,0,0,30000,10000,2000 //-- RL_BANISHING_BUSTER -2554,3000:2500:2000:1500:1000,1000,0,0,0,1500,-1 +2554,3000:2500:2000:1500:1000,0,0,0,0,10000,-1 //-- RL_B_TRAP -2555,0,0,0,4000,6000:7000:8000:9000:10000,2000,-1 +2555,0,0,0,10000:11000:12000:13000:14000,6000:7000:8000:9000:10000,0,-1 //-- RL_FLICKER -2556,0,500,0,0,0,2000,-1 +2556,0,0,0,0,0,10000,-1 //-- RL_S_STORM -2557,3000:2500:2000:1500:1000,1000,0,0,0,2000,-1 +2557,3000:2500:2000:1500:1000,0,0,0,0,2000,-1 //-- RL_E_CHAIN -2558,0,500,0,45000:60000:75000:90000:105000:120000:135000:150000:165000:180000,0,5000,-1 +2558,0,1000,0,45000:60000:75000:90000:105000:120000:135000:150000:165000:180000,0,5000,-1 //-- RL_QD_SHOT 2559,0,1000,0,1500,0,5000,-1 //-- RL_C_MARKER 2560,0,0,0,30000,0,1000,-1 //-- RL_FIREDANCE -2561,1600:1500:1400:1200:1000,1500,0,0,0,5000,-1 +2561,0,2000,0,0,0,5000,-1 //-- RL_H_MINE -2562,2000,1500,0,30000,15000,5000:4500:4000:3500:3000,-1 +2562,1500,0,0,30000,15000,5000:4500:4000:3500:3000,500 //-- RL_P_ALTER 2563,0,1000,0,30000:45000:60000:75000:90000,0,5000,-1 //-- RL_FALLEN_ANGEL -2564,0,1500,0,0,0,4500:4000:3500:2500:2000,-1 +2564,500,1500,0,0,0,10000:8000:6000:4000:2000,500 //-- RL_R_TRIP -2565,0,1500,0,0,0,3000,-1 +2565,0,1000,0,0,0,1000,-1 //-- RL_D_TAIL -2566,2000,1500,0,0,0,5000,-1 +2566,500,2000,0,0,0,5000,500 //-- RL_FIRE_RAIN -2567,0,1500,0,100,0,5000,-1 +2567,1800:1600:1400:1200:1000,2000,0,100,0,5000,200 //-- RL_HEAT_BARREL 2568,0,1000,0,60000,10000,10000,-1 //-- RL_AM_BLAST -2569,2000,1500,0,0,6000:7000:8000:9000:10000,1000,1000 +2569,2000,1000,0,0,6000:7000:8000:9000:10000,5000,1000 //-- RL_SLUGSHOT -2570,5000:6000:7000:8000:9000,1000,0,2000,0,1500,1000 +2570,5000:6000:7000:8000:9000,1000,0,0,2000,10000,1000 //-- RL_HAMMER_OF_GOD -2571,3000,1000,0,0,3000:3000:4000:4000:5000,3000,-1 +2571,8000,2000,0,0,3000:3000:4000:4000:5000,30000,2000 //-- RL_R_TRIP_PLUSATK //2572,0,0,0,0,0,0,-1 //-- RL_B_FLICKER_ATK @@ -1687,7 +1691,7 @@ //2574,0,0,0,0,0,0,-1 //========================================== -//==== Kagerou & Oboro skills ============== +//==== Kagerou & Oboro Skills ============== //-- KO_YAMIKUMO 3001,0,0,0,200000,0,0,-1 //-- KO_JYUMONJIKIRI @@ -1695,35 +1699,35 @@ //-- KO_SETSUDAN 3005,0,0,0,0,0,3000,-1 //-- KO_BAKURETSU -3006,1000:1400:1800:2200:2600,1000,0,100,0,3000,0 +3006,1000:1400:1800:2200:2600,1000,0,100,0,3000,-1 //-- KO_HAPPOKUNAI 3007,0,500,0,0,0,0,-1 //-- KO_MUCHANAGE -3008,1000,0,0,100,0,10000,-1 +3008,1000,0,0,0,0,10000,-1 //-- KO_HUUMARANKA -3009,1000:1200:1400:1600:1800,1000,0,500,0,3000,-1 +3009,1000:1200:1400:1600:1800,1000,0,100,0,3000,-1 //-- KO_MAKIBISHI 3010,0,0,0,12000:14000:16000:18000:20000,2500:3000:3500:4000:4500,10000,-1 //-- KO_MEIKYOUSISUI -3011,3000,0,0,10000,0,10000,0 +3011,3000,0,0,10000,0,10000,-1 //-- KO_ZANZOU 3012,0,1000,0,27000:24000:21000:18000:15000,0,30000:27000:24000:21000:18000,-1 //-- KO_KYOUGAKU -3013,3000:2500:2000:1500:1000,1000,0,12000:14000:16000:18000:20000,0,10000,0 +3013,3000:2500:2000:1500:1000,1000,0,12000:14000:16000:18000:20000,0,10000,-1 //-- KO_JYUSATSU -3014,3000:2500:2000:1500:1000,1000,0,8000:10000:12000:14000:16000,0,10000,0 +3014,3000:2500:2000:1500:1000,1000,0,8000:10000:12000:14000:16000,0,10000,-1 //-- KO_KAHU_ENTEN -3015,2000,0,0,300000,0,0,0 +3015,2000,0,0,300000,0,0,-1 //-- KO_HYOUHU_HUBUKI -3016,2000,0,0,300000,0,0,0 +3016,2000,0,0,300000,0,0,-1 //-- KO_KAZEHU_SEIRAN -3017,2000,0,0,300000,0,0,0 +3017,2000,0,0,300000,0,0,-1 //-- KO_DOHU_KOUKAI -3018,2000,0,0,300000,0,0,0 +3018,2000,0,0,300000,0,0,-1 //-- KO_ZENKAI -3020,0,1000,0,10000,10000,0,0 +3020,0,1000,0,10000,0,0,-1 //-- KO_GENWAKU -3021,3000:2500:2000:1500:1000,1000,0,30000,0,10000,0 +3021,3000:2500:2000:1500:1000,1000,0,30000,0,10000,-1 //-- KO_IZAYOI 3022,0,0,0,30000:45000:60000:75000:90000,0,60000,-1 //-- KG_KAGEHUMI @@ -1754,7 +1758,7 @@ //========================================== //-- ALL_FULL_THROTTLE -5014,0,0,0,10000:15000:20000:25000:30000,10000,3000000,-1 +5014,0,0,0,10000:15000:20000:25000:30000,10000,1800000,-1 //===== Homunculus Skills ================== //-- HLIF_HEAL @@ -1772,9 +1776,11 @@ //-- HFLI_MOON 8009,0,0,2000,0,0,0,-1 //-- HFLI_FLEET -8010,0,0,0,60000:55000:50000:45000:40000,60000:70000:80000:90000:120000,0,-1 +8010,0,0,0,60000:55000:50000:45000:40000,60000:75000:90000:105000:120000,0,-1 //-- HFLI_SPEED -8011,0,0,0,60000:55000:50000:45000:40000,60000:70000:80000:90000:120000,0,-1 +8011,0,0,0,60000:55000:50000:45000:40000,60000:75000:90000:105000:120000,0,-1 +//-- HFLI_SBR44 +8012,0,1000,0,0,0,0,-1 //-- HVAN_CAPRICE 8013,0,2000:2200:2400:2600:2800,0,0,0,0,-1 //-- HVAN_CHAOTIC @@ -1786,7 +1792,7 @@ //-- MH_SUMMON_LEGION 8018,1600:1400:1200:1000:800,0,0,20000:30000:40000:50000:60000,0,0,400:600:800:1000:1200 //-- MH_NEEDLE_OF_PARALYZE -8019,1000:1100:1200:1300:1400,0,0,12000:14000:16000:18000:20000,0,0,500:400:300:200:100 +8019,1000:1100:1200:1300:1400,2000,0,12000:14000:16000:18000:20000,0,0,500:400:300:200:100 //-- MH_POISON_MIST 8020,500:700:900:1100:1300,0,0,12000:14000:16000:18000:20000,4000:6000:8000:10000:12000,0,500 //-- MH_PAIN_KILLER @@ -1798,49 +1804,49 @@ //-- MH_ERASER_CUTTER 8024,1000:1500:2000:2500:3000,2000,0,0,0,0,-1 //-- MH_XENO_SLASHER -8025,1500:2500:3500:4500:5500,5000,0,500,0,0,500 +8025,1500:2500:3500:4500:5500,5000,0,500,120000,0,500 //-- MH_SILENT_BREEZE 8026,1000:1200:1400:1600:1800,0,0,9000:12000:15000:18000:21000,0,0,1000:800:600:400:200 //-- MH_STYLE_CHANGE -//8027,0,0,0,0,0,0,0 +8027,0,1000,0,0,0,0,500 //-- MH_SONIC_CRAW -//8028,0,0,0,0,0,0,0 +8028,0,1000,0,0,0,0,-1 //-- MH_SILVERVEIN_RUSH -//8029,0,0,0,0,0,0,0 +8029,0,0,0,5000,0,2000,-1 //-- MH_MIDNIGHT_FRENZY -//8030,0,0,0,0,0,0,0 +8030,0,0,0,10000,0,2000,-1 //-- MH_STAHL_HORN -8031,800:600:400:200:0,0,0,5000,0,0,200:400:600:800:1000 +8031,800:600:400:200:0,3000,0,5000,0,0,200:400:600:800:1000 //-- MH_GOLDENE_FERSE 8032,1000:1200:1400:1600:1800,0,0,30000:45000:60000:75000:90000,0,0,-1 //-- MH_STEINWAND 8033,1000,0,0,30000:45000:60000:75000:90000,0,0,-1 //-- MH_HEILIGE_STANGE -8034,200:400:600:800:1000,0,0,0,0,0,1800:1600:1400:1200:1000 +8034,200:400:600:800:1000,5000,0,0,0,0,1800:1600:1400:1200:1000 //-- MH_ANGRIFFS_MODUS 8035,200:400:600:800:1000,0,0,30000:45000:60000:75000:90000,0,0,-1 //-- MH_TINDER_BREAKER -//8036,0,0,0,5000,0,0,0 +8036,1000,0,0,0,0,0,-1 //-- MH_CBC //8037,0,0,0,0,0,0,0 //-- MH_EQC -//8038,0,0,0,0,0,0,0 +8038,0,1000,0,0,0,0,-1 //-- MH_MAGMA_FLOW -8039,2000:2500:3000:3500:4000,0,0,30000:45000:60000:75000:90000,0,0,2000:1500:1000:500:-1 +8039,2000:2500:3000:3500:4000,1000,0,30000:45000:60000:75000:90000,0,0,2000:1500:1000:500:-1 //-- MH_GRANITIC_ARMOR -8040,6000:5500:5000:4500:4000,0,0,60000,0,0,1000 +8040,5000:4500:4000:3500:3000,1000,0,60000,0,0,1000 //-- MH_LAVA_SLIDE -8041,6000:5500:5000:4500:4000,0,0,12000:14000:16000:18000:20000,0,0,1000 +8041,5000:4500:4000:3500:3000,1000,0,12000:14000:16000:18000:20000,20000,0,1000 //-- MH_PYROCLASTIC -8042,5000:4500:4000:3500:3000,0,0,60000:90000:120000:150000:180000,0,0,1000 +8042,1000:1500:2000:2500:3000,1000,0,60000:90000:120000:150000:180000,0,0,200 //-- MH_VOLCANIC_ASH -8043,5000:4500:4000:3500:3000,0,0,12000:14000:16000:18000:20000,0,0,1000 +8043,4000:3500:3000:2500:2000,1000,0,12000:14000:16000:18000:20000,0,0,1000 //===== Mercenary Skills =================== //-- MS_MAGNUM 8202,0,1500,2000,2000,10000,0,0 //-- MS_BOWLINGBASH -8203,700,2500,0,0,0,0,0 +8203,400,2500,0,0,0,0,100 //-- MS_PARRYING 8204,0,0,0,15000:20000:25000:30000:35000:40000:45000:50000:55000:60000,0,0,0 //-- MS_REFLECTSHIELD @@ -1866,7 +1872,7 @@ //-- ML_BRANDISHSPEAR 8217,350,1200,0,0,0,0,350 //-- ML_SPIRALPIERCE -8218,150:250:350:450:500:500:500:500:500:500,2500,0,0,1000,0,150:250:350:450:500:500:500:500:500:500 +8218,150:250:350:450:500,2500,0,0,1000,0,150:250:350:450:500 //-- ML_DEFENDER 8219,0,800,0,180000,0,0,0 //-- ML_AUTOGUARD @@ -1909,7 +1915,7 @@ //-- EL_WATER_DROP 8405,0,0,0,-1,0,0,-1 //-- EL_WATER_BARRIER -8406,1000,0,0,15000,0,0,-1 +8406,0,0,0,15000,0,0,-1 //-- EL_WIND_STEP 8407,0,0,0,-1,0,0,-1 //-- EL_WIND_CURTAIN diff --git a/db/re/skill_db.txt b/db/re/skill_db.txt index ca4bb1bc3c..3ae02c5e5a 100644 --- a/db/re/skill_db.txt +++ b/db/re/skill_db.txt @@ -41,6 +41,7 @@ // 0x08000 - skill that ignore bg reduction // 0x10000 - skill that ignore gvg reduction // 0x20000 - makes 'self'/'place' skill cannot be casted/placed when near NPC (see 'db/skill_nonearnpc_db.txt' for more options) +// 0x40000 - skill that can hit trap-type skill (inf2 has 0x00080) // 13 maxcount: max amount of skill instances to place on the ground when // player_land_skill_limit/monster_land_skill_limit is enabled. For skills // that attack using a path, this is the path length to be used. @@ -76,7 +77,7 @@ 4,0,0,0,0,0,0,10,0,no,0,0,0,none,0,0x0, SM_RECOVERY,Increase HP Recovery 5,-1,6,1,-1,0,0,10,1,no,0,0,0,weapon,0,0x0, SM_BASH,Bash 6,9,6,1,0,1,0,10,1,no,0,0,0,none,0,0x0, SM_PROVOKE,Provoke -7,0,6,4,3,0x2,2,10,1,no,0,0,0,weapon,2,0x0, SM_MAGNUM,Magnum Break +7,0,6,4,3,0x2,2,10,1,no,0,0x40000,0,weapon,2,0x0, SM_MAGNUM,Magnum Break 8,0,6,4,0,0x1,0,10,1,no,0,0,0,weapon,0,0x0, SM_ENDURE,Endure //**** @@ -128,7 +129,7 @@ 44,0,0,0,0,0,0,10,0,no,0,0,0,none,0,0x0, AC_VULTURE,Vulture's Eye 45,0,6,4,0,0x3,3,10,1,no,0,0,0,weapon,0,0x0, AC_CONCENTRATION,Improve Concentration 46,-9,8,1,-1,0,0,10,2,no,0,0,0,weapon,0,0x80, AC_DOUBLE,Double Strafe -47,-9,6,2,-1,0x2,2,10,1,no,0,0x0,0,weapon,2,0x81, AC_SHOWER,Arrow Shower +47,-9,6,2,-1,0x2,2,10,1,no,0,0x40000,0,weapon,2,0x81, AC_SHOWER,Arrow Shower //**** // Thief @@ -146,11 +147,11 @@ 55,0,0,0,0,0,0,10,0,no,0,0,0,weapon,0,0x0, KN_SPEARMASTERY,Spear Mastery 56,-2,8,1,-1,0,0,10,3,no,0,0,0,weapon,0,0x0, KN_PIERCE,Pierce 57,-2,6,1,-1,0x1,0,10,1,no,0,0,0,weapon,3,0x20000, KN_BRANDISHSPEAR,Brandish Spear -58,-4,6,1,-1,0x2,0,10,1,no,0,0,0,weapon,6,0x0, KN_SPEARSTAB,Spear Stab +58,-4,6,1,-1,0x2,0,10,1,no,0,0x40000,0,weapon,6,0x0, KN_SPEARSTAB,Spear Stab 59,3:5:7:9:11,6,1,-1,0,0,5,1,no,0,0,0,weapon,0,0x0, KN_SPEARBOOMERANG,Spear Boomerang 60,0,6,4,0,0x1,0,10,1,no,0,0,0,weapon,0,0x0, KN_TWOHANDQUICKEN,Twohand Quicken 61,0,6,4,-1,0,0,5,1,no,0,0,0,weapon,0,0x0, KN_AUTOCOUNTER,Counter Attack -62,-2,6,1,-1,0x2,1,10,1,no,0,0,0,weapon,1,0x0, KN_BOWLINGBASH,Bowling Bash +62,-2,6,1,-1,0x2,1,10,1,no,0,0x40000,0,weapon,1,0x0, KN_BOWLINGBASH,Bowling Bash 63,0,0,0,0,0,0,1,0,no,0,0,0,weapon,0,0x0, KN_RIDING,Peco Peco Riding 64,0,0,0,0,0,0,5,0,no,0,0,0,weapon,0,0x0, KN_CAVALIERMASTERY,Cavalier Mastery @@ -175,7 +176,7 @@ //**** // Wizard 80,9,8,2,3,0x20,1:1:1:1:1:2:2:2:2:2:2,10,-3:-4:-5:-6:-7:-8:-9:-10:-11:-12:-12,yes,0,0x2000,5,magic,0,0x0, WZ_FIREPILLAR,Fire Pillar -81,0,6,4,3,0,7,10,1,yes,0,0x2000,0,magic,5,0x20, WZ_SIGHTRASHER,Sightrasher +81,0,6,4,3,0x2,7,10,1,yes,0,0x42000,0,magic,5,0x20, WZ_SIGHTRASHER,Sightrasher 83,9,8,2,3,0,3:3:3:3:3:3:3:3:3:3:14,10,1:1:2:2:3:3:4:4:5:5:15,yes,0,0x2000,0,magic,0,0x20, WZ_METEOR,Meteor Storm 84,9,8,1,4,0,0,10,3:4:5:6:7:8:9:10:11:12,yes,0,0x2000,0,magic,2:3:3:4:4:5:5:6:6:7,0x20, WZ_JUPITEL,Jupitel Thunder 85,9,8,2,4,0,0,10,-10,yes,0,0x2000,0,magic,0,0x20, WZ_VERMILION,Lord of Vermilion @@ -217,13 +218,13 @@ 115,3,6,2,0,0x1,0,5,1,no,0,0x80,0,misc,6:7:8:9:10,0x3000, HT_SKIDTRAP,Skid Trap 116,3,6,2,2,0x42,0,5,1,no,0,0x80,0,misc,0,0x3800, HT_LANDMINE,Land Mine 117,3,6,2,0,0x1,0,5,1,no,0,0x80,0,misc,0,0x3000, HT_ANKLESNARE,Ankle Snare -118,3,6,2,0,0x2,1,5,1,no,0,0x80,0,misc,0,0x3000, HT_SHOCKWAVE,Shockwave Trap +118,3,6,2,0,0x3,1,5,1,no,0,0x80,0,misc,0,0x3000, HT_SHOCKWAVE,Shockwave Trap 119,3,6,2,0,0x3,2,5,1,no,0,0x80,0,misc,0,0x3000, HT_SANDMAN,Sandman 120,3,6,2,0,0x3,1,5,1,no,0,0x80,0,misc,0,0x3000, HT_FLASHER,Flasher 121,3,6,2,1,0x42,1,5,1,no,0,0x80,0,weapon,0,0x3800, HT_FREEZINGTRAP,Freezing Trap 122,3,6,2,4,0x42,1,5,1,no,0,0x80,0,misc,0,0x3800, HT_BLASTMINE,Blast Mine -123,3,6,2,3,0x42,2,5,1,no,0,0x80,0,misc,0,0x3800, HT_CLAYMORETRAP,Claymore Trap -124,2,6,32,0,0x1,0,1,1,no,0,0,0,misc,0,0x0, HT_REMOVETRAP,Remove Trap +123,3,6,2,3,0x42,2,5,1,no,0,0x40080,0,misc,0,0x3800, HT_CLAYMORETRAP,Claymore Trap +124,2,6,32,0,0x1,0,1,1,no,0,0x40000,0,misc,0,0x0, HT_REMOVETRAP,Remove Trap 125,3,6,2,0,0x1,0,1,1,no,0,0x80,0,misc,0,0x2000, HT_TALKIEBOX,Talkie Box 126,0,0,0,0,0,0,10,0,no,0,0,0,weapon,0,0x0, HT_BEASTBANE,Beast Bane 127,0,0,0,0,0,0,1,0,no,0,0,0,misc,0,0x0, HT_FALCON,Falconry Mastery @@ -258,7 +259,7 @@ 150,0,6,4,0,0x1,0,1,1,no,0,0x1,0,weapon,5,0x40, TF_BACKSLIDING,Back Slide 151,0,6,4,0,0x1,0,1,1,no,0,0x1,0,none,0,0x0, TF_PICKSTONE,Find Stone 152,7,6,1,0,0x40,0,1,1,no,0,0x1,0,misc,0,0x0, TF_THROWSTONE,Stone Fling -153,1,6,1,-1,0x2,1,1,1,no,0,0x1,0,weapon,2,0x0, MC_CARTREVOLUTION,Cart Revolution +153,1,6,1,-1,0x2,1,1,1,no,0,0x40001,0,weapon,2,0x0, MC_CARTREVOLUTION,Cart Revolution 154,0,6,4,0,0x1,0,1,1,no,0,0x1,0,none,0,0x0, MC_CHANGECART,Change Cart 155,0,6,4,0,0x1,0,1,1,no,0,0x1,0,weapon,0,0x0, MC_LOUD,Crazy Uproar 156,9,6,1,6,0,0,1,1,yes,0,0x1,0,magic,0,0x20, AL_HOLYLIGHT,Holy Light @@ -325,7 +326,7 @@ 211,1,6,1,0,0x1,0,10,1,no,0,0,0,weapon,0,0x0, RG_STEALCOIN,Mug 212,-1,6,1,-1,0x40,0,10,1,no,0,0,0,weapon,0,0x4, RG_BACKSTAP,Back Stab 213,0,0,0,0,0,0,5,0,no,0,0,0,none,0,0x0, RG_TUNNELDRIVE,Stalk -214,0,6,4,-1,0x2,3,5,1,no,0,0,0,weapon,0,0x4, RG_RAID,Sightless Mind +214,0,6,4,-1,0x2,3,5,1,no,0,0x40000,0,weapon,0,0x4, RG_RAID,Sightless Mind 215,1,6,1,0,0x1,0,5,1,no,0,0,0,weapon,0,0x20, RG_STRIPWEAPON,Divest Weapon 216,1,6,1,0,0x1,0,5,1,no,0,0,0,weapon,0,0x20, RG_STRIPSHIELD,Divest Shield 217,1,6,1,0,0x1,0,5,1,no,0,0,0,weapon,0,0x20, RG_STRIPARMOR,Divest Armor @@ -369,8 +370,8 @@ 249,0,6,4,0,0x1,0,10,1,no,0,0,0,weapon,0,0x0, CR_AUTOGUARD,Guard 250,3,6,1,0,0,0,5,1,no,0,0,0,weapon,5:6:7:8:9,0x0, CR_SHIELDCHARGE,Smite 251,3:5:7:9:11,6,1,0,0,0,5,1,no,0,0,0,weapon,0,0x20000, CR_SHIELDBOOMERANG,Shield Boomerang -252,0,6,4,0,0,0,10,1,no,0,0,0,weapon,0,0x0, CR_REFLECTSHIELD,Shield Reflect -253,-2,8,1,6,0,0,10,-2,no,0,0,0,weapon,0,0x0, CR_HOLYCROSS,Holy Cross +252,0,6,4,0,0x1,0,10,1,no,0,0,0,weapon,0,0x0, CR_REFLECTSHIELD,Shield Reflect +253,-2,8,1,6,0,0,10,-2,no,0,0x40000,0,weapon,0,0x0, CR_HOLYCROSS,Holy Cross 254,5,6,4,6,0x48,0,10,1,no,33,0x100,0,magic,0,0x0, CR_GRANDCROSS,Grand Cross 255,7:8:9:10:11,6,16,0,0x1,0,5,1,yes,0,0x600,0,none,0,0x0, CR_DEVOTION,Sacrifice 256,9,6,16,0,0x1,0,5,1,yes,0,0x200,0,none,0,0x0, CR_PROVIDENCE,Resistant Souls @@ -383,15 +384,15 @@ 260,0,0,0,0,0,0,5,0,no,0,0,0,weapon,0,0x0, MO_SPIRITSRECOVERY,Spiritual Cadence 261,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, MO_CALLSPIRITS,Summon Spirit Sphere 262,9,6,16,0,0x1,0,1,1,yes,0,0,0,weapon,0,0x0, MO_ABSORBSPIRITS,Absorb Spirit Sphere -263,-1,8,0,-1,0,0,10,-3,no,0,0,0,weapon,0,0x0, MO_TRIPLEATTACK,Raging Trifecta Blow +263,-1,8,0,-1,0,0,10,-3,no,0,0x40000,0,weapon,0,0x0, MO_TRIPLEATTACK,Raging Trifecta Blow 264,18,6,2,0,0x1,0,1,1,no,0,0,0,none,0,0x0, MO_BODYRELOCATION,Snap 265,0,0,0,0,0,0,10,0,no,0,0,0,weapon,0,0x0, MO_DODGE,Dodge -266,2,6,1,-1,0x40,0,5,1,no,0,0,0,weapon,0,0x0, MO_INVESTIGATE,Occult Impaction -267,9,8,1,-1,0,0,5,1:2:3:4:5,no,0,0,0,weapon,0,0x0, MO_FINGEROFFENSIVE,Throw Spirit Sphere +266,2,6,1,-1,0x40,0,5,1,no,0,0x40000,0,weapon,0,0x0, MO_INVESTIGATE,Occult Impaction +267,9,8,1,-1,0,0,5,1:2:3:4:5,no,0,0x40000,0,weapon,0,0x0, MO_FINGEROFFENSIVE,Throw Spirit Sphere 268,0,6,4,0,0x1,0,5,1,no,0,0,0,weapon,0,0x0, MO_STEELBODY,Mental Strength 269,0,6,4,0,0x1,0,5,1,no,0,0,0,weapon,0,0x0, MO_BLADESTOP,Root 270,0,6,4,0,0x1,0,5,0,no,0,0,0,weapon,0,0x0, MO_EXPLOSIONSPIRITS,Fury -271,-2,6,1,0,0x60,0,5,1,yes,0,0,0,weapon,0,0x0, MO_EXTREMITYFIST,Asura Strike +271,-2,6,1,0,0x60,0,5,1,yes,0,0x40000,0,weapon,0,0x0, MO_EXTREMITYFIST,Asura Strike 272,-2,8,4,-1,0,0,5,-4,no,0,0x200,0,weapon,0,0x0, MO_CHAINCOMBO,Raging Quadruple Blow 273,-2,6,4,-1,0x2,2,5,1,no,0,0x200,0,weapon,0,0x0, MO_COMBOFINISH,Raging Thrust @@ -561,7 +562,7 @@ //**** // Stalker 389,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x60, ST_CHASEWALK,Stealth -390,0,0,4,0,0,0,5,1,yes,0,0,0,weapon,0,0x0, ST_REJECTSWORD,Counter Instinct +390,0,0,4,0,0x1,0,5,1,yes,0,0,0,weapon,0,0x0, ST_REJECTSWORD,Counter Instinct //391,0,0,4,0,1,0,1,1,yes,0,0,0,magic,0,0x0, ST_STEALBACKPACK,Steal Backpack //**** @@ -577,7 +578,7 @@ //**** // Lord Knight -397,5,8,1,-1,0,0,5,5,no,0,0,0,weapon,0,0x20000, LK_SPIRALPIERCE,Spiral Pierce +397,5,8,1,-1,0,0,5,5,no,0,0x40000,0,weapon,0,0x20000, LK_SPIRALPIERCE,Spiral Pierce 398,4,6,1,-1,0,0,5,1,no,0,0,0,weapon,0,0x0, LK_HEADCRUSH,Traumatic Blow 399,4,6,1,-1,0,0,10,1,no,0,0,0,weapon,0,0x0, LK_JOINTBEAT,Vital Strike @@ -598,7 +599,7 @@ //**** // Assassin Cross -406,0,6,4,-1,0xA,2,10,1,no,0,0,0,weapon,0,0x0, ASC_METEORASSAULT,Meteor Assault +406,0,6,4,-1,0xA,2,10,1,no,0,0x40000,0,weapon,0,0x0, ASC_METEORASSAULT,Meteor Assault 407,0,6,4,0,0x1,0,1,0,no,0,0,0,none,0,0x0, ASC_CDP,Create Deadly Poison //**** @@ -629,9 +630,9 @@ //**** // Star Gladiator 427,0,6,4,0,0x1,0,3,1,yes,0,0,0,magic,0,0x0, SG_FEEL,Feeling the Sun Moon and Stars -428,1,6,4,-1,0x2,1,3,1,yes,0,0,0,weapon,2,0x1, SG_SUN_WARM,Warmth of the Sun -429,1,6,4,-1,0x2,1,3,1,yes,0,0,0,weapon,2,0x1, SG_MOON_WARM,Warmth of the Moon -430,1,6,4,-1,0x2,1,3,1,yes,0,0,0,weapon,2,0x1, SG_STAR_WARM,Warmth of the Stars +428,1,6,4,-1,0x3,1,3,1,yes,0,0,0,weapon,2,0x1, SG_SUN_WARM,Warmth of the Sun +429,1,6,4,-1,0x3,1,3,1,yes,0,0,0,weapon,2,0x1, SG_MOON_WARM,Warmth of the Moon +430,1,6,4,-1,0x3,1,3,1,yes,0,0,0,weapon,2,0x1, SG_STAR_WARM,Warmth of the Stars 431,0,0,4,0,0x1,0,4,1,yes,0,0,0,magic,0,0x0, SG_SUN_COMFORT,Comfort of the Sun 432,0,0,4,0,0x1,0,4,1,yes,0,0,0,magic,0,0x0, SG_MOON_COMFORT,Comfort of the Moon 433,0,0,4,0,0x1,0,4,1,yes,0,0,0,magic,0,0x0, SG_STAR_COMFORT,Comfort of the Stars @@ -689,7 +690,7 @@ //**** // Other 2nd Skills -473,0,6,4,0,0,0,1,1,no,0,0,0,none,0,0x0, SM_SELFPROVOKE,Provoke Self +473,0,6,4,0,0x1,0,1,1,no,0,0,0,none,0,0x0, SM_SELFPROVOKE,Provoke Self 474,0,0,4,0,0x1,0,10,1,no,0,0x2,0,none,0,0x0, NPC_EMOTION_ON,Emotion ON 475,0,0,4,0,0x1,0,1,1,yes,0,0,0,none,0,0x0, ST_PRESERVE,Preserve 476,1,6,1,0,0x1,0,5,1,yes,0,0,0,weapon,0,0x20, ST_FULLSTRIP,Divest All @@ -719,14 +720,14 @@ //**** // Gunslinger -500,0,6,4,0,0x40,0,5,1,no,0,0,0,misc,0,0x0, GS_GLITTERING,Flip the Coin +500,0,6,4,0,0x41,0,5,1,no,0,0,0,misc,0,0x0, GS_GLITTERING,Flip the Coin 501,9,6,1,-1,0x50,0,1,1,no,0,0,0,misc,0,0x0, GS_FLING,Fling 502,-9,8,1,-1,0,0,1,3,no,0,0,0,weapon,0,0x0, GS_TRIPLEACTION,Triple Action 503,-9,6,1,-1,0x8,0,1,1,no,0,0,0,weapon,0,0x0, GS_BULLSEYE,Bulls Eye 504,0,6,4,0,0x1,0,1,1,no,0,0,0,weapon,0,0x0, GS_MADNESSCANCEL,Madness Canceller 505,0,6,4,0,0x1,0,1,1,no,0,0,0,weapon,0,0x0, GS_ADJUSTMENT,AdJustment 506,0,6,4,0,0x1,0,1,1,no,0,0,0,weapon,0,0x0, GS_INCREASING,Increasing Accuracy -507,-9,6,1,8,0,0,1,1,no,0,0,0,weapon,0,0x0, GS_MAGICALBULLET,Magical Bullet +507,-9,6,1,8,0x20,0,1,1,no,0,0,0,misc,0,0x0, GS_MAGICALBULLET,Magical Bullet 508,-9,6,1,-1,0x1,0,1,1,no,0,0,0,weapon,0,0x0, GS_CRACKER,Cracker 509,0,0,0,0,0,0,10,0,no,0,0,0,none,0,0x0, GS_SINGLEACTION,Single Action 510,0,0,0,0,0,0,10,0,no,0,0,0,none,0,0x0, GS_SNAKEEYE,Snake Eye @@ -865,12 +866,12 @@ //**** // 2nd Quest Skills -1001,9,6,1,-1,0,0,1,1,no,0,0x1,0,weapon,0,0x0, KN_CHARGEATK,Charge Attack +1001,14,6,1,-1,0,0,1,1,no,0,0x1,0,weapon,0,0x0, KN_CHARGEATK,Charge Attack 1002,0,6,4,0,0x1,0,1,0,no,0,0x1,0,weapon,2,0x0, CR_SHRINK,Shrink 1003,0,0,0,0,0,0,1,0,no,0,0x1,0,weapon,0,0x0, AS_SONICACCEL,Sonic Acceleration 1004,9,8,1,0,0x8,0,1,1,no,0,0x1,0,weapon,0,0x0, AS_VENOMKNIFE,Throw Venom Knife 1005,1,6,1,0,0x1,0,1,1,no,0,0x1,0,weapon,0,0x0, RG_CLOSECONFINE,Close Confine -1006,0,6,4,3,0,1,1,1,yes,0,0x1,0,magic,3,0x20, WZ_SIGHTBLASTER,Sight Blaster +1006,0,6,4,3,0,1,1,1,yes,0,0x40001,0,magic,3,0x20, WZ_SIGHTBLASTER,Sight Blaster 1007,0,6,4,0,0x1,0,1,0,no,0,0x1,0,none,0,0x0, SA_CREATECON,Create Elemental Converter 1008,9,6,1,1,0x1,0,1,1,yes,0,0x1,0,magic,0,0x0, SA_ELEMENTWATER,Elemental Change Water 1009,-9,6,1,0,0,0,1,1,no,0,0x1,0,weapon,3,0x0, HT_PHANTASMIC,Phantasmic Arrow @@ -894,7 +895,7 @@ 2005,1,6,2,4,0x2,2,5,1,no,0,0,0,weapon,3,0x0, RK_WINDCUTTER,Wind Cutter 2006,0,6,4,-1,0x2,5,5,1,no,0,0,0,weapon,0,0x0, RK_IGNITIONBREAK,Ignition Break 2007,0,0,0,0,0,0,5,0,no,0,0,0,none,0,0x0, RK_DRAGONTRAINING,Dragon Training -2008,9,6,2,3,0x42,1:1:1:2:2:2:3:3:4:4,10,1,no,0,0,0,weapon,0,0x0, RK_DRAGONBREATH,Dragon Breath +2008,9,6,2,3,0x42,1:1:1:2:2:2:3:3:4:4,10,1,no,0,0x40000,0,weapon,0,0x0, RK_DRAGONBREATH,Dragon Breath 2009,0,6,4,0,0x3,3:4:5:6:7,5,1,no,0,0,0,none,0,0x0, RK_DRAGONHOWLING,Dragon Howling 2010,0,0,0,0,0,0,10,0,no,0,0,0,none,0,0x0, RK_RUNEMASTERY,Rune Mastery 2011,0,6,4,0,0x1,0,1,1,no,0,0,0,none,0,0x0, RK_MILLENNIUMSHIELD,Millenium Shield @@ -903,7 +904,7 @@ 2014,0,6,4,0,0x1,0,1,1,yes,0,0,0,none,0,0x0, RK_GIANTGROWTH,Giant Growth 2015,0,6,4,0,0x1,0,1,1,yes,0,0,0,none,0,0x0, RK_STONEHARDSKIN,Stone Hard Skin 2016,0,6,4,0,0x1,0,1,1,yes,0,0,0,none,0,0x0, RK_VITALITYACTIVATION,Vitality Activation -2017,0,6,4,-1,0x2,3,1,1,no,0,0,0,weapon,7,0x0, RK_STORMBLAST,Storm Blast +2017,0,6,4,-1,0x2,3,1,1,no,0,0x40000,0,weapon,7,0x0, RK_STORMBLAST,Storm Blast 2018,0,6,4,0,0x3,-1,1,1,yes,0,0,0,none,0,0x0, RK_FIGHTINGSPIRIT,Fighting Spirit //CHECK Is this splash needed? 2019,9,6,4,6,0x1,0,1,1,yes,0,0,0,none,0,0x0, RK_ABUNDANCE,Abundance 2020,5:6:7:8:9,6,1,-1,0,0,5,1,no,0,0,0,weapon,0,0x0, RK_PHANTOMTHRUST,Phantom Thrust @@ -969,11 +970,11 @@ 2038,11,8,1,6,0x2,1,5,-3,yes,0,0,0,magic,0,0x0, AB_JUDEX,Judex 2039,0,6,4,0,0x1,0,1,1,yes,0,0,0,magic,0,0x0, AB_ANCILLA,Ancilla 2040,11,8,1,6,0,0,10,-10,yes,0,0,0,magic,0,0x0, AB_ADORAMUS,Adoramus -2041,0,6,4,6,0x3,3:7:15,3,1,yes,0,0,0,magic,0,0x0, AB_CLEMENTIA,Crementia -2042,0,6,4,6,0x3,3:7:15,3,1,yes,0,0,0,magic,0,0x0, AB_CANTO,Canto Candidus +2041,0,6,4,0,0x3,3:7:15,3,1,yes,0,0,0,magic,0,0x0, AB_CLEMENTIA,Crementia +2042,0,6,4,0,0x3,3:7:15,3,1,yes,0,0,0,magic,0,0x0, AB_CANTO,Canto Candidus 2043,0,6,4,6,0x3,3:7:15,3,1,yes,0,0,0,magic,0,0x0, AB_CHEAL,Coluceo Heal -2044,11,6,2,6,0x1,0,5,1,yes,0,0,1,magic,0,0x0, AB_EPICLESIS,Epiclesis -2045,0,6,4,6,0x3,15,10,1,yes,0,0,0,magic,0,0x0, AB_PRAEFATIO,Praefatio +2044,11,6,2,6,0x1,2,5,1,yes,0,0,1,magic,0,0x0, AB_EPICLESIS,Epiclesis +2045,0,6,4,0,0x3,15,10,1,yes,0,0,0,magic,0,0x0, AB_PRAEFATIO,Praefatio 2046,0,6,4,6,0x3,15,10,1,yes,0,0,0,magic,0,0x0, AB_ORATIO,Oratio 2047,0,6,4,6,0x3,15,4,1,yes,0,0,0,magic,0,0x0, AB_LAUDAAGNUS,Lauda Agnus 2048,0,6,4,6,0x3,15,4,1,yes,0,0,0,magic,0,0x0, AB_LAUDARAMUS,Lauda Ramus @@ -995,7 +996,7 @@ 2234,0,6,4,0,0,0,5,1,yes,0,0,0,none,0,0x0, RA_FEARBREEZE,Fear Breeze 2235,0,0,0,0,0,0,10,0,no,0,0,0,none,0,0x0, RA_RANGERMAIN,Ranger Main 2236,9,8,1,-1,0,0,10,1,yes,0,0,0,weapon,0,0x80, RA_AIMEDBOLT,Aimed Bolt -2237,9,6,2,0,0x3,3,1,1,no,0,0,0,none,0,0x2000, RA_DETONATOR,Detonator +2237,9,6,2,0,0x3,3,1,1,no,0,0x40000,0,none,0,0x2000, RA_DETONATOR,Detonator 2238,3,6,2,0,0x3,2,5,1,no,0,0x80,3,misc,0,0x2000, RA_ELECTRICSHOCKER,Electric Shocker 2239,3,6,2,0,0x42,3,5,1,no,0,0x80,3,misc,0,0x2800, RA_CLUSTERBOMB,Cluster Bomb 2240,0,6,4,0,0,0,1,1,no,0,0,0,none,0,0x0, RA_WUGMASTERY,Warg Mastery @@ -1004,15 +1005,15 @@ 2243,9,6,1,0,0x40,0,5,1,no,0,0,0,weapon,0,0x2000, RA_WUGSTRIKE,Warg Strike 2244,9,6,1,0,0x40,0,5,1,no,0,0,0,weapon,0,0x80, RA_WUGBITE,Warg Bite 2245,0,0,0,0,0,0,10,0,no,0,0,0,none,0,0x0, RA_TOOTHOFWUG,Tooth of Warg -2246,0,6,4,0,0x2,3:4:5:6:7,5,1,no,0,0,0,weapon,0,0x0, RA_SENSITIVEKEEN,Sensitive Keen +2246,0,6,4,0,0x2,3:4:5:6:7,5,1,no,0,0x40000,0,weapon,0,0x0, RA_SENSITIVEKEEN,Sensitive Keen 2247,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x42, RA_CAMOUFLAGE,Camouflage 2248,0,0,0,0,0,0,5,0,no,0,0,0,none,0,0x0, RA_RESEARCHTRAP,Research Trap 2249,3,6,2,3,0x43,2,1,1,no,0,0x80,1,misc,0,0x2000, RA_MAGENTATRAP,Magenta Trap 2250,3,6,2,1,0x43,2,1,1,no,0,0x80,1,misc,0,0x2000, RA_COBALTTRAP,Cobalt Trap 2251,3,6,2,2,0x43,2,1,1,no,0,0x80,1,misc,0,0x2000, RA_MAIZETRAP,Maize Trap 2252,3,6,2,4,0x43,2,1,1,no,0,0x80,1,misc,0,0x2000, RA_VERDURETRAP,Verdure Trap -2253,3,6,2,3,0x42,2,5,1,no,0,0x80,2,misc,0,0x2800, RA_FIRINGTRAP,Firing Trap -2254,3,6,2,1,0x42,2,5,1,no,0,0x80,2,misc,0,0x2800, RA_ICEBOUNDTRAP,Icebound Trap +2253,3,6,2,3,0x42,2,5,1,no,0,0x40080,2,misc,0,0x2800, RA_FIRINGTRAP,Firing Trap +2254,3,6,2,1,0x42,2,5,1,no,0,0x40080,2,misc,0,0x2800, RA_ICEBOUNDTRAP,Icebound Trap //**** // NC Mechanic @@ -1021,14 +1022,14 @@ 2257,3,6,1,-1,0,0,3,1,no,0,0,0,weapon,0,0x0, NC_PILEBUNKER,Pile Bunker 2258,13,6,1,-1,0x2,1,3,1,no,0,0,0,weapon,0,0x0, NC_VULCANARM,Vulcan Arm 2259,7,6,1,3,0,2,3,1,no,0,0,5,weapon,0,0x0, NC_FLAMELAUNCHER,Flame Launcher -2260,7,6,2,1,0x2,2:3:4,3,1,no,0,0,0,weapon,0,0x0, NC_COLDSLOWER,Cold Slower -2261,9:11:13,6,2,-1,0x42,3:2:1,3,1,no,0,0,0,weapon,0,0x0, NC_ARMSCANNON,Arm Cannon +2260,7,6,2,1,0x2,2:3:4,3,1,no,0,0x40000,0,weapon,0,0x0, NC_COLDSLOWER,Cold Slower +2261,9:11:13,6,1,-1,0x42,3:2:1,3,1,no,0,0,0,weapon,0,0x0, NC_ARMSCANNON,Arm Cannon 2262,0,6,4,0,0x1,0,3,1,no,0,0,0,none,0,0x0, NC_ACCELERATION,Acceleration 2263,0,6,4,0,0x1,0,1,1,no,0,0,0,none,0,0x0, NC_HOVERING,Hovering 2264,0,6,4,0,0x1,0,1,1,no,0,0,0,none,7,0x0, NC_F_SIDESLIDE,Front-Side Slide 2265,0,6,4,0,0x1,0,1,1,no,0,0,0,none,7,0x0, NC_B_SIDESLIDE,Back-Side Slide 2266,0,0,0,0,0,0,4,0,no,0,0,0,none,0,0x0, NC_MAINFRAME,Mainframe Restructure -2267,0,6,4,0,0xCA,2:3:4,3,1,no,0,0,0,weapon,5,0x0, NC_SELFDESTRUCTION,Self Destruction +2267,0,6,4,0,0xCA,2:3:4,3,1,no,0,0x40000,0,weapon,5,0x0, NC_SELFDESTRUCTION,Self Destruction 2268,0,6,4,0,0x1,0,4,1,yes,0,0,0,none,0,0x0, NC_SHAPESHIFT,Shape Shift 2269,0,6,4,0,0x1,0,1,1,no,0,0,0,none,0,0x0, NC_EMERGENCYCOOL,Emergency Cool 2270,0,6,4,0,0x3,7,1,1,yes,0,0,0,none,0,0x0, NC_INFRAREDSCAN,Infrared Scan @@ -1102,7 +1103,7 @@ 2329,-2,8,4,-1,0,0,5,-2,no,0,0x200,0,weapon,0,0x0, SR_FALLENEMPIRE,Fallen Empire 2330,-2,6,1,-1,0x42,1:1:1:1:1:2:2:2:2:2,10,1,yes,0,0,0,weapon,0,0x0, SR_TIGERCANNON,Tiger Cannon 2331,0,0,0,0,0,0,10,0,no,0,0,0,none,0,0x0, SR_HELLGATE,Hell Gate -2332,0,6,4,-1,0x2,3,5,1,no,0,0,0,weapon,0,0x0, SR_RAMPAGEBLASTER,Rampage Blaster +2332,0,6,4,-1,0x2,3,5,1,no,0,0x40000,0,weapon,0,0x0, SR_RAMPAGEBLASTER,Rampage Blaster 2333,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, SR_CRESCENTELBOW,Crescent Elbow 2334,0,6,4,0,0x3,1:1:2:2:3,5,1,no,0,0,0,none,0,0x0, SR_CURSEDCIRCLE,Cursed Circle 2335,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, SR_LIGHTNINGWALK,Lightning Walk @@ -1139,9 +1140,9 @@ // WM Wanderer/Minstrel 2412,0,0,0,0,0,0,10,0,no,0,0,0,none,0,0x0, WM_LESSON,Lesson 2413,9,8,1,-1,0,0,5,-2:-2:-3:-3:-4,yes,0,0,0,magic,0,0x0, WM_METALICSOUND,Metallic Sound -2414,9,6,2,-1,0x3,1,5,1,yes,0,0x80,3,none,0,0x0, WM_REVERBERATION,Reverberation -2415,0,6,1,-1,0,0,5,1,no,0,0,0,weapon,0,0x0, WM_REVERBERATION_MELEE,Reverberation Melee -2416,0,6,1,-1,0,0,5,1,no,0,0,0,magic,0,0x0, WM_REVERBERATION_MAGIC,Reverberation Magic +2414,9,6,2,0,0x3,2,5,1,yes,0,0x80,0,none,0,0x0, WM_REVERBERATION,Reverberation +2415,0,6,1,-1,0x6,2,5,1,no,0,0,0,weapon,0,0x0, WM_REVERBERATION_MELEE,Reverberation Melee +2416,0,6,1,0,0x6,2,5,1,no,0,0,0,magic,0,0x0, WM_REVERBERATION_MAGIC,Reverberation Magic 2417,11,6,2,0,0x3,5,1,1,no,0,0,0,none,0,0x0, WM_DOMINION_IMPULSE,Dominion Impulse 2418,9,6,2,0,0x1,0,5,1,yes,0,0,0,none,0,0x0, WM_SEVERE_RAINSTORM,Severe Rainstorm 2419,9,6,2,0,0x3,1,5,1,yes,0,0x80,5,none,0,0x0, WM_POEMOFNETHERWORLD,Poem of The Netherworld @@ -1154,9 +1155,9 @@ 2426,9,6,2,0,0x2,2:3:3:4:4,5,1,yes,0,0x4000,0,weapon,0,0x0, WM_GREAT_ECHO,Great Echo 2427,0,6,4,0,0x3,5:6:7:8:9,5,1,yes,0,0x4000,0,none,0,0x0, WM_SONG_OF_MANA,Song of Mana 2428,0,6,4,0,0x3,5:6:7:8:9,5,1,yes,0,0x4000,0,none,0,0x0, WM_DANCE_WITH_WUG,Dance With A Warg -2429,9,6,1,0,0x42,4:4:5:5:6,5,1,yes,0,0x4000,0,weapon,0,0x0, WM_SOUND_OF_DESTRUCTION,Sound of Destruction //CHECK Source shows its magic attack. Need to confirm before changing. +2429,9,6,2,0,0x42,4:4:5:5:6,5,1,yes,0,0x4000,0,none,0,0x0, WM_SOUND_OF_DESTRUCTION,Sound of Destruction 2430,0,6,4,0,0x3,3:4:5:6:7,5,1,yes,0,0x4000,0,none,0,0x0, WM_SATURDAY_NIGHT_FEVER,Saturday Night Fever -2431,0,6,4,0,0x3,5:5:6:6:7,5,1,yes,0,0x4000,0,magic,0,0x0, WM_LERADS_DEW,Lerad's Dew +2431,0,6,4,0,0x3,5:5:6:6:7,5,1,yes,0,0x4000,0,none,0,0x0, WM_LERADS_DEW,Lerad's Dew 2432,0,6,4,0,0x3,5:5:6:6:7,5,1,yes,0,0x4000,0,none,0,0x0, WM_MELODYOFSINK,Melody of Sink 2433,0,6,4,0,0x3,5:5:6:6:7,5,1,yes,0,0x4000,0,none,0,0x0, WM_BEYOND_OF_WARCRY,Warcry of Beyond 2434,0,6,4,0,0x3,5:5:6:6:7,5,1,yes,0,0x4000,0,none,0,0x0, WM_UNLIMITED_HUMMING_VOICE,Unlimited Humming Voice @@ -1203,7 +1204,7 @@ 2481,11,6,1,-1,0x2,1:2:3:4:5,5,1,yes,0,0,0,weapon,0,0x0, GN_SPORE_EXPLOSION,Spore Explosion //CHECK Data says its element is set to neutral. Need to confirm. 2482,11,6,2,0,0x8,0,5,1,yes,0,0,1,weapon,2,0x0, GN_WALLOFTHORN,Wall of Thorns 2483,11,6,2,0,0x3,4,10,1,yes,0,0x0,0,weapon,0,0x1, GN_CRAZYWEED,Crazy Weed -2484,0,6,2,2,0x2,2,10,1,no,0,0x0,0,weapon,0,0x1, GN_CRAZYWEED_ATK,Crazy Weed Attack +2484,0,6,2,2,0x2,2,10,1,no,0,0x40000,0,weapon,0,0x1, GN_CRAZYWEED_ATK,Crazy Weed Attack 2485,9,6,2,3,0,0,5,1,yes,0,0,0,magic,0,0x0, GN_DEMONIC_FIRE,Demonic Fire 2486,9,6,2,0,0,0,5,1,yes,0,0,0,none,0,0x0, GN_FIRE_EXPANSION,Fire Expansion 2487,9,6,2,0,0,0,1,1,no,0,0,0,none,0,0x0, GN_FIRE_EXPANSION_SMOKE_POWDER,Fire Expansion Smoke Powder @@ -1266,35 +1267,35 @@ //**** // Kagerou & Oboro -3001,0,6,4,0,0,0,1,1,no,0,0,0,none,0,0x4, KO_YAMIKUMO,Yamikumo +3001,0,6,4,0,0,0,1,1,no,0,0,0,none,0,0x4, KO_YAMIKUMO,Shadow Hiding 3002,0,0,0,0,0,0,5,0,no,0,0,0,weapon,0,0x0, KO_RIGHT,Right Hand Mastery 3003,0,0,0,0,0,0,5,0,no,0,0,0,weapon,0,0x0, KO_LEFT,Left Hand Mastery -3004,3:4:5:6:7,8,1,-1,0,0,5,-2,no,0,0,0,weapon,0,0x0, KO_JYUMONJIKIRI,Cross Strike -3005,2,6,1,-1,0,0,5,1,no,0,0,0,weapon,0,0x0, KO_SETSUDAN,Soul Sever -3006,7:8:9:10:11,6,2,-1,0x42,2,5,1,no,0,0,0,weapon,0,0x0, KO_BAKURETSU,Bakuretsu Kunai -3007,0,6,4,-1,0x42,4:4:4:4:5,5,1,no,0,0,0,weapon,0,0x0, KO_HAPPOKUNAI,Happo Kunai -3008,11,8,2,0,0x56,1:1:1:1:1:1:1:1:1:2,10,-10,no,0,0,0,misc,0,0x0, KO_MUCHANAGE,Mucha Nage -3009,9:10:11:12:13,8,2,-1,0x2,3,5,2,no,0,0,0,weapon,0,0x0, KO_HUUMARANKA,Huuma Shuriken Ranka +3004,3:4:5:6:7,8,1,-1,0,0,5,-2,no,0,0,0,weapon,0,0x0, KO_JYUMONJIKIRI,Cross Slash +3005,2,6,1,-1,0,0,5,1,no,0,0,0,weapon,0,0x0, KO_SETSUDAN,Soul Cutter +3006,7:8:9:10:11,6,2,-1,0x42,2,5,1,no,0,0,0,weapon,0,0x0, KO_BAKURETSU,Kunai Explosion +3007,0,6,4,-1,0x42,4:4:4:4:5,5,1,no,0,0,0,weapon,0,0x0, KO_HAPPOKUNAI,Kunai Splash +3008,11,8,2,0,0x56,1:1:1:1:1:1:1:1:1:2,10,-10,no,0,0,0,misc,0,0x0, KO_MUCHANAGE,Rapid Throw +3009,9:10:11:12:13,8,2,-1,0x2,3,5,2,no,0,0,0,weapon,0,0x0, KO_HUUMARANKA,Swirling Petal 3010,3,6,4,0,0x52,0,5,1,no,0,0x80,0,weapon,0,0x10, KO_MAKIBISHI,Makibishi -3011,0,6,4,0,0x1,0,5,0,yes,0,0,0,none,0,0x0, KO_MEIKYOUSISUI,Meikyo Shisui -3012,0,6,4,0,0x1,0,5,0,no,0,0,1,none,3:4:5:6:7,0x0, KO_ZANZOU,Zanzou -3013,5,6,1,0,0x1,0,5,0,no,0,0,0,none,0,0x0, KO_KYOUGAKU,Kyougaku -3014,5,6,1,0,0x1,0,5,0,no,0,0,0,none,0,0x0, KO_JYUSATSU,Jyusatsu -3015,0,6,4,3,0x1,0,1,1,no,0,0,0,none,0,0x0, KO_KAHU_ENTEN,Kahu Enten -3016,0,6,4,1,0x1,0,1,1,no,0,0,0,none,0,0x0, KO_HYOUHU_HUBUKI,Hyouhu Hubuki -3017,0,6,4,4,0x1,0,1,1,no,0,0,0,none,0,0x0, KO_KAZEHU_SEIRAN,Kazehu Seiran -3018,0,6,4,2,0x1,0,1,1,no,0,0,0,none,0,0x0, KO_DOHU_KOUKAI,Dohu Koukai -3019,11,6,1,0,0,0,1,1,no,0,0,0,magic,0,0x0, KO_KAIHOU,Technique Kaihou -3020,7,6,2,0,0,0,1,1,yes,0,0,0,magic,0,0x0, KO_ZENKAI,Zenkai -3021,5:6:7:8:9,6,16,0,0x1,0,5,1,no,0,0,0,none,0,0x0, KO_GENWAKU,Genwaku -3022,0,6,4,0,0x1,0,5,0,no,0,0,0,none,0,0x0, KO_IZAYOI,Izayoi -3023,0,6,4,0,0x3,2:3:4:5:6,5,0,no,0,0,0,none,0,0x0, KG_KAGEHUMI,Kagehumi -3024,7,6,1,0,0x1,0,5,1,no,0,0,0,none,0,0x0, KG_KYOMU,Kyomu -3025,7,6,16,0,0x1,0,5,1,no,0,0,0,none,0,0x0, KG_KAGEMUSYA,Kagemusha -3026,7,6,16,0,0x1,0,5,1,no,0,0,0,none,0,0x0, OB_ZANGETSU,Zangetsu -3027,7,6,16,0,0x1,0,5,1,no,0,0,0,none,0,0x0, OB_OBOROGENSOU,Oboro Gensou -3028,1,6,4,0,0x2,3,1,1,no,0,0,0,weapon,0,0x0, OB_OBOROGENSOU_TRANSITION_ATK,Hazy Moonlight Illusion Transition Attack -3029,7,6,1,0,0x1,0,5,0,no,0,0,0,none,0,0x0, OB_AKAITSUKI,Akaitsuki +3011,0,6,4,0,0x1,0,5,0,yes,0,0,0,none,0,0x0, KO_MEIKYOUSISUI,Pure Soul +3012,0,6,4,0,0x1,0,5,0,no,0,0,1,none,3:4:5:6:7,0x0, KO_ZANZOU,Illusion - Shadow +3013,5,6,1,0,0x1,0,5,0,no,0,0,0,none,0,0x0, KO_KYOUGAKU,Illusion - Shock +3014,5,6,1,0,0x1,0,5,0,no,0,0,0,none,0,0x0, KO_JYUSATSU,Illusion - Death +3015,0,6,4,3,0x1,0,1,1,no,0,0,0,none,0,0x0, KO_KAHU_ENTEN,Fire Charm +3016,0,6,4,1,0x1,0,1,1,no,0,0,0,none,0,0x0, KO_HYOUHU_HUBUKI,Ice Charm +3017,0,6,4,4,0x1,0,1,1,no,0,0,0,none,0,0x0, KO_KAZEHU_SEIRAN,Wind Charm +3018,0,6,4,2,0x1,0,1,1,no,0,0,0,none,0,0x0, KO_DOHU_KOUKAI,Earth Charm +3019,11,6,1,0,0,0,1,1,no,0,0,0,magic,0,0x0, KO_KAIHOU,Release Ninja Spell +3020,7,6,2,0,0,0,1,1,yes,0,0,0,magic,0,0x0, KO_ZENKAI,Cast Ninja Spell +3021,5:6:7:8:9,6,16,0,0x1,0,5,1,no,0,0,0,none,0,0x0, KO_GENWAKU,Illusion - Bewitch +3022,0,6,4,0,0x1,0,5,0,no,0,0,0,none,0,0x0, KO_IZAYOI,16th Night +3023,0,6,4,0,0x3,2:3:4:5:6,5,0,no,0,0,0,none,0,0x0, KG_KAGEHUMI,Shadow Trampling +3024,7,6,1,0,0x1,0,5,1,no,0,0,0,none,0,0x0, KG_KYOMU,Empty Shadow +3025,7,6,16,0,0x1,0,5,1,no,0,0,0,none,0,0x0, KG_KAGEMUSYA,Shadow Warrior +3026,7,6,16,0,0x1,0,5,1,no,0,0,0,none,0,0x0, OB_ZANGETSU,Distorted Crescent +3027,7,6,16,0,0x1,0,5,1,no,0,0,0,none,0,0x0, OB_OBOROGENSOU,Moonlight Fantasy +3028,1,6,4,0,0x2,3,1,1,no,0,0,0,weapon,0,0x0, OB_OBOROGENSOU_TRANSITION_ATK,Moonlight Fantasy Transition Attack +3029,7,6,1,0,0x1,0,5,0,no,0,0,0,none,0,0x0, OB_AKAITSUKI,Ominous Moonlight //**** // Eclage Skills @@ -1313,21 +1314,21 @@ 5001,1,8,1,-1,0,0,5,3,no,0,0,0,weapon,0,0x0, GC_DARKCROW,Dark Claw 5002,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, RA_UNLIMIT,Unlimited 5003,7,6,1,-1,0x2,4:5:6:7:-1,5,1,no,0,0,0,weapon,0,0x0, GN_ILLUSIONDOPING,Illusion Doping -5004,9,6,2,1,0x42,1:1:1:2:2:2:3:3:4:4,10,1,no,0,0,0,weapon,0,0x0, RK_DRAGONBREATH_WATER,Dragon Breath - Water +5004,9,6,2,1,0x42,1:1:1:2:2:2:3:3:4:4,10,1,no,0,0x40000,0,weapon,0,0x0, RK_DRAGONBREATH_WATER,Dragon Breath - Water 5005,0,6,4,0,0x3,3,1,1,no,0,0,0,none,0,0x0, RK_LUXANIMA,Lux Anima -5006,1,6,2,3,0,0,5,1,no,0,0,3,misc,0,0x0, NC_MAGMA_ERUPTION,Magma Eruption +5006,1,6,2,3,0x2,3,5,1,no,0,0,3,misc,0,0x0, NC_MAGMA_ERUPTION,Magma Eruption 5007,0,6,4,0,0x3,5:6:7:8:9,5,1,no,0,0,0,none,0,0x0, WM_FRIGG_SONG,Frigg's Song -5008,0,6,4,0,0x3,15,5,1,no,0,0,0,none,0,0x0, SO_ELEMENTAL_SHIELD,Elemental Shield +5008,0,6,4,0,0x3,11,5,1,no,0,0,0,none,0,0x0, SO_ELEMENTAL_SHIELD,Elemental Shield 5009,1,6,1,0,0x1,0,5,1,no,0,0,0,none,0,0x0, SR_FLASHCOMBO,Flash Combo -5010,0,6,2,0,0x1,0,5,1,no,0,0,0,none,0,0x0, SC_ESCAPE,Emergency Escape +5010,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, SC_ESCAPE,Emergency Escape 5011,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, AB_OFFERTORIUM,Offertorium 5012,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, WL_TELEKINESIS_INTENSE,Intense Telekinesis 5013,0,6,4,0,0x3,0,5,1,no,0,0,0,none,0,0x0, LG_KINGS_GRACE,King's Grace 5014,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, ALL_FULL_THROTTLE,Full Throttle -5015,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, SR_FLASHCOMBO_ATK_STEP1,Flash Combo Attack Step 1 -5016,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, SR_FLASHCOMBO_ATK_STEP2,Flash Combo Attack Step 2 -5017,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, SR_FLASHCOMBO_ATK_STEP3,Flash Combo Attack Step 3 -5018,0,6,4,0,0x1,0,5,1,no,0,0,0,none,0,0x0, SR_FLASHCOMBO_ATK_STEP4,Flash Combo Attack Step 4 +5015,-2,8,1,-1,0,0,10,-2,no,0,0,0,weapon,0,0x0, SR_FLASHCOMBO_ATK_STEP1,Flash Combo Attack Step 1 +5016,-2,8,4,-1,0,0,5,-2,no,0,0x200,0,weapon,0,0x0, SR_FLASHCOMBO_ATK_STEP2,Flash Combo Attack Step 2 +5017,-2,6,1,-1,0x42,1:1:1:1:1:2:2:2:2:2,10,1,yes,0,0,0,weapon,0,0x0, SR_FLASHCOMBO_ATK_STEP3,Flash Combo Attack Step 3 +5018,0,8,4,-1,0x2,2,5,-3,no,0,0,0,weapon,3,0x0, SR_FLASHCOMBO_ATK_STEP4,Flash Combo Attack Step 4 //**** // Homunculus S @@ -1342,7 +1343,7 @@ 8009,1,8,1,0,0,0,5,-1:-2:-2:-2:-3,no,0,0,0,weapon,0,0x0, HFLI_MOON,Moonlight 8010,0,6,4,0,0x1,0,5,0,no,0,0,0,none,0,0x0, HFLI_FLEET,Fleeting Move 8011,0,6,4,0,0x1,0,5,0,yes,0,0,0,misc,0,0x0, HFLI_SPEED,Speed -8012,1,6,1,0,0,0,3,0,no,0,0,0,none,0,0x0, HFLI_SBR44,S.B.R.44 +8012,1,6,1,0,0,0,3,1,no,0,0,0,weapon,0,0x0, HFLI_SBR44,S.B.R.44 8013,9,6,1,0,0,0,5,1:2:3:4:5,no,0,0,0,magic,0,0x0, HVAN_CAPRICE,Caprice 8014,0,6,4,0,0x1,0,5,0,no,0,0,0,none,0,0x0, HVAN_CHAOTIC,Benediction of Chaos 8015,0,0,0,0,0x1,0,5,0,no,0,0,0,none,0,0x0, HVAN_INSTRUCT,Instruct @@ -1377,23 +1378,23 @@ //**** // Mercenary Skill Place holders 8201,-1,6,1,-1,0,0,10,1,no,0,0,0,weapon,0,0x0, MS_BASH,Bash -8202,0,6,4,3,0x2,2,10,1,no,0,0,0,weapon,2,0x0, MS_MAGNUM,Magnum_Break +8202,0,6,4,3,0x2,2,10,1,no,0,0x40000,0,weapon,2,0x0, MS_MAGNUM,Magnum_Break 8203,-2,6,1,-1,0x2,1,10,1,no,0,0,0,weapon,1,0x0, MS_BOWLINGBASH,Bowling_Bash 8204,0,6,4,0,0x1,0,10,1,no,0,0,0,weapon,0,0x0, MS_PARRYING,Parry 8205,0,6,4,0,0,0,10,1,no,0,0,0,weapon,0,0x0, MS_REFLECTSHIELD,Shield_Reflect 8206,0,6,4,0,0x1,0,1,1,no,0,0,0,weapon,0,0x0, MS_BERSERK,Frenzy 8207,-9,8,1,-1,0,0,10,2,no,0,0,0,weapon,0,0x80, MA_DOUBLE,Double_Strafe -8208,-9,6,2,-1,0x2,2,10,1,no,0,0x0,0,weapon,2,0x81, MA_SHOWER,Arrow_Shower +8208,-9,6,2,-1,0x2,2,10,1,no,0,0x40000,0,weapon,2,0x81, MA_SHOWER,Arrow_Shower 8209,3,6,2,0,0x1,0,5,1,no,0,0x80,0,misc,6:7:8:9:10,0x0, MA_SKIDTRAP,Skid_Trap 8210,3,6,2,2,0x40,0,5,1,no,0,0x80,0,misc,0,0x0, MA_LANDMINE,Land_Mine 8211,3,6,2,0,0x3,2,5,1,no,0,0x80,0,misc,0,0x0, MA_SANDMAN,Sandman 8212,3,6,2,1,0x42,1,5,1,no,0,0x80,0,weapon,0,0x0, MA_FREEZINGTRAP,Freezing_Trap -8213,2,6,32,0,0x1,0,1,1,no,0,0,0,misc,0,0x0, MA_REMOVETRAP,Remove_Trap +8213,2,6,32,0,0x1,0,1,1,no,0,0x40000,0,misc,0,0x0, MA_REMOVETRAP,Remove_Trap 8214,-9,6,1,-1,0x2,0,1,1,no,0,0x1,0,weapon,6,0x80, MA_CHARGEARROW,Arrow_Repel 8215,9,8,1,-1,0,2,5,1,yes,0,0,13,weapon,0,0x0, MA_SHARPSHOOTING,Focused_Arrow_Strike 8216,-2,8,1,-1,0,0,10,3,no,0,0,0,weapon,0,0x0, ML_PIERCE,Pierce 8217,-2,6,1,-1,0x1,0,10,1,no,0,0,0,weapon,3,0x0, ML_BRANDISH,Brandish_Spear -8218,5,8,1,-1,0x20,0,5,5,no,0,0,0,weapon,0,0x0, ML_SPIRALPIERCE,Spiral_Pierce +8218,5,8,1,-1,0x20,0,5,5,no,0,0x40000,0,weapon,0,0x0, ML_SPIRALPIERCE,Spiral_Pierce 8219,0,6,4,0,0x1,0,5,1,no,0,0,0,weapon,0,0x0, ML_DEFENDER,Defending_Aura 8220,0,6,4,0,0x1,0,10,1,no,0,0,0,weapon,0,0x0, ML_AUTOGUARD,Guard 8221,7:8:9:10:11,6,16,0,0x1,0,5,1,yes,0,0x600,0,none,0,0x0, ML_DEVOTION,Sacrifice diff --git a/db/re/skill_require_db.txt b/db/re/skill_require_db.txt index c8fb9b09bc..d8aa6eed70 100644 --- a/db/re/skill_require_db.txt +++ b/db/re/skill_require_db.txt @@ -20,6 +20,7 @@ // ridingwarg = Requires to ride a Warg // mado = Requires to have an active mado // elementalspirit = Requires to have an Elemental Spirit summoned. +// elementalspirit2 = Requires to have an Elemental Spirit summoned, and will be removed. // peco = Requires riding a peco // // 'RequiredStatuses' @@ -758,7 +759,7 @@ 2327,0,0,8:9:10:11:12,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_SKYNETBLOW 2328,0,0,36:40:44:48:52,0,0,0,99,0,0,none,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_EARTHSHAKER 2329,0,0,20:30:40:50:60,0,0,0,99,0,0,none,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_FALLENEMPIRE -2330,0,0,1:2:3:4:5:6:7:8:9:10,0,0,0,99,0,0,none,SC_EXPLOSIONSPIRITS,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_TIGERCANNON +2330,0,0,1:2:3:4:5:6:7:8:9:10,-12:-14:-16:-18:-20:-22:-24:-26:-28:-30,-6:-7:-8:-9:-10:-11:-12:-13:-14:-15,0,99,0,0,none,SC_EXPLOSIONSPIRITS,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_TIGERCANNON 2331,0,0,1,0,-11:-12:-13:-14:-15:-16:-17:-18:-19:-20,0,99,0,0,none,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_HELLGATE 2332,0,0,150,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_RAMPAGEBLASTER 2333,0,0,80,0,0,0,99,0,0,none,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_CRESCENTELBOW @@ -808,7 +809,7 @@ 2423,0,0,42:46:50:54:58,0,0,0,13:14,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WM_SIRCLEOFNATURE 2424,0,0,40:45:50:55:60,0,0,0,13:14,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WM_RANDOMIZESPELL 2425,0,0,60:75:90:105:120,0,0,0,13:14,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //MW_GLOOMYDAY -2426,0,0,80:90:100:110:120,0,0,0,99,0,0,none,0,0,11513,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WM_GREAT_ECHO // Missing 1 Lozange. Need item ID. +2426,0,0,80:90:100:110:120,0,0,0,99,0,0,none,0,0,11513,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WM_GREAT_ECHO 2427,0,0,120:140:160:180:200,0,0,0,13:14,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WM_SONG_OF_MANA 2428,0,0,120:140:160:180:200,0,0,0,13:14,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WM_DANCE_WITH_WUG 2429,0,0,50:60:70:80:90,0,0,0,13:14,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WM_SOUND_OF_DESTRUCTION @@ -963,17 +964,17 @@ 5005,0,0,1,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //RK_LUXANIMA 5006,0,0,60:70:80:90:100,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //NC_MAGMA_ERUPTION 5007,0,0,200:230:260:290:320,0,0,0,13:14,0,0,none,0,0,6144,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WM_FRIGG_SONG -5008,0,0,120,0,0,0,99,0,0,elementalspirit,0,0,717,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SO_ELEMENTAL_SHIELD +5008,0,0,120,0,0,0,99,0,0,elementalspirit2,0,0,717,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SO_ELEMENTAL_SHIELD 5009,0,0,65,0,0,0,99,0,0,none,0,5:5:4:4:3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_FLASHCOMBO 5010,0,0,30:26:22:18:14,0,0,0,99,0,0,none,0,0,7940,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SC_ESCAPE 5011,0,0,30:60:90:120:150,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //AB_OFFERTORIUM 5012,0,0,100:150:200:250:300,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //WL_TELEKINESIS_INTENSE 5013,0,0,200:180:160:140:120,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //LG_KINGS_GRACE 5014,0,0,1,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //ALL_FULL_THROTTLE -5015,0,0,1,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_FLASHCOMBO_ATK_STEP1 //All 4 steps are using temp req SP values for now. -5016,0,0,1,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_FLASHCOMBO_ATK_STEP2 -5017,0,0,1,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_FLASHCOMBO_ATK_STEP3 -5018,0,0,1,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_FLASHCOMBO_ATK_STEP4 +5015,0,0,0,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_FLASHCOMBO_ATK_STEP1 //All 4 steps are using temp req SP values for now. +5016,0,0,0,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_FLASHCOMBO_ATK_STEP2 +5017,0,0,0,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_FLASHCOMBO_ATK_STEP3 +5018,0,0,0,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //SR_FLASHCOMBO_ATK_STEP4 8001,0,0,13:16:19:22:25,0,0,0,99,0,0,none,0,0,545,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //HLIF_HEAL 8002,0,0,20:25:30:35:40,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //HLIF_AVOID diff --git a/db/re/skill_unit_db.txt b/db/re/skill_unit_db.txt index b6b1671b61..962c846e3f 100644 --- a/db/re/skill_unit_db.txt +++ b/db/re/skill_unit_db.txt @@ -124,10 +124,10 @@ 2253,0xd6, , 0, 1,1000,enemy, 0x8002 //RA_FIRINGTRAP 2254,0xd7, , 0, 1,1000,enemy, 0x8002 //RA_ICEBOUNDTRAP -2273,0xe2, , 2, 0, 500,all, 0x000 //NC_NEUTRALBARRIER -2274,0xe3, , 2, 0, 500,friend,0x000 //NC_STEALTHFIELD +2273,0xe2, , 2, 0, -1,all, 0x000 //NC_NEUTRALBARRIER +2274,0xe3, , 2, 0, -1,friend,0x000 //NC_STEALTHFIELD -2299,0xcc, , 0, 1,1000,all, 0xC006 //SC_MANHOLE +2299,0xcc, , 0, 1,1000,all, 0x8006 //SC_MANHOLE 2300,0xcd, , 0, 0,1000,all, 0xC006 //SC_DIMENSIONDOOR 2301,0xce, , 2, 0,1000,all, 0xE00E //SC_CHAOSPANIC 2302,0xcf, , 2, 0, -1,all, 0xE002 //SC_MAELSTROM @@ -136,7 +136,7 @@ 2319,0xec, , 0, 3,5000,all, 0x000 //LG_BANDING -2414,0xda, , 0, 0, -1,enemy, 0x1000 //WM_REVERBERATION +2414,0xda, , 0, 0,1000,enemy, 0x1000 //WM_REVERBERATION 2418,0xdb, , 0, 5, 300,enemy, 0x800 //WM_SEVERE_RAINSTORM 2419,0xde, , 0, 1,1000,enemy, 0x1014 //WM_POEMOFNETHERWORLD @@ -170,9 +170,8 @@ 3010,0xfc, , 0, 1,5000,enemy, 0x018 //KO_MAKIBISHI 3020,0xf8, , 0, 2, 500,all, 0x018 //KO_ZENKAI -5006,0x101, , 0, 3,2000,enemy, 0x018 //NC_MAGMA_ERUPTION -5008,0x85, , 0, 0, -1,all, 0x003 //SO_ELEMENTAL_SHIELD -5010,0xfe, , 0, 2, -1,enemy, 0x000 //SC_ESCAPE +5006,0x101, , 0, 3, 500,enemy, 0x018 //NC_MAGMA_ERUPTION +5010,0x91, , 0, 1,1000,all, 0x002 //SC_ESCAPE 5013,0x102, , 3, 0, -1,all, 0x2002 //LG_KINGS_GRACE 8020,0xf5, , 3, 0,2300:2100:1900:1700:1500,enemy, 0x018 //MH_POISON_MIST @@ -187,10 +186,10 @@ 8211,0x95, , 0, 1,1000,enemy, 0x8006 //MA_SANDMAN 8212,0x97, , 0, 1,1000,enemy, 0x8006 //MA_FREEZINGTRAP -8403,0xed, , -1, 1,1000,enemy, 0x018 //EL_FIRE_MANTLE -8406,0xee, , 0, 1, -1,friend,0x018 //EL_WATER_BARRIER -8409,0xef, , 0, 1,1000,friend,0x018 //EL_ZEPHYR -8412,0xf0, , 0, 1, -1,friend,0x018 //EL_POWER_OF_GAIA +8403,0xed, , -1, 1,1000,enemy, 0x018 //EL_FIRE_MANTLE +8406,0xee, , 1, 0, -1,friend,0x2018 //EL_WATER_BARRIER +8409,0xef, , 1, 0, -1,friend,0x2018 //EL_ZEPHYR +8412,0xf0, , 1, 0, -1,friend,0x2018 //EL_POWER_OF_GAIA 10006,0xc1, , 2, 0, -1,guild, 0x040 //GD_LEADERSHIP 10007,0xc2, , 2, 0, -1,guild, 0x040 //GD_GLORYWOUNDS diff --git a/db/skill_improvise_db.txt b/db/skill_improvise_db.txt index e8ea409eb3..cfd2a3c518 100644 --- a/db/skill_improvise_db.txt +++ b/db/skill_improvise_db.txt @@ -6,31 +6,19 @@ // // - To remove entry by importing, put 0 on 'Rate' -// Mage Skills -10,5000 // Sight -11,5000 // Napalm Beat -12,5000 // Safety Wall -13,5000 // Soul Strike -14,5000 // Cold Bolt -15,5000 // Frost Diver -16,5000 // Stone Curse -17,5000 // Fire Ball -18,5000 // Fire Wall -19,5000 // Fire Bolt -20,5000 // Lightning Bolt -21,5000 // Thunderstorm - -// Wizard Skills -80,2500 // Fire Pillar -81,2500 // Sightrasher -83,2500 // Meteor Storm -84,2500 // Jupitel Thunder -85,2500 // Lord of Vermilion -86,2500 // Water Ball -87,2500 // Ice Wall -88,2500 // Frost Nova -89,2500 // Storm Gust -90,2500 // Earth Spike -91,2500 // Heaven's Drive -92,2500 // Quagmire -93,2500 // Sense +11,60000 // Napalm Beat +12,40000 // Safety Wall +13,60000 // Soul Strike +14,60000 // Cold Bolt +15,60000 // Frost Diver +17,60000 // Fire Ball +18,40000 // Fire Wall +19,60000 // Fire Bolt +20,60000 // Lightning Bolt +21,40000 // Thunderstorm +80,40000 // Fire Pillar +83,40000 // Meteor Storm +84,60000 // Jupitel Thunder +85,40000 // Lord of Vermilion +86,60000 // Water Ball +89,40000 // Storm Gust diff --git a/doc/ea_job_system.txt b/doc/ea_job_system.txt index 818ed870fb..ea84a82764 100644 --- a/doc/ea_job_system.txt +++ b/doc/ea_job_system.txt @@ -5,51 +5,71 @@ //===== Last Updated: ======================================== //= 20130209 //===== Description: ========================================= -//= A reference description of eA's inner job system (for use +//= A reference description of eA's inner job system (for use //= in scripts through the eaclass and roclass script commands). //============================================================ Preface: ------------------------------------------------------------------------------- - Most scripters are aware of the class values used in RO and their constants specified on db/const.txt. Each class has a number associated to it for referencing, so when someone's class is 9 that means they are a wizard. However, this list of job numbers has no real order behind it, and no logic behind it's assignation. + Most scripters are aware of the class values used in RO and their constants + specified on db/const.txt. Each class has a number associated to it for + referencing, so when someone's class is 9 that means they are a wizard. + However, this list of job numbers has no real order behind it, and no logic + behind it's assignation. - You can add 3999 to a job to get their rebirth ID, but if you try to do the same to get the Baby class ID, that fails on the super Baby class. Also, there's no way to calculate, from a given first class, which classes would be their "evolution". That is, given the Archer's ID, you cannot just add a value that will return you "Hunter", and will still work if applied to the other classes. It didn't help much when they added Taekwon Boy, a first class, with an ID of 4046, and much later they added Ninja/Gunslinger with the IDs 25/24. How do you identify a first class on all this mess without recurring to very ugly range checks? + You can add 3999 to a job to get their rebirth ID, but if you try to do the + same to get the Baby class ID, that fails on the super Baby class. Also, + there's no way to calculate, from a given first class, which classes would + be their "evolution". That is, given the Archer's ID, you cannot just add + a value that will return you "Hunter", and will still work if applied to + the other classes. It didn't help much when they added Taekwon Boy, a first + class, with an ID of 4046, and much later they added Ninja/Gunslinger with + the IDs 25/24. How do you identify a first class on all this mess without + recurring to very ugly range checks? The eA Job System: ------------------------------------------------------------------------------- - Since the code also required to do this kind of checks for various skills (the Soul Linker Spirit buffs specifically come to mind), an alternate job ID system was developed, which attempts to make more sense and make it easier to check where a particular job stands in relation to the rest. + Since the code also required to do this kind of checks for various skills + (the Soul Linker Spirit buffs specifically come to mind), an alternate job + ID system was developed, which attempts to make more sense and make it + easier to check where a particular job stands in relation to the rest. The scheme consists in that every job can be broken down by 3 criteria: -- Base Job: This determines to which class-tree a job belongs. All jobs can be traced back to their root. The base job of all classes has to be one of the following: +- Base Job: This determines to which class-tree a job belongs. All jobs can be + traced back to their root. The base job of all classes has to be one of the + following: - EAJ_NOVICE 0x0 + EAJ_NOVICE 0x0 EAJ_SWORDMAN 0x1 - EAJ_MAGE 0x2 - EAJ_ARCHER 0x3 - EAJ_ACOLYTE 0x4 + EAJ_MAGE 0x2 + EAJ_ARCHER 0x3 + EAJ_ACOLYTE 0x4 EAJ_MERCHANT 0x5 - EAJ_THIEF 0x6 - EAJ_TAEKWON 0x7 + EAJ_THIEF 0x6 + EAJ_TAEKWON 0x7 EAJ_GUNSLINGER 0x9 - EAJ_NINJA 0x0A - EAJ_GANGSI 0x0D + EAJ_NINJA 0x0A + EAJ_GANGSI 0x0D + +- Branch: All classes can be classified as "1st Class", "2-1 Class" or + "2-2 Class": -- Branch: All classes can be classified as "1st Class", "2-1 Class" or "2-2 Class": - EAJL_2_1 0x100 EAJL_2_2 0x200 - EAJL_2 0x300 + EAJL_2 0x300 -- The third category is type. Classes can either be normal, rebirth/advanced, adopted, or third class. +- The third category is type. Classes can either be normal, rebirth/advanced, + adopted, or third class. EAJL_UPPER 0x1000 EAJL_BABY 0x2000 EAJL_THIRD 0x4000 -So using these three categories, any job class can be constructed from the others. Let's take a swordman, for example. +So using these three categories, any job class can be constructed from the +others. Let's take a swordman, for example. The first step is basic swordman, with nothing else: @@ -66,7 +86,7 @@ The next step is to either become a 2-1 or a 2-2 job: Getting out the rebirth versions of a swordman: - EAJ_SWORDMAN|EAJL_UPPER -> EAJ_SWORDMAN_HIGH + EAJ_SWORDMAN|EAJL_UPPER -> EAJ_SWORDMAN_HIGH EAJ_SWORDMAN|EAJL_2_1|EAJL_UPPER -> EAJ_LORD_KNIGHT EAJ_SWORDMAN|EAJL_2_2|EAJL_UPPER -> EAJ_PALADIN @@ -75,7 +95,8 @@ Or getting the third job versions: EAJ_SWORDMAN|EAJL_2_1|EAJL_THIRD -> EAJ_RUNE_KNIGHT EAJ_SWORDMAN|EAJL_2_2|EAJL_THIRD -> EAJ_ROYAL_GUARD -Why are we using the bitwise OR operand ('|') rather than just adding? Because the OR is wreck-proof: +Why are we using the bitwise OR operand ('|') rather than just adding? Because +the OR is wreck-proof: EAJ_SWORDMAN_HIGH|EAJL_UPPER -> EAJ_SWORDMAN_HIGH @@ -84,7 +105,9 @@ If we had used addition, we would have gotten a completely different result. The EAJL (eA Job Level) constants ------------------------------------------------------------------------------- - There are a few constants which can be used to filter out and make job comparisons easier. The comparisons involve eA job IDs, not classic job IDs, using the eaclass() command explained in the next section. + There are a few constants which can be used to filter out and make job + comparisons easier. The comparisons involve eA job IDs, not classic job + IDs, using the eaclass() command explained in the next section. set @eac, eaclass(); @@ -99,7 +122,8 @@ EAJL_2_2: mes "Oh, a 2-2 job!"; EAJL_2: - Checks if the class is a 2nd Class. If the check fails, you can be sure the character is a first class. + Checks if the class is a 2nd Class. If the check fails, you can be sure + the character is a first class. if (!(@eac&EAJL_2)) mes "Will you wait until Job 50 to change?"; @@ -119,28 +143,45 @@ EAJL_THIRD: mes "Wow, you've really grown!"; EAJ_UPPERMASK: - The upper mask can be used to "strip" the upper/baby characteristics of a class, used when you want to know if someone is a certain class regardless of rebirth/adopted status. For example, the following code would go through for Monks, Champions and Baby Monks: + The upper mask can be used to "strip" the upper/baby characteristics of a + class, used when you want to know if someone is a certain class regardless + of rebirth/adopted status. For example, the following code would go through + for Monks, Champions and Baby Monks: if ((@eac&EAJ_UPPERMASK) == EAJ_MONK) mes "Aren't knuckles such a cool weapon?"; - - Note that if instead of EAJ_MONK you used EAJ_CHAMPION or EAJ_BABY_MONK, the check would had never passed, since the upper/baby state has been removed from the original job when checking. - + + Note that if instead of EAJ_MONK you used EAJ_CHAMPION or EAJ_BABY_MONK, + the check would had never passed, since the upper/baby state has been + removed from the original job when checking. + EAJ_BASEMASK: - This mask strips also the 2nd class attributes. It can be used to check against the basic job of a character. For example, the following code would go through for Merchants (+Baby Merchant and High Merchant), Blacksmiths (+Baby blacksmiths and Whitesmith) and Alchemist (+Baby Alchemist and +Creator): + This mask strips also the 2nd class attributes. It can be used to check + against the basic job of a character. For example, the following code would + go through for Merchants (+Baby Merchant and High Merchant), Blacksmiths + (+Baby blacksmiths and Whitesmith) and Alchemist (+Baby Alchemist and + +Creator): if ((@eac&EAJ_BASEMASK) == EAJ_MERCHANT) mes "Why I can't have discount like you guys do?"; - Note that, like before, if you try to check versus any of the other classes (High merchant, blacksmith, etc) instead of basic merchant, the check will always fail for the same reasons previously explained. + Note that, like before, if you try to check versus any of the other + classes (High merchant, blacksmith, etc) instead of basic merchant, the + check will always fail for the same reasons previously explained. EAJ_THIRDMASK: - This mask strips 3rd class attributes. It will give the "normal" class of a third job, regardless of rebirth/adopted status. When used on non-third class characters, it will return the second job, or, if that also doesn't exist, the first. + This mask strips 3rd class attributes. It will give the "normal" class of + a third job, regardless of rebirth/adopted status. When used on non-third + class characters, it will return the second job, or, if that also doesn't + exist, the first. if ((@eac&EAJ_THIRDMASK) == EAJ_WARLOCK_T) mes "You've gone through rebirth, I see."; The script commands eaclass, roclass: ------------------------------------------------------------------------------- - These script commands are what you can use in scripts to convert between the RO classic job id, and eA's job system. The following script code demonstrates how to use these script commands to guess what your next job will be: + These script commands are what you can use in scripts to convert between + the RO classic job id, and eA's job system. The following script code + demonstrates how to use these script commands to guess what your next job + will be: set @eac, eaclass(); if (@eac&EAJL_2) @@ -150,8 +191,9 @@ The script commands eaclass, roclass: mes "You can't go anywhere, can you?"; close; } - //Note that if we remove the EAJL_BABY check up there, the following check - //will also fail, because there's no such thing as Rebirth-Baby classes. + //Note that if we remove the EAJL_BABY check up there, the following + //check will also fail, because there's no such thing as Rebirth-Baby + //classes. set @newclass, roclass(@eac|EAJL_UPPER); if (@newclass == -1) { //Don't you hate this of SG and SL? @@ -164,12 +206,12 @@ The script commands eaclass, roclass: set @class1, roclass(@eac|EAJL_2_1); set @class2, roclass(@eac|EAJL_2_2); if (@class1 == -1) { - //NJ/GS are the only classes who get stuck on their 1st class forever. mes "Looks like you are stuck forever on that class."; close; } if (@class2 == -1) { - //Not quite true, currently the only 1st class that doesn't has two choices is Novice -> Supernovice (see s.novice section below) + //Not quite true, currently the only 1st class that doesn't has two + //choices is Novice -> Supernovice (see s.novice section below) mes "Looks like you have no choice but to be a "+jobname(@class1)+"."; close; } @@ -180,10 +222,17 @@ The script commands eaclass, roclass: Oddities of the System: ------------------------------------------------------------------------------- About Bards and Dancers: - These two classes are considered the same in eA's job system, since they both are the 2-2 job of archers. The only way to tell them apart is by using the gender of the character we are referring to. The script command roclass() will automatically use the gender of the attached player (or 'male' if there's no such player), but you can also explicitly pass the gender to the script command when there's no player attached. + These two classes are considered the same in eA's job system, since they + both are the 2-2 job of archers. The only way to tell them apart is by + using the gender of the character we are referring to. The script command + roclass() will automatically use the gender of the attached player (or + 'male' if there's no such player), but you can also explicitly pass the + gender to the script command when there's no player attached. About Novices and Super Novices: - These are treated a bit differently from you'd expect. Because.. for instance, a novice is not supposed to be a 1st class, but it is considered as one on this tree system: + These are treated a bit differently from you'd expect. Because.. for + instance, a novice is not supposed to be a 1st class, but it is considered + as one on this tree system: EAJ_NOVICE -> Novice EAJ_NOVICE|EAJL_2_1 -> EAJ_SUPER_NOVICE @@ -191,7 +240,10 @@ About Novices and Super Novices: EAJ_NOVICE|EAJL_BABY -> EAJ_BABY EAJ_NOVICE|EAJL_BABY|EAJL_2_1 -> EAJ_SUPER_BABY - So as you can see, on this job system, the Super Novice is treated as the 2-1 job of a Novice, and the Novice job it's at the same level of the other 1st jobs. Even though that may seem like a hindrance, it makes it very easy to add a check to discard Novice types from a quest: + So as you can see, on this job system, the Super Novice is treated as the + 2-1 job of a Novice, and the Novice job it's at the same level of the other + 1st jobs. Even though that may seem like a hindrance, it makes it very easy + to add a check to discard Novice types from a quest: if ((eaclass()&EAJ_BASEMASK) == EAJ_NOVICE) //Novice class detected. diff --git a/doc/item_bonus.txt b/doc/item_bonus.txt index 06ea8b5286..58c8c0d281 100644 --- a/doc/item_bonus.txt +++ b/doc/item_bonus.txt @@ -13,19 +13,19 @@ Constants This list contains all available constants referenced in the 'bonus' commands. * Status effect (eff) - Eff_Stone, Eff_Freeze, Eff_Stun, Eff_Sleep, Eff_Poison, Eff_Curse, Eff_Silence, - Eff_Confusion, Eff_Blind, Eff_Bleeding, Eff_DPoison, Eff_Fear, Eff_Burning + Eff_Bleeding, Eff_Blind, Eff_Burning, Eff_Confusion, Eff_Crystalize, Eff_Curse, Eff_DPoison, + Eff_Fear, Eff_Freeze, Eff_Poison, Eff_Silence, Eff_Sleep, Eff_Stone, Eff_Stun * Element (e) - Ele_Neutral, Ele_Water, Ele_Earth, Ele_Fire, Ele_Wind, Ele_Poison, - Ele_Holy, Ele_Dark, Ele_Ghost, Ele_Undead, Ele_All + Ele_Dark, Ele_Earth, Ele_Fire, Ele_Ghost, Ele_Holy, Ele_Neutral, Ele_Poison, + Ele_Undead, Ele_Water, Ele_Wind, Ele_All * Race (r) - RC_Formless, RC_Undead, RC_Brute, RC_Plant, RC_Insect, RC_Fish, - RC_Demon, RC_DemiHuman, RC_Angel, RC_Dragon, RC_Player, RC_All + RC_Angel, RC_Brute, RC_DemiHuman, RC_Demon, RC_Dragon, RC_Fish, RC_Formless, + RC_Insect, RC_Plant, RC_Player, RC_Undead, RC_All * Monster Race (mr) - RC2_Goblin, RC2_Kobold, RC2_Orc, RC2_Golem, RC2_Guardian, RC2_Ninja. + RC2_Goblin, RC2_Kobold, RC2_Orc, RC2_Golem, RC2_Guardian, RC2_Ninja See 'db/(pre-)re/mob_race2_db.txt' * Class (c) @@ -35,19 +35,33 @@ This list contains all available constants referenced in the 'bonus' commands. Size_Small, Size_Medium, Size_Large, Size_All * Trigger criteria (bf) - BF_SHORT: Trigger on melee attacks - BF_LONG: Trigger on ranged attacks + BF_SHORT = Trigger on melee attacks + BF_LONG = Trigger on ranged attacks (Default: BF_SHORT+BF_LONG) - BF_WEAPON: Trigger on weapon skills - BF_MAGIC: Trigger on magic skills - BF_MISC: Trigger on misc skills + BF_WEAPON = Trigger on weapon skills + BF_MAGIC = Trigger on magic skills + BF_MISC = Trigger on misc skills (Default: BF_WEAPON) - BF_NORMAL: Trigger on normal attacks - BF_SKILL: Trigger on skills + BF_NORMAL = Trigger on normal attacks + BF_SKILL = Trigger on skills (Default: BF_SKILL if type is BF_MISC or BF_MAGIC, BF_NORMAL if type is BF_WEAPON) +* Trigger criteria (atf) + Effect target: (Default: Attacked target) + ATF_SELF = Trigger effect on self + ATF_TARGET = Trigger effect on target + + Attack range criteria: (Default: All attacks) + ATF_SHORT = Trigger on melee attacks + ATF_LONG = Trigger on ranged attacks + + Skill/attack type criteria: (Default: Physical/weapon) + ATF_WEAPON = Trigger on weapon skill / physical attacks + ATF_MAGIC = Trigger on magic skills + ATF_MISC = Trigger on misc skills + * Other values: Skill (sk): see 'db/(pre-)re/skill_db.txt' (NOTE: Both skill IDs and names, in quotes, are supported.) Monster id (mid): see 'db/(pre-)re/mob_db.txt' @@ -202,8 +216,9 @@ Damage modifiers bonus2 bAddEle,e,x; +x% physical damage against element e bonus3 bAddEle,e,x,bf; +x% physical damage against element e with trigger criteria bf bonus2 bMagicAddEle,e,x; +x% magical damage against element e -bonus2 bSubEle,e,x; +x% damage reduction against element e -bonus3 bSubEle,e,x,bf; +x% damage reduction against element e with trigger criteria bf +bonus2 bSubEle,e,x; +x% damage reduction against attack element e +bonus3 bSubEle,e,x,bf; +x% damage reduction against attack element e with trigger criteria bf +bonus2 bSubDefEle,e,x; +x% damage reduction from enemy with defense element e bonus2 bAddRace,r,x; +x% physical damage against race r bonus2 bMagicAddRace,r,x; +x% magical damage against race r @@ -230,6 +245,10 @@ bonus2 bAddMDefMonster,mid,x; +x% magical damage reduction against monster bonus2 bAddRace2,mr,x; +x% damage against monster race mr bonus2 bSubRace2,mr,x; +x% damage reduction against monster race mr +bonus2 bSubSkill,sk,n; Reduces n% damage received from skill sk + +bonus bAbsorbDmgMaxHP,n; If the damage received is more than n% of Max HP, the damage received is [TotalDamage] - [n% of MaxHP] (Doesn't stack, will use the highest value) + Atk/Def ------- bonus bAtkEle,e; Gives the player's attacks element e @@ -269,20 +288,32 @@ bonus2 bAddEff2,eff,n; Adds a n/100% chance to cause status eff on self w bonus2 bAddEffWhenHit,eff,n; Adds a n/100% chance to cause status eff on the enemy when being hit by physical damage bonus2 bResEff,eff,n; Adds a n/100% tolerance to status eff -bonus3 bAddEff,eff,n,y; Adds a n/100% chance to cause status eff on the target when attacking -bonus3 bAddEffWhenHit,eff,n,y; Adds a n/100% chance to cause status eff on the enemy when being hit by physical damage - y is the trigger criteria: +bonus3 bAddEff,eff,n,atf; Adds a n/100% chance to cause status eff on the target when attacking +bonus4 bAddEff,eff,n,atf,t; Adds a n/100% chance to cause status eff for t milliseconds on the target when attacking +bonus3 bAddEffWhenHit,eff,n,atf; Adds a n/100% chance to cause status eff on the target when being hit by physical damage +bonus4 bAddEffWhenHit,eff,n,atf,t; Adds a n/100% chance to cause status eff for t milliseconds on the target when being hit by physical damage + atf is the trigger criteria: + Effect target: (Default: Attacked target) ATF_SELF = trigger effect on self - ATF_TARGET = trigger effect on target (default) + ATF_TARGET = trigger effect on target + Attack range criteria: (Default: All attacks) ATF_SHORT = trigger on melee attacks - ATF_LONG = trigger on ranged attacks (default: trigger on all attacks) + ATF_LONG = trigger on ranged attacks + Skill/attack type criteria: (Default: Physical/weapon) + ATF_WEAPON = trigger on weapon skill / physical attacks + ATF_MAGIC = trigger on magic skills + ATF_MISC = trigger on misc skills bonus3 bAddEffOnSkill,sk,eff,n; Adds a n/100% chance to cause status eff on enemy when using skill sk -bonus4 bAddEffOnSkill,sk,eff,n,y; Adds a n/100% chance to cause status eff when using skill sk - y is the trigger criteria: +bonus4 bAddEffOnSkill,sk,eff,n,atf; Adds a n/100% chance to cause status eff on the target when using skill sk +bonus5 bAddEffOnSkill,sk,eff,n,atf,t; Adds a n/100% chance to cause status eff for t milliseconds on the target when using skill sk + atf is the trigger criteria: ATF_SELF = trigger effect on self ATF_TARGET = trigger effect on target +bonus2 bComaClass,c,n; Adds a n/100% chance to cause Coma when attacking a target of class c (regardless the type of attack) +bonus2 bComaRace,r,n; Adds a n/100% chance to cause Coma when attacking a target of race r (regardless the type of attack) + bonus2 bWeaponComaEle,e,n; Adds a n/100% chance to cause Coma when attacking a target of element e with a normal attack bonus2 bWeaponComaClass,c,n; Adds a n/100% chance to cause Coma when attacking a target of class c with a normal attack bonus2 bWeaponComaRace,r,n; Adds a n/100% chance to cause Coma when attacking a target of race r with a normal attack @@ -320,28 +351,26 @@ bonus5 bAutoSpellOnSkill,sk,x,y,n,i; Adds a n/10% chance to autospell skill x at HP/SP drain ----------- bonus bHPDrainValue,n; Heals +n HP with a normal attack -bonus2 bHPDrainValue,n,x; Heals +n HP with a normal attack (x: 0=gain n SP, 1=drain n SP from target) bonus2 bHPDrainValueRace,r,n; Heals +n HP when attacking a monster of race r with normal attack bonus2 bHpDrainValueClass,c,n; Heals +n HP when attacking a monster of class c with normal attack + bonus bSPDrainValue,n; Heals +n SP with a normal attack -bonus2 bSPDrainValue,n,x; Heals +n SP with a normal attack (x: 0=gain n SP, 1=drain n SP from target) bonus2 bSPDrainValueRace,r,n; Heals +n SP when attacking a monster of race r with normal attack bonus2 bSpDrainValueClass,c,n; Heals +n SP when attacking a monster of class c with normal attack -bonus2 bHPDrainRate,n,x; Adds a n/10% chance to drain x% HP when attacking -bonus2 bSPDrainRate,n,x; Adds a n/10% chance to drain x% SP when attacking -bonus3 bSPDrainRate,n,x,y; Adds a n/10% chance to either gain SP equivalent to x% of damage dealt, OR drain the amount of SP from the enemy - (y: 0=gain SP, 1=drain SP from target) +bonus2 bHPDrainRate,x,n; Adds a x/10% chance to drain n% HP from inflicted damage when attacking +bonus2 bSPDrainRate,x,n; Adds a x/10% chance to drain n% SP from inflicted damage when attacking -bonus2 bHPVanishRate,n,x; Add a n/100% chance of decreasing enemy's HP amount by x% when attacking -bonus2 bSPVanishRate,n,x; Add a n/100% chance of decreasing enemy's SP amount by x% when attacking +HP/SP vanish +------------ +bonus2 bHPVanishRate,x,n; Add a x/10% chance of decreasing enemy's HP amount by n% when attacking +bonus2 bSPVanishRate,x,n; Add a x/10% chance of decreasing enemy's SP amount by n% when attacking -bonus3 bHPVanishRaceRate,r,n,x; Add a n/100% chance of decreasing enemy's HP amount by x% when attacking, depends on enemy race r -bonus3 bSPVanishRaceRate,r,n,x; Add a n/100% chance of decreasing enemy's SP amount by x% when attacking, depends on enemy race r - -bonus2 bHPGainRaceAttack,r,n; Heals +n HP on every hit when attacking an enemy of race r -bonus2 bSPGainRaceAttack,r,n; Heals +n SP on every hit when attacking an enemy of race r +bonus3 bHPVanishRaceRate,r,x,n; Add a x/100% chance of decreasing enemy's HP amount by n% when attacking, depends on enemy race r +bonus3 bSPVanishRaceRate,r,x,n; Add a x/100% chance of decreasing enemy's SP amount by n% when attacking, depends on enemy race r +HP/SP gain +------------ bonus bHPGainValue,n; Heals +n HP when killing an enemy with a physical attack bonus bSPGainValue,n; Heals +n SP when killing an enemy with a physical attack bonus2 bSPGainRace,r,n; Heals +n SP when killing an enemy of race r with a physical attack diff --git a/doc/packet_interserv.txt b/doc/packet_interserv.txt index f73ee07370..ed698e5f82 100644 --- a/doc/packet_interserv.txt +++ b/doc/packet_interserv.txt @@ -75,16 +75,7 @@ Currently the max packet size is 0xFFFF (see 'WFIFOSET()' in 'src/common/socket. - Retrieve the number of user present on a char-serv 0x2715: - Type: HA - Structure: .W .L 40B - index: 0,2,6 - len: 46 - parameter: - - cmd : packet identification (0x2715) - - aid: account identification - - email: new email for account id - desc: - - Request to update the email linked to this aid + free 0x2716: Type: HA @@ -234,7 +225,24 @@ Currently the max packet size is 0xFFFF (see 'WFIFOSET()' in 'src/common/socket. - Receiving of map-server via char-server a ban request (alter the ban time) 0x2726: - free + Type: AH + Structure: .W .W .L .L .B .B .W { .B . .L .B . }* + index: 0,2,4,8,12,13,14,16,... + len: variable + parameter: + - cmd : packet identification (0x2726) + - ? + - aid + - cid + - type + - count + - keyLength + - key + - index + - val + - valLength + desc: + - Send global account registry 0x2727: Type: HA @@ -249,7 +257,7 @@ Currently the max packet size is 0xFFFF (see 'WFIFOSET()' in 'src/common/socket. 0x2728: Type: HA - Structure: .W .W .L .L { .?B .?B } + Structure: .W .W .L .L { .B . .L .B .?B } index: 0,2,4,8,13 len: variable (reg size+4) parameter: @@ -257,8 +265,11 @@ Currently the max packet size is 0xFFFF (see 'WFIFOSET()' in 'src/common/socket. - len: pakcet size - aid: account identification - cid : char identification - - str : name of variable in registry - - value : value of varaible in registry + - keyLength + - key + - index + - type + - value desc: - Receive an request to fetch account_reg2 from a char-server, see packet 0x3004 (mapif_parse_Registry) @@ -382,7 +393,8 @@ Currently the max packet size is 0xFFFF (see 'WFIFOSET()' in 'src/common/socket. parameter: - cmd : packet identification (0x2735 desc: - - ip address update signal from login server + - IP address update signal from login server. + - Send back the IP of char server to login-server if IP was changed. 0x2736: Type: HA @@ -594,6 +606,22 @@ Currently the max packet size is 0xFFFF (see 'WFIFOSET()' in 'src/common/socket. desc: - Request acc info +0x3009 + Type: ZI + Structure: .W .W .W .W .B .24B .24B + index: 0,2,6,4,8,9,24 + len: 9+NAME_LENGTH+NAME_LENGTH + parameter: + - cmd : packet identification (0x3009) + - len : Packet length + - nameid : ID of obtained item + - source : Source from where the item obtained + - type : Obtained type. 0: Box/Package, 1: Monster, 2: NPC + - name : Name of player who obtained the item + - srcname : Source name as alternative of source id + desc: + - Send broadcasts request if player get special items. + 0x3018 Type: ZI Structure: .W .L .L @@ -1422,18 +1450,24 @@ Currently the max packet size is 0xFFFF (see 'WFIFOSET()' in 'src/common/socket. - Parse whisper to GM 0x3804 - Type: IZ - Structure: .W .W .L .L .B - index: 0,2,4,8,12 - len: variable: 13 or p (Max=5013) + Type: HZ + Structure: .W .W .L .L .B .B .W { .B . .L .B . }* + index: 0,2,4,8,12,13,14,16,... + len: variable parameter: - cmd : packet identification (0x3804) - ? - aid - cid - type + - count + - keyLength + - key + - index + - val + - valLength desc: - - Account registry transfer to map-server + - Send global account registry to map-server from login-server 0x3806 Type: IZ @@ -1477,6 +1511,22 @@ Currently the max packet size is 0xFFFF (see 'WFIFOSET()' in 'src/common/socket. desc: - Transmit the result of a account_information request from map-serv, with type 1 +0x3809 + Type: IZ + Structure: .W .W .W .W .B .24B .24B + index: 0,2,6,4,8,9,24 + len: 9+NAME_LENGTH+NAME_LENGTH + parameter: + - cmd : packet identification (0x3809) + - len : Packet length + - nameid : ID of obtained item + - source : Source from where the item obtained + - type : Obtained type. 0: Box/Package, 1: Monster, 2: NPC + - name : Name of player who obtained the item + - srcname : Source name as alternative of source + desc: + - Broadcasts if player get special items. + 0x3818 Type: IZ Structure: .W .W .L .L .B .?B @@ -2632,7 +2682,7 @@ Currently the max packet size is 0xFFFF (see 'WFIFOSET()' in 'src/common/socket. - cmd : packet identification (0x2b0e) - aid - name - - operation_type + - operation_type: 1:block account, 2:ban account, 3:unblock account, 4:unban account, 5:changesex, 6:VIP, 7:changecharsex - timediff - val1 - val2 diff --git a/doc/script_commands.txt b/doc/script_commands.txt index fb3cc12478..24bfef7d01 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= rAthena Dev Team //===== Last Updated: ======================================== -//= 20140313 +//= 20150610 //===== Description: ========================================= //= A reference manual for the rAthena scripting language. //= Commands are sorted depending on their functionality. @@ -374,8 +374,10 @@ But what about GID? GID stands for the Game ID of something, this can either be the GID obtained through mobspawn (mob control commands) or the account ID of a character. -Another way would be to right click on a mob, -NPC or char as GM sprited char to view the GID. +Another way would be to right click on a mob, NPC or char as GM sprited char +to view the GID. + +See also 'getpetinfo', 'getmercinfo', 'gethominfo', and 'geteleminfo'. This is mostly used for the new version of skill and the mob control commands implemented. @@ -446,13 +448,14 @@ temporary - They cease to exist when the server resets. Prefix: scope and extent nothing - A permanent variable attached to the character, the default variable - type. They are stored in the `global_reg_value` table using type 3. + type. They are stored by char-server in the `global_acc_reg_num` and + `global_acc_reg_str`. "@" - A temporary variable attached to the character. SVN versions before 2094 revision and RC5 version will also treat 'l' as a temporary variable prefix, so beware of having variable names starting with 'l' if you want full backward compatibility. "$" - A global permanent variable. - They are stored in database table `mapreg`. + They are stored by map-server in database table `mapreg`. "$@" - A global temporary variable. This is important for scripts which are called with no RID attached, that is, not triggered by a specific character object. @@ -468,13 +471,14 @@ nothing - A permanent variable attached to the character, the default variable callsub/callfunc starts a new scope, returning from the function ends it. When a scope ends, its variables are converted to values ('return .@var;' returns a value, not a reference). -"'" - An instance variable +"'" - An instance variable. These are used with the instancing system, and are unique to each party's instance. "#" - A permanent local account variable. - They are stored in the `global_reg_value` table using type 2. + They are stored by char-server in the `char_reg_num` table and + `char_reg_str`. "##" - A permanent global account variable stored by the login server. - They are stored in the `global_reg_value` table using type 1. + They are stored in the `acc_reg_num` table and `acc_reg_str`. The only difference you will note from normal # variables is when you have multiple char-servers connected to the same login server. The # variables are unique to each char-server, while the ## variables @@ -616,6 +620,8 @@ same name. You can tell between the specific variables of an array with an [] +All variable types can be used as arrays. + Variables stored in this way, inside an array, are also called 'array elements'. Arrays are specifically useful for storing a set of similar data (like several item IDs for example) and then looping through it. You can address any array @@ -631,8 +637,9 @@ value from an another array) to get at an array value: This will make @arrayofnumbers[100] equal to 10. -Notice that index numbering always starts with 0. Arrays cannot hold more than -128 variables. (So the last one can't have a number higher than 127) +Index numbering always starts with 0 and arrays can hold over 2 billion +variables. As such, the (guaranteed) allowed values for indices are in the +range 0 ~ 2147483647. And array indexes probably can't be negative. Nobody tested what happens when you try to get a negatively numbered variable from an array, but it's not going @@ -644,41 +651,6 @@ Arrays can naturally store strings: the '$', normally denoting a string variable, before the square brackets that denotes an array index. -Resume of the allowed variable and array scopes ------------------------------------------------ - -+==========+======+=======+ -|VarType | Norm | Array | -+==========+======+=======+ -|$Str$ | OK! | OK! | -+----------+------+-------+ -|$@Str$ | OK! | OK! | -+----------+------+-------+ -|@Str$ | OK! | OK! | -+----------+------+-------+ -|#Str$ | OK! | FAIL! | -+----------+------+-------+ -|Str$ | OK! | FAIL! | -+----------+------+-------+ -|$Int | OK! | OK! | -+----------+------+-------+ -|$@Int | OK! | OK! | -+----------+------+-------+ -|@Int | OK! | OK! | -+----------+------+-------+ -|#Int | OK! | FAIL! | -+----------+------+-------+ -|Int | OK! | FAIL! | -+----------+------+-------+ -|.Str$ | OK! | OK! | -+----------+------+-------+ -|.Int | OK! | OK! | -+----------+------+-------+ -|.@Str$ | OK! | OK! | -+----------+------+-------+ -|.@Int | OK! | OK! | -+----------+------+-------+ - Variable References ------------------- @@ -991,6 +963,7 @@ On